-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcrawled-list.txt
2929 lines (2929 loc) · 481 KB
/
crawled-list.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
102 http://www.haircuttery.com/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\102-www.haircuttery.com/-1.html
102 http://www.haircuttery.com/promotions/current-promotions.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\102-www.haircuttery.com/promotions-current-promotions.html-4.html
102 http://www.haircuttery.com/locations/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\102-www.haircuttery.com/locations--8.html
102 http://www.haircuttery.com/home/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\102-www.haircuttery.com/home--11.html
102 http://www.haircuttery.com/locations/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\102-www.haircuttery.com/locations-index.html-12.html
102 http://www.haircuttery.com/the-looks/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\102-www.haircuttery.com/the-looks-index.html-13.html
102 http://www.haircuttery.com/promotions/grand-opening-coupons.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\102-www.haircuttery.com/promotions-grand-opening-coupons.html-14.html
102 http://www.haircuttery.com/services/cut-and-style.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\102-www.haircuttery.com/services-cut-and-style.html-16.html
102 http://www.haircuttery.com/services/color.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\102-www.haircuttery.com/services-color.html-17.html
102 http://www.haircuttery.com/services/treatments.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\102-www.haircuttery.com/services-treatments.html-18.html
102 http://www.haircuttery.com/services/waxing.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\102-www.haircuttery.com/services-waxing.html-19.html
102 http://www.haircuttery.com/services/value-packages.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\102-www.haircuttery.com/services-value-packages.html-20.html
102 http://www.haircuttery.com/about-us/history.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\102-www.haircuttery.com/about-us-history.html-22.html
102 http://www.haircuttery.com/about-us/our-mission.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\102-www.haircuttery.com/about-us-our-mission.html-23.html
102 http://www.haircuttery.com/about-us/causes.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\102-www.haircuttery.com/about-us-causes.html-24.html
102 http://www.haircuttery.com/about-us/newsroom.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\102-www.haircuttery.com/about-us-newsroom.html-25.html
102 http://www.haircuttery.com/about-us/careers.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\102-www.haircuttery.com/about-us-careers.html-26.html
102 http://www.haircuttery.com/about-us/contact-us.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\102-www.haircuttery.com/about-us-contact-us.html-27.html
102 http://www.haircuttery.com/clientprofile/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\102-www.haircuttery.com/clientprofile--29.html
102 http://www.haircuttery.com/dotCMS/login?referrer=%2FdotCMS%2FmyAccount C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\102-www.haircuttery.com/dotCMS-login-44.html
102 http://www.haircuttery.com/the-looks/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\102-www.haircuttery.com/the-looks--39.html
102 http://www.haircuttery.com/home/policy-and-facebook-disclosures.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\102-www.haircuttery.com/home-policy-and-facebook-disclosures.html-41.html
102 http://www.haircuttery.com/services/faq/chemical-treatments.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\102-www.haircuttery.com/services-faq-chemical-treatments.html-42.html
105 http://www.briansullivanphoto.com/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\105-www.briansullivanphoto.com/-1.html
105 http://www.briansullivanphoto.com/?load=css&loadType=mobile&templateID=42 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\105-www.briansullivanphoto.com/-2.html
105 http://www.briansullivanphoto.com/?load=html&loadType=mobile&page=42985 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\105-www.briansullivanphoto.com/-3.html
105 http://www.briansullivanphoto.com/?load=html&loadType=mobile&page=42987 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\105-www.briansullivanphoto.com/-4.html
105 http://www.briansullivanphoto.com/?load=html&loadType=mobile&page=42997 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\105-www.briansullivanphoto.com/-5.html
105 http://www.briansullivanphoto.com/?load=html&loadType=mobile&page=42998 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\105-www.briansullivanphoto.com/-6.html
105 http://www.briansullivanphoto.com/?load=html&loadType=mobile&page=42999 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\105-www.briansullivanphoto.com/-7.html
105 http://www.briansullivanphoto.com/?load=html&loadType=mobile&page=43000 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\105-www.briansullivanphoto.com/-8.html
105 http://www.briansullivanphoto.com/?load=html&loadType=mobile&page=43001 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\105-www.briansullivanphoto.com/-9.html
105 http://www.briansullivanphoto.com/?load=html&loadType=mobile&page=43002 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\105-www.briansullivanphoto.com/-10.html
105 http://www.briansullivanphoto.com/?load=html&loadType=mobile&page=42986 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\105-www.briansullivanphoto.com/-11.html
105 http://www.briansullivanphoto.com/?load=html&loadType=mobile&page=163681 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\105-www.briansullivanphoto.com/-12.html
105 http://www.briansullivanphoto.com/?load=html&loadType=mobile&page=42994 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\105-www.briansullivanphoto.com/-13.html
105 http://www.briansullivanphoto.com/?load=html&loadType=mobile&page=44367 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\105-www.briansullivanphoto.com/-14.html
105 http://www.briansullivanphoto.com/?load=html&loadType=mobile&page=42991 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\105-www.briansullivanphoto.com/-15.html
105 http://www.briansullivanphoto.com/?load=html&loadType=mobile&page=42993 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\105-www.briansullivanphoto.com/-16.html
105 http://www.briansullivanphoto.com/?load=html&loadType=mobile&page=147899 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\105-www.briansullivanphoto.com/-17.html
105 http://www.briansullivanphoto.com/?bypassMobile=true&load=html&loadType=mobile&page=42985 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\105-www.briansullivanphoto.com/-18.html
106 http://www.coldstonecreamery.com/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/-1.html
106 http://www.coldstonecreamery.com/international/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/international-index.html-2.html
106 http://www.coldstonecreamery.com/franchising/factsonownership/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/franchising-factsonownership-index.html-52.html
106 http://www.coldstonecreamery.com/franchising/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/franchising-index.html-3.html
106 http://www.coldstonecreamery.com/franchising/benefitsoffranchising/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/franchising-benefitsoffranchising-index.html-53.html
106 http://www.coldstonecreamery.com/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/index.html-4.html
106 http://www.coldstonecreamery.com/franchising/stepstobecomeafranchisee/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/franchising-stepstobecomeafranchisee-index.html-54.html
106 http://www.coldstonecreamery.com/icecream/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/icecream-index.html-5.html
106 http://www.coldstonecreamery.com/franchising/contactus/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/franchising-contactus-index.html-55.html
106 http://www.coldstonecreamery.com/icecream/signaturecreations/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/icecream-signaturecreations-index.html-6.html
106 http://www.coldstonecreamery.com/faqs/franchising/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/faqs-franchising-index.html-56.html
106 http://www.coldstonecreamery.com/icecream/createyourown/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/icecream-createyourown-index.html-7.html
106 http://www.coldstonecreamery.com/international/opportunities/index.php C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/international-opportunities-index.php-57.html
106 http://www.coldstonecreamery.com/icecream/hotstone/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/icecream-hotstone-index.html-8.html
106 http://www.coldstonecreamery.com/international/process/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/international-process-index.html-58.html
106 http://www.coldstonecreamery.com/international/masterfranchisee/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/international-masterfranchisee-index.html-59.html
106 http://www.coldstonecreamery.com/international/testimonials/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/international-testimonials-index.html-60.html
106 http://www.coldstonecreamery.com/international/photos/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/international-photos-index.html-61.html
106 http://www.coldstonecreamery.com/international/videos/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/international-videos-index.html-62.html
106 http://www.coldstonecreamery.com/jobs/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/jobs-index.html-63.html
106 http://www.coldstonecreamery.com/jobs/hqandfield/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/jobs-hqandfield-index.html-64.html
106 http://www.coldstonecreamery.com/jobs/diversity/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/jobs-diversity-index.html-65.html
106 http://www.coldstonecreamery.com/faqs/jobs/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/faqs-jobs-index.html-66.html
106 http://www.coldstonecreamery.com/contactus/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/contactus-index.html-67.html
106 http://www.coldstonecreamery.com/contactus/problemcomplimentsuggestion/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/contactus-problemcomplimentsuggestion-index.html-68.html
106 http://www.coldstonecreamery.com/faqs/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/faqs-index.html-69.html
106 http://www.coldstonecreamery.com/catering/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/catering-index.html-70.html
106 http://www.coldstonecreamery.com/catering/mininovelties/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/catering-mininovelties-index.html-71.html
106 http://www.coldstonecreamery.com/catering/holidayspartiesevents/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/catering-holidayspartiesevents-index.html-72.html
106 http://www.coldstonecreamery.com/nutrition/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/nutrition-index.html-73.html
106 http://www.coldstonecreamery.com/icecream/sundaes/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/icecream-sundaes-index.html-9.html
106 http://www.coldstonecreamery.com/aboutus/terms/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/aboutus-terms-index.html-74.html
106 http://www.coldstonecreamery.com/icecream/mixandgo/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/icecream-mixandgo-index.html-10.html
106 http://www.coldstonecreamery.com/aboutus/privacy/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/aboutus-privacy-index.html-75.html
106 http://www.coldstonecreamery.com/icecream/prepacked/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/icecream-prepacked-index.html-11.html
106 http://www.coldstonecreamery.com/faqs/icecream/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/faqs-icecream-index.html-12.html
106 http://www.coldstonecreamery.com/cakes/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/cakes-index.html-13.html
106 http://www.coldstonecreamery.com/cakes/app/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/cakes-app-index.html-14.html
106 http://www.coldstonecreamery.com/cakes/signaturecakes/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/cakes-signaturecakes-index.html-15.html
106 http://www.coldstonecreamery.com/cakes/birthdaycakes/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/cakes-birthdaycakes-index.html-16.html
106 http://www.coldstonecreamery.com/cakes/customcakes/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/cakes-customcakes-index.html-17.html
106 http://www.coldstonecreamery.com/cakes/kidsthemedcakes/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/cakes-kidsthemedcakes-index.html-18.html
106 http://www.coldstonecreamery.com/cakes/petitecakes/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/cakes-petitecakes-index.html-19.html
106 http://www.coldstonecreamery.com/cakes/icecreamcupcakes/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/cakes-icecreamcupcakes-index.html-20.html
106 http://www.coldstonecreamery.com/cakes/icecreamcookiesandwiches/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/cakes-icecreamcookiesandwiches-index.html-21.html
106 http://www.coldstonecreamery.com/cakes/signaturepies/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/cakes-signaturepies-index.html-22.html
106 http://www.coldstonecreamery.com/faqs/cakes/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/faqs-cakes-index.html-23.html
106 http://www.coldstonecreamery.com/shakessmoothies/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/shakessmoothies-index.html-24.html
106 http://www.coldstonecreamery.com/shakessmoothies/shakes/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/shakessmoothies-shakes-index.html-25.html
106 http://www.coldstonecreamery.com/shakessmoothies/smoothies/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/shakessmoothies-smoothies-index.html-26.html
106 http://www.coldstonecreamery.com/faqs/shakessmoothies/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/faqs-shakessmoothies-index.html-27.html
106 http://www.coldstonecreamery.com/yogurtsorbet/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/yogurtsorbet-index.html-28.html
106 http://www.coldstonecreamery.com/yogurtsorbet/frozenyogurt/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/yogurtsorbet-frozenyogurt-index.html-29.html
106 http://www.coldstonecreamery.com/yogurtsorbet/sorbet/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/yogurtsorbet-sorbet-index.html-30.html
106 http://www.coldstonecreamery.com/faqs/frozenyogurtsorbet/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/faqs-frozenyogurtsorbet-index.html-31.html
106 http://www.coldstonecreamery.com/mycsc/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/mycsc-index.html-32.html
106 http://www.coldstonecreamery.com/mycsc/login/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/mycsc-login-index.html-33.html
106 http://www.coldstonecreamery.com/faqs/eclub/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/faqs-eclub-index.html-35.html
106 http://www.coldstonecreamery.com/giftcardsretail/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/giftcardsretail-index.html-36.html
106 http://www.coldstonecreamery.com/giftcardsretail/buygiftcards/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/giftcardsretail-buygiftcards-index.html-37.html
106 http://www.coldstonecreamery.com/giftcardsretail/buyanegift/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/giftcardsretail-buyanegift-index.html-38.html
106 http://www.coldstonecreamery.com/giftcardsretail/giftcardbalance/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/giftcardsretail-giftcardbalance-index.html-39.html
106 http://www.coldstonecreamery.com/giftcardsretail/bulkgiftcards/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/giftcardsretail-bulkgiftcards-index.html-40.html
106 http://www.coldstonecreamery.com/giftcardsretail/buyretailproducts/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/giftcardsretail-buyretailproducts-index.html-41.html
106 http://www.coldstonecreamery.com/faqs/giftcard/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/faqs-giftcard-index.html-42.html
106 http://www.coldstonecreamery.com/aboutus/awards/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/aboutus-awards-index.html-44.html
106 http://www.coldstonecreamery.com/aboutus/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/aboutus-index.html-45.html
106 http://www.coldstonecreamery.com/aboutus/community/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/aboutus-community-index.html-46.html
106 http://www.coldstonecreamery.com/press/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/press-index.html-47.html
106 http://www.coldstonecreamery.com/aboutus/partners/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/aboutus-partners-index.html-48.html
106 http://www.coldstonecreamery.com/aboutus/specialtylocations/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/aboutus-specialtylocations-index.html-49.html
106 http://www.coldstonecreamery.com/locator/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/locator--77.html
106 http://www.coldstonecreamery.com/faqs/aboutus/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/faqs-aboutus-index.html-50.html
106 http://www.coldstonecreamery.com/franchising/franchiseoverview/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\106-www.coldstonecreamery.com/franchising-franchiseoverview-index.html-51.html
108 http://www.gostarpizza.com/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\108-www.gostarpizza.com/-1.html
108 http://www.gostarpizza.com/?page=main C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\108-www.gostarpizza.com/-2.html
108 http://www.gostarpizza.com/?page=aboutus C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\108-www.gostarpizza.com/-3.html
108 http://www.gostarpizza.com/?page=contactus C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\108-www.gostarpizza.com/-4.html
108 http://www.gostarpizza.com/?menuid=%3Cb%3EPizza%3C%2Fb%3E C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\108-www.gostarpizza.com/-5.html
108 http://www.gostarpizza.com/?menuid=%3Cb%3ESpecialty%20Pizza%3C%2Fb%3E C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\108-www.gostarpizza.com/-6.html
108 http://www.gostarpizza.com/?menuid=%3Cb%3EJumbo%20Calzones%3C%2Fb%3E C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\108-www.gostarpizza.com/-7.html
108 http://www.gostarpizza.com/?menuid=%3Cb%3EStromboli%3C%2Fb%3E C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\108-www.gostarpizza.com/-8.html
108 http://www.gostarpizza.com/?menuid=%3Cb%3EGrinders%3C%2Fb%3E C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\108-www.gostarpizza.com/-9.html
108 http://www.gostarpizza.com/?menuid=%3Cb%3EWraps%3C%2Fb%3E C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\108-www.gostarpizza.com/-10.html
108 http://www.gostarpizza.com/?menuid=%3Cb%3EAppetizers%20and%20Sides%3C%2Fb%3E C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\108-www.gostarpizza.com/-11.html
108 http://www.gostarpizza.com/?menuid=%3Cb%3ESalads%3C%2Fb%3E C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\108-www.gostarpizza.com/-12.html
108 http://www.gostarpizza.com/?menuid=%3Cb%3ESeafood%20and%20Chicken%3C%2Fb%3E C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\108-www.gostarpizza.com/-13.html
108 http://www.gostarpizza.com/?menuid=%3Cb%3EDinner%20Entrees%3C%2Fb%3E C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\108-www.gostarpizza.com/-14.html
108 http://www.gostarpizza.com/?menuid=%3Cb%3EClub%20Sandwiches%3C%2Fb%3E C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\108-www.gostarpizza.com/-15.html
108 http://www.gostarpizza.com/?menuid=%3Cb%3ELUNCH%20SPECIALS%20%20%2011%20am%20-%203%20pm C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\108-www.gostarpizza.com/-16.html
108 http://www.gostarpizza.com/?menuid=%3Cb%3ESandwiches%3C%2Fb%3E C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\108-www.gostarpizza.com/-17.html
108 http://www.gostarpizza.com/?menuid=%3Cb%3EBuffalo%20Wings%3C%2Fb%3E C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\108-www.gostarpizza.com/-18.html
108 http://www.gostarpizza.com/?menuid=%3Cb%3EDesserts%3C%2Fb%3E C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\108-www.gostarpizza.com/-19.html
108 http://www.gostarpizza.com/?menuid=%3Cb%3ESoda%3C%2Fb%3E C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\108-www.gostarpizza.com/-20.html
108 http://www.gostarpizza.com/?menuid=Pita C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\108-www.gostarpizza.com/-21.html
108 http://www.gostarpizza.com/?page=all_coupons C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\108-www.gostarpizza.com/-22.html
108 http://www.gostarpizza.com/?page=privacy C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\108-www.gostarpizza.com/-23.html
108 http://www.gostarpizza.com/?page=termofuse C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\108-www.gostarpizza.com/-24.html
112 http://anytimefitness.com/gyms/1469/Agawam-MA-01001?utm_campaign=local_listings&utm_medium=club_website&utm_source=yelp C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\112-anytimefitness.comgyms1469Agawam-MA-01001?utm_source=yelp&utm_medium=club_website&utm_campaign=local_listings/gyms-1469-Agawam-MA-01001-1.html
112 http://cdn.anytimefitness.com/styles/site.css.gzip?v=105 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\112-anytimefitness.comgyms1469Agawam-MA-01001?utm_source=yelp&utm_medium=club_website&utm_campaign=local_listings/styles-site.css.gzip-2.html
112 http://anytimefitness.com/find-gym C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\112-anytimefitness.comgyms1469Agawam-MA-01001?utm_source=yelp&utm_medium=club_website&utm_campaign=local_listings/find-gym-5.html
112 http://anytimefitness.com/membership C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\112-anytimefitness.comgyms1469Agawam-MA-01001?utm_source=yelp&utm_medium=club_website&utm_campaign=local_listings/membership-6.html
112 http://anytimefitness.com/mobile C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\112-anytimefitness.comgyms1469Agawam-MA-01001?utm_source=yelp&utm_medium=club_website&utm_campaign=local_listings/mobile-38.html
112 http://anytimefitness.com/employee-wellness C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\112-anytimefitness.comgyms1469Agawam-MA-01001?utm_source=yelp&utm_medium=club_website&utm_campaign=local_listings/employee-wellness-7.html
112 http://anytimefitness.com/franchise-opportunities C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\112-anytimefitness.comgyms1469Agawam-MA-01001?utm_source=yelp&utm_medium=club_website&utm_campaign=local_listings/franchise-opportunities-8.html
112 http://anytimefitness.com/feedback?ClubNumber=1469 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\112-anytimefitness.comgyms1469Agawam-MA-01001?utm_source=yelp&utm_medium=club_website&utm_campaign=local_listings/feedback-10.html
112 http://anytimefitness.com/gyms/1469/email C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\112-anytimefitness.comgyms1469Agawam-MA-01001?utm_source=yelp&utm_medium=club_website&utm_campaign=local_listings/gyms-1469-email-12.html
112 http://anytimefitness.com/gyms/1469/membership C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\112-anytimefitness.comgyms1469Agawam-MA-01001?utm_source=yelp&utm_medium=club_website&utm_campaign=local_listings/gyms-1469-membership-15.html
112 http://anytimefitness.com/gyms/1469/pass C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\112-anytimefitness.comgyms1469Agawam-MA-01001?utm_source=yelp&utm_medium=club_website&utm_campaign=local_listings/gyms-1469-pass-17.html
112 http://blog.anytimefitness.com/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\112-anytimefitness.comgyms1469Agawam-MA-01001?utm_source=yelp&utm_medium=club_website&utm_campaign=local_listings/-31.html
112 http://anytimefitness.com/press C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\112-anytimefitness.comgyms1469Agawam-MA-01001?utm_source=yelp&utm_medium=club_website&utm_campaign=local_listings/press-32.html
112 http://anytimefitness.com/privacy C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\112-anytimefitness.comgyms1469Agawam-MA-01001?utm_source=yelp&utm_medium=club_website&utm_campaign=local_listings/privacy-33.html
112 http://anytimefitness.com/gyms/1469/terms-of-use C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\112-anytimefitness.comgyms1469Agawam-MA-01001?utm_source=yelp&utm_medium=club_website&utm_campaign=local_listings/gyms-1469-terms-of-use-34.html
112 http://anytimefitness.com/dmca C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\112-anytimefitness.comgyms1469Agawam-MA-01001?utm_source=yelp&utm_medium=club_website&utm_campaign=local_listings/dmca-35.html
112 http://anytimefitness.com/contact C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\112-anytimefitness.comgyms1469Agawam-MA-01001?utm_source=yelp&utm_medium=club_website&utm_campaign=local_listings/contact-36.html
112 http://blog.anytimefitness.com/story/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\112-anytimefitness.comgyms1469Agawam-MA-01001?utm_source=yelp&utm_medium=club_website&utm_campaign=local_listings/story--39.html
112 http://db.anytimefitness.com/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\112-anytimefitness.comgyms1469Agawam-MA-01001?utm_source=yelp&utm_medium=club_website&utm_campaign=local_listings/-37.html
112 http://www.anytimefitness.com/mobile C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\112-anytimefitness.comgyms1469Agawam-MA-01001?utm_source=yelp&utm_medium=club_website&utm_campaign=local_listings/mobile-40.html
112 http://fr.anytimefitness.com/mobile C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\112-anytimefitness.comgyms1469Agawam-MA-01001?utm_source=yelp&utm_medium=club_website&utm_campaign=local_listings/mobile-41.html
112 http://www.anytimefitness.com.mx/mobile C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\112-anytimefitness.comgyms1469Agawam-MA-01001?utm_source=yelp&utm_medium=club_website&utm_campaign=local_listings/mobile-42.html
112 http://www.anytimefitness.com.au/mobile C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\112-anytimefitness.comgyms1469Agawam-MA-01001?utm_source=yelp&utm_medium=club_website&utm_campaign=local_listings/mobile-43.html
114 http://www.dunkindonuts.com/dunkindonuts/en.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/dunkindonuts-en.html-2.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en.html-3.html
114 http://www.dunkindonuts.com/content/dunkindonuts/es.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-es.html-4.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/coffee.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-coffee.html-6.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/coffee/didyouknow.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-coffee-didyouknow.html-7.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/coffee/coffeebrewingtips.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-coffee-coffeebrewingtips.html-8.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/menu/beverages/hotbeverages/specialitycoffee/espresso.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-menu-beverages-hotbeverages-specialitycoffee-espresso.html-10.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/menu/beverages/hotbeverages/specialitycoffee/cappuccino.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-menu-beverages-hotbeverages-specialitycoffee-cappuccino.html-11.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/menu/beverages/hotbeverages/specialitycoffee/latte.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-menu-beverages-hotbeverages-specialitycoffee-latte.html-12.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/menu/beverages/hotbeverages.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-menu-beverages-hotbeverages.html-13.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/menu/beverages/icedbeverages.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-menu-beverages-icedbeverages.html-14.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/menu/beverages/frozenbeverages.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-menu-beverages-frozenbeverages.html-15.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/menu/beverages/athomebrewing.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-menu-beverages-athomebrewing.html-16.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/menu/food/bakery.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-menu-food-bakery.html-17.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/menu/food/sandwiches/breakfastsandwiches.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-menu-food-sandwiches-breakfastsandwiches.html-18.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/menu/food/sandwiches/Bakery_Sandwiches.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-menu-food-sandwiches-Bakery_Sandwiches.html-19.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/menu/food/More.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-menu-food-More.html-20.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/menu/nutrition.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-menu-nutrition.html-21.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/menu/nutrition/nutrition_catalog.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-menu-nutrition-nutrition_catalog.html-22.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/menu/nutrition/ddsmart.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-menu-nutrition-ddsmart.html-23.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/menu/beverages/hotbeverages/coffee/hot_coffee.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-menu-beverages-hotbeverages-coffee-hot_coffee.html-24.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/tripplanner.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-tripplanner.html-25.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/ddcareers.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-ddcareers.html-26.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/mlanding.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-mlanding.html-29.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/menu.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-menu.html-34.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/stores.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-stores.html-35.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/responsive/lfc.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-responsive-lfc.html-36.html
114 http://www.dunkindonuts.com/content/DDBlog.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-DDBlog.html-37.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/help/contactus.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-help-contactus.html-39.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/company.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-company.html-40.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/help.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-help.html-41.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/company/global.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-company-global.html-42.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/promotions.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-promotions.html-43.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/help/terms.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-help-terms.html-44.html
114 http://www.dunkindonuts.com/content/dunkindonuts/en/help/privacypolicy.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\114-www.dunkindonuts.com/content-dunkindonuts-en-help-privacypolicy.html-45.html
115 http://www.tacobell.com/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\115-www.tacobell.com/-1.html
115 http://www.tacobell.com/food/tacos C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\115-www.tacobell.com/food-tacos-2.html
115 http://www.tacobell.com/nutrition C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\115-www.tacobell.com/nutrition-3.html
115 http://www.tacobell.com/social/all C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\115-www.tacobell.com/social-all-4.html
115 http://www.tacobell.com/Company/newsreleases C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\115-www.tacobell.com/Company-newsreleases-5.html
115 http://www.tacobell.com/Happier_Hour C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\115-www.tacobell.com/Happier_Hour-6.html
115 http://www.tacobell.com/food/menuitem/quesarito C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\115-www.tacobell.com/food-menuitem-quesarito-8.html
115 http://www.tacobell.com/breakfast/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\115-www.tacobell.com/breakfast--21.html
115 http://www.tacobell.com/food/menuitem/dr-pepper-vanilla-float-freeze C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\115-www.tacobell.com/food-menuitem-dr-pepper-vanilla-float-freeze-9.html
115 http://www.tacobell.com/food/tacos/spicy-chicken-cool-ranch-dlt C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\115-www.tacobell.com/food-tacos-spicy-chicken-cool-ranch-dlt-10.html
115 http://www.tacobell.com/giftcards C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\115-www.tacobell.com/giftcards-12.html
115 http://www.tacobell.com/Company C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\115-www.tacobell.com/Company-13.html
115 http://www.tacobell.com/Company/termsOfUse C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\115-www.tacobell.com/Company-termsOfUse-14.html
115 http://www.tacobell.com/feedback C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\115-www.tacobell.com/feedback-15.html
115 http://www.tacobell.com/sitemap C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\115-www.tacobell.com/sitemap-16.html
115 http://www.tacobell.com/aboutourads C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\115-www.tacobell.com/aboutourads-17.html
115 http://www.tacobell.com/Company/privacypolicy C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\115-www.tacobell.com/Company-privacypolicy-18.html
115 http://www.tacobell.com.cy/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\115-www.tacobell.com/-19.html
115 http://www.tacobell.com.ph/index.php C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\115-www.tacobell.com/index.php-20.html
117 http://www.samuelssportsbar.com/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\117-www.samuelssportsbar.com/-1.html
117 http://www.samuelssportsbar.com/site.css?v=155949727 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\117-www.samuelssportsbar.com/site.css-2.html
117 http://www.samuelssportsbar.com/home.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\117-www.samuelssportsbar.com/home.html-3.html
117 http://www.samuelssportsbar.com/check-gift-card-value.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\117-www.samuelssportsbar.com/check-gift-card-value.html-4.html
117 http://www.samuelssportsbar.com/menus.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\117-www.samuelssportsbar.com/menus.html-5.html
117 http://www.samuelssportsbar.com/contact.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\117-www.samuelssportsbar.com/contact.html-6.html
117 http://www.samuelssportsbar.com/private-events.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\117-www.samuelssportsbar.com/private-events.html-7.html
117 http://www.samuelssportsbar.com/who-s-working.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\117-www.samuelssportsbar.com/who-s-working.html-8.html
117 http://www.samuelssportsbar.com/jobs.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\117-www.samuelssportsbar.com/jobs.html-9.html
117 http://www.samuelssportsbar.com/staff-lounge.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\117-www.samuelssportsbar.com/staff-lounge.html-10.html
118 http://www.flroberts.com/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\118-www.flroberts.com/-1.html
118 http://www.flroberts.com/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\118-www.flroberts.com/index.html-2.html
118 http://www.flroberts.com/thecompany.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\118-www.flroberts.com/thecompany.html-3.html
118 http://www.flroberts.com/thecompany_contactus.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\118-www.flroberts.com/thecompany_contactus.html-4.html
118 http://www.flroberts.com/thecompany_employment.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\118-www.flroberts.com/thecompany_employment.html-5.html
118 http://www.flroberts.com/thecompany_donationfundraising.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\118-www.flroberts.com/thecompany_donationfundraising.html-6.html
118 http://www.flroberts.com/thecompany_news.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\118-www.flroberts.com/thecompany_news.html-7.html
118 http://www.flroberts.com/gasandconvenience.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\118-www.flroberts.com/gasandconvenience.html-8.html
118 http://www.flroberts.com/truckstopsandwhatelydiner.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\118-www.flroberts.com/truckstopsandwhatelydiner.html-9.html
118 http://www.flroberts.com/goldennozzleinfo.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\118-www.flroberts.com/goldennozzleinfo.html-10.html
118 http://www.flroberts.com/order.htm C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\118-www.flroberts.com/order.htm-11.html
118 http://www.flroberts.com/fleetprogram.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\118-www.flroberts.com/fleetprogram.html-12.html
118 http://www.flroberts.com/wholesalecommercial.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\118-www.flroberts.com/wholesalecommercial.html-13.html
118 http://www.flroberts.com/feedback/index.htm C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\118-www.flroberts.com/feedback-index.htm-14.html
118 http://www.flroberts.com/privacy_policy.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\118-www.flroberts.com/privacy_policy.html-15.html
118 http://www.flroberts.com/flpoplinks.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\118-www.flroberts.com/flpoplinks.html-16.html
118 http://www.flroberts.com/rewardsplusweb/earnbonuspoints.htm C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\118-www.flroberts.com/rewardsplusweb-earnbonuspoints.htm-17.html
119 http://www.cvs.com/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/-1.html
119 http://www.cvs.com/shop/product-detail/Nexxus-Mousse-Plus-Volumizing-Foam-Styler?skuId=710229 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Nexxus-Mousse-Plus-Volumizing-Foam-Styler-52.html
119 http://www.cvs.com/weeklyad/browse/browse-home.jsp C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/weeklyad-browse-browse-home.jsp-5.html
119 http://www.cvs.com/shop/product-detail/Maybelline-Foundation-Honey-Beige-Medium-4?skuId=271558 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Maybelline-Foundation-Honey-Beige-Medium-4-53.html
119 http://www.cvs.com/shop/product-detail/Zyrtec-Allergy-10-Mg-Tablets?skuId=735853 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Zyrtec-Allergy-10-Mg-Tablets-54.html
119 http://www.cvs.com/stores/store-locator-landing.jsp C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/stores-store-locator-landing.jsp-6.html
119 http://www.cvs.com/shop/product-detail/CVS-Indoor-&-Outdoor-Allergies-Allergy-Relief-Tablets?skuId=888489 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-CVS-Indoor-&-Outdoor-Allergies-Allergy-Relief-Tablets-55.html
119 http://www.cvs.com/pharmacy/pharmacy-homepage.jsp?WT.ac=B_3222425_SMS&pt=PHARMACY&searchTerm=mobile-text C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/pharmacy-pharmacy-homepage.jsp-8.html
119 http://www.cvs.com/shop/product-detail/Nasacort-Allergy-24HR---60-Sprays?skuId=952765 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Nasacort-Allergy-24HR---60-Sprays-56.html
119 http://www.cvs.com/shop/product-detail/Claritin-Non-Drowsy-Indoor-&-Outdoor-Allergy-Tablets?skuId=891018 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Claritin-Non-Drowsy-Indoor-&-Outdoor-Allergy-Tablets-57.html
119 http://www.cvs.com/pharmacy/pharmacy-homepage.jsp?WT.ac=Navigation_PharmacyFlydown_Na_012914__16703_Na_Chapter_Pharmacy C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/pharmacy-pharmacy-homepage.jsp-10.html
119 http://www.cvs.com/shop/product-detail/Nasacort-Allergy-24HR---120-Sprays?skuId=952766 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Nasacort-Allergy-24HR---120-Sprays-58.html
119 http://www.cvs.com/shop/product-detail/Zarbees-Seasonal-Relief-Tablets?skuId=970307 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Zarbees-Seasonal-Relief-Tablets-59.html
119 http://www.cvs.com/promo/promoLandingTemplate.jsp?WT.ac=Navigation_PharmacyFlydown_Na_012914__16703_Na_Chapter_FamilyRxManagement&promoLandingId=familymanagement C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/promo-promoLandingTemplate.jsp-15.html
119 http://www.cvs.com/shop/product-detail/CVS-Diphenhydramine-Hydrochloride-25-mg-Allergy-Tablets-Value-Size?skuId=707515 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-CVS-Diphenhydramine-Hydrochloride-25-mg-Allergy-Tablets-Value-Size-60.html
119 http://www.cvs.com/promo/promoLandingTemplate.jsp?WT.ac=Navigation_PharmacyFlydown_Na_012914__16703_Na_Chapter_Programsandservices&promoLandingId=pharmacy-services C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/promo-promoLandingTemplate.jsp-17.html
119 http://www.cvs.com/shop/product-detail/Benadryl-Allergy-Antihistamine-Tablets?skuId=862289 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Benadryl-Allergy-Antihistamine-Tablets-61.html
119 http://www.cvs.com/shop/product-detail/Childrens-Allegra-Allergy-Indoor-&-Outdoor-Allergies-12-Hour-Oral-Suspension?skuId=831104 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Childrens-Allegra-Allergy-Indoor-&-Outdoor-Allergies-12-Hour-Oral-Suspension-62.html
119 http://www.cvs.com/shop/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop--18.html
119 http://www.cvs.com/shop/product-detail/Zyrtec-Allergy-10-Mg-Tablets?skuId=444723 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Zyrtec-Allergy-10-Mg-Tablets-63.html
119 http://www.cvs.com/shop/Vitamins/_/N-3rZieZ2k?WT.ac=Flydown_Chapter_Fvc_010714__16701___Vitamins&pt=DEPARTMENT C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-Vitamins-_-N-3rZieZ2k-19.html
119 http://www.cvs.com/shop/product-detail/CVS-Non-Drowsy-Allergy-Relief-Tablets?skuId=249460 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-CVS-Non-Drowsy-Allergy-Relief-Tablets-64.html
119 http://www.cvs.com/shop/Baby-&-Child/_/N-3rZe6tkZ2k?WT.ac=Navigation_ShopFlydown_Na_012914__16701_Na_Chapter_Babyandchild&pt=DEPARTMENT C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-Baby-&-Child-_-N-3rZe6tkZ2k-20.html
119 http://www.cvs.com/shop/Health-&-Medicine/Allergy-&-Asthma/_/N-3tZ13ljg6Z2k?pt=CATEGORY C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-Health-&-Medicine-Allergy-&-Asthma-_-N-3tZ13ljg6Z2k-65.html
119 http://www.cvs.com/shop/product-detail/Viviscal-Extra-Strength-Hair-Nutrient-Tablets?skuId=472459 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Viviscal-Extra-Strength-Hair-Nutrient-Tablets-66.html
119 http://www.cvs.com/shop/product-detail/PreserVision-AREDS-2-Formula-Softgels?skuId=832372 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-PreserVision-AREDS-2-Formula-Softgels-67.html
119 http://www.cvs.com/shop/Beauty/_/N-3rZe7upZ2k?WT.ac=Navigation_ShopFlydown_Na_012914__16701_Na_Chapter_Beauty&pt=DEPARTMENT C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-Beauty-_-N-3rZe7upZ2k-21.html
119 http://www.cvs.com/shop/product-detail/Rogaine-Mens-Extra-Strength?skuId=156023 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Rogaine-Mens-Extra-Strength-68.html
119 http://www.cvs.com/shop/Diet-&-Nutrition/_/N-3rZe7elZ2k?WT.ac=Navigation_ShopFlydown_Na_012914__16701_Na_Chapter_Dietandnutrition&pt=DEPARTMENT C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-Diet-&-Nutrition-_-N-3rZe7elZ2k-22.html
119 http://www.cvs.com/shop/product-detail/CVS-Womens-Hair-Regrowth-Treatment?skuId=242127 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-CVS-Womens-Hair-Regrowth-Treatment-69.html
119 http://www.cvs.com/shop/product-detail/Prevagen-Clearer-Thinking-Dietary-Supplement?skuId=888292 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Prevagen-Clearer-Thinking-Dietary-Supplement-70.html
119 http://www.cvs.com/shop/Home-Health-Care/_/N-3rZe6z7Z2k?WT.ac=Navigation_ShopFlydown_Na_012914__16701_Na_Chapter_Homehealthcare&pt=DEPARTMENT C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-Home-Health-Care-_-N-3rZe6z7Z2k-24.html
119 http://www.cvs.com/shop/product-detail/CVS-Algal-900-DHA-Softgels?skuId=794904 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-CVS-Algal-900-DHA-Softgels-71.html
119 http://www.cvs.com/shop/product-detail/BIOTA-BOTANICALS-Herbal-Shampoo-for-Thinning-Hair?skuId=871337 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-BIOTA-BOTANICALS-Herbal-Shampoo-for-Thinning-Hair-72.html
119 http://www.cvs.com/shop/Household/_/N-3rZe7ejZ2k?WT.ac=Navigation_ShopFlydown_Na_012914__16701_Na_Chapter_Household&pt=DEPARTMENT C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-Household-_-N-3rZe7ejZ2k-25.html
119 http://www.cvs.com/shop/product-detail/Nuance-Salma-Hayek-AMPM-Anti-Aging-Super-Cream?skuId=839870 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Nuance-Salma-Hayek-AMPM-Anti-Aging-Super-Cream-73.html
119 http://www.cvs.com/shop/product-detail/CVS-Omeprazole-Magnesium-206-mg-Capsules?skuId=484742 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-CVS-Omeprazole-Magnesium-206-mg-Capsules-74.html
119 http://www.cvs.com/shop/Personal-Care/_/N-3rZifZ2k?WT.ac=Navigation_ShopFlydown_Na_012914__16701_Na_Chapter_Personalcare&pt=DEPARTMENT C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-Personal-Care-_-N-3rZifZ2k-26.html
119 http://www.cvs.com/shop/product-detail/Clear-Care-Triple-Action-Cleaning-Solution?skuId=298691 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Clear-Care-Triple-Action-Cleaning-Solution-75.html
119 http://www.cvs.com/shop/Sexual-Health/_/N-3rZe79tZ2k?WT.ac=Navigation_ShopFlydown_Na_012914__16701_Na_Chapter_Sexualhealth&pt=DEPARTMENT C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-Sexual-Health-_-N-3rZe79tZ2k-27.html
119 http://www.cvs.com/shop/product-detail/Somnapure-Natural-Sleep-Aid?skuId=864398 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Somnapure-Natural-Sleep-Aid-76.html
119 http://www.cvs.com/shop/Skin-Care/_/N-3rZe76oZ2k?WT.ac=Navigation_ShopFlydown_Na_012914__16701_Na_Chapter_Skincare&pt=DEPARTMENT C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-Skin-Care-_-N-3rZe76oZ2k-28.html
119 http://www.cvs.com/deals/deals.jsp C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/deals-deals.jsp-29.html
119 http://www.cvs.com/shop/online-deals/_/N-3vZ2k?pt=SHOP&searchTerm=ship-and-save C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-online-deals-_-N-3vZ2k-77.html
119 http://www.cvs.com/shop/product-detail/Purely-Inspired-Garcinia-Cambogia-Gummies?skuId=969298 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Purely-Inspired-Garcinia-Cambogia-Gummies-78.html
119 http://www.cvs.com/deals/deals.jsp?WT.ac=Navigation_DealsFlydown_Na_012914__16709_Na_Chapter_Deals C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/deals-deals.jsp-30.html
119 http://www.cvs.com/shop/product-detail/Nature-Made-Adult-Energy-B12-Gummies-Cherry-&-Wild-Berries?skuId=953980 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Nature-Made-Adult-Energy-B12-Gummies-Cherry-&-Wild-Berries-79.html
119 http://www.cvs.com/shop/product-detail/Urinozinc-Prostate-Health-Complex-Plus-Beta-Sitosterol-Caplets-120ct?skuId=967733 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Urinozinc-Prostate-Health-Complex-Plus-Beta-Sitosterol-Caplets-120ct-80.html
119 http://www.cvs.com/shop/online-deals/_/N-3vZ2k?WT.ac=Navigation_DealsFlydown_Na_012914__16709_Na_Chapter_Shipandsave&pt=SHOP&searchTerm=ship-and-save C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-online-deals-_-N-3vZ2k-32.html
119 http://www.cvs.com/shop/product-detail/Osteo-Bi-Flex-Edge-Joint-&-Energy-Coated-Caplets?skuId=967714 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Osteo-Bi-Flex-Edge-Joint-&-Energy-Coated-Caplets-81.html
119 http://www.cvs.com/shop/product-detail/Qunol-Ultra-CoQ10-100mg-Softgels-30ct?skuId=968084 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Qunol-Ultra-CoQ10-100mg-Softgels-30ct-82.html
119 http://www.cvs.com/promo/promoLandingTemplate.jsp?WT.ac=Navigation_ExtracareFlydown_Na_012914__16531_Na_Chapter_ExtracareBeautyClub&promoLandingId=beautyclub-member C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/promo-promoLandingTemplate.jsp-36.html
119 http://www.cvs.com/shop/product-detail/MegaRed-Extra-Strength-500mg-Omega-3-Krill-Oil-Softgels-60ct?skuId=936041 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-MegaRed-Extra-Strength-500mg-Omega-3-Krill-Oil-Softgels-60ct-83.html
119 http://www.cvs.com/promo/promoLandingTemplate.jsp?WT.ac=Navigation_ExtracareFlydown_Na_012914__16531_Na_Chapter_ExtracareDiabetes&promoLandingId=ecad-member C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/promo-promoLandingTemplate.jsp-37.html
119 http://www.cvs.com/shop/product-detail/Instaflex-Joint-Support-Capsules?skuId=967966 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Instaflex-Joint-Support-Capsules-84.html
119 http://www.cvs.com/promo/promoLandingTemplate.jsp?WT.ac=B_3220111_ATH_1&promoLandingId=pharmacy-account C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/promo-promoLandingTemplate.jsp-39.html
119 http://www.cvs.com/shop/product-detail/Natures-Bounty-Super-Strength-D3-2000IU-Softgels-Value-Size?skuId=968475 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Natures-Bounty-Super-Strength-D3-2000IU-Softgels-Value-Size-85.html
119 http://www.cvs.com/shop/product-detail/Berocca-Mental-Sharpness-&-Physical-Energy-Effervescent-Tablets-Mixed-Berry?skuId=967911 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Berocca-Mental-Sharpness-&-Physical-Energy-Effervescent-Tablets-Mixed-Berry-86.html
119 http://www.cvs.com/drug/interaction-checker.jsp C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/drug-interaction-checker.jsp-42.html
119 http://www.cvs.com/shop/product-detail/Trubiotics-Daily-Probiotic-Supplement-SmoothMint-Chews?skuId=967916 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Trubiotics-Daily-Probiotic-Supplement-SmoothMint-Chews-87.html
119 http://www.cvs.com/shop/product-detail/One-A-Day-Teen-for-Him-VitaCraves-Multivitamin-Gummies-60ct?skuId=967918 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-One-A-Day-Teen-for-Him-VitaCraves-Multivitamin-Gummies-60ct-88.html
119 http://www.cvs.com/drug/wallet-card.jsp C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/drug-wallet-card.jsp-43.html
119 http://www.cvs.com/shop/product-detail/CVS-B-12-Energy-Gummies?skuId=969302 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-CVS-B-12-Energy-Gummies-89.html
119 http://www.cvs.com/drug/pill-identifier.jsp C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/drug-pill-identifier.jsp-44.html
119 http://www.cvs.com/shop/Vitamins/_/N-3rZieZ2k?pt=DEPARTMENT C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-Vitamins-_-N-3rZieZ2k-90.html
119 http://www.cvs.com/shop/product-detail/Milani-Baked-Blush-Luminoso-05?skuId=811861 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Milani-Baked-Blush-Luminoso-05-45.html
119 http://www.cvs.com/shop/product-detail/LOreal-Full-Definition-Voluminous-Volume-Building-Mascara-Blackest-Black-310?skuId=678372 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-LOreal-Full-Definition-Voluminous-Volume-Building-Mascara-Blackest-Black-310-91.html
119 http://www.cvs.com/shop/product-detail/Rimmel-Stay-Matte-Pressed-Powder-001-Transparent?skuId=443654 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Rimmel-Stay-Matte-Pressed-Powder-001-Transparent-46.html
119 http://www.cvs.com/shop/product-detail/Cerave-Moisturizing-Cream?skuId=322573 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Cerave-Moisturizing-Cream-92.html
119 http://www.cvs.com/shop/product-detail/Maybelline-Foundation-Pure-Beige-Medium-2?skuId=271554 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Maybelline-Foundation-Pure-Beige-Medium-2-47.html
119 http://www.cvs.com/shop/product-detail/Rapidlash-Eyelash-&-Eyebrow-Enhancing-Serum?skuId=480994 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Rapidlash-Eyelash-&-Eyebrow-Enhancing-Serum-93.html
119 http://www.cvs.com/shop/product-detail/Nuance-Salma-Hayek-Nail-Lacquer-Bare-Kiss-320?skuId=898408 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Nuance-Salma-Hayek-Nail-Lacquer-Bare-Kiss-320-48.html
119 http://www.cvs.com/shop/product-detail/Olay-Regenerist-Daily-Regenerating-Serum?skuId=211562 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Olay-Regenerist-Daily-Regenerating-Serum-94.html
119 http://www.cvs.com/shop/product-detail/Rimmel-Stay-Matte-Pressed-Powder-004-Sandstorm?skuId=443656 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Rimmel-Stay-Matte-Pressed-Powder-004-Sandstorm-49.html
119 http://www.cvs.com/shop/product-detail/SensatioNail-Invincible-Gel-Polish-Starter-Kit-Raspberry-Wine?skuId=869423 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-SensatioNail-Invincible-Gel-Polish-Starter-Kit-Raspberry-Wine-95.html
119 http://www.cvs.com/shop/product-detail/Maybelline-Foundation-Medium-Beige-Medium-3?skuId=271555 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Maybelline-Foundation-Medium-Beige-Medium-3-50.html
119 http://www.cvs.com/shop/product-detail/Maybelline-Baby-Skin-Instant-Pore-Eraser-with-Blur-Technology-for-All-Skin-Types?skuId=943211 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Maybelline-Baby-Skin-Instant-Pore-Eraser-with-Blur-Technology-for-All-Skin-Types-96.html
119 http://www.cvs.com/shop/product-detail/Maybelline-Dream-Liquid-Mousse-Sandy-Beige-Medium-1?skuId=478564 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Maybelline-Dream-Liquid-Mousse-Sandy-Beige-Medium-1-51.html
119 http://www.cvs.com/shop/product-detail/Neutrogena-Rapid-Wrinkle-Repair-Moisturizer-for-Night?skuId=834902 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Neutrogena-Rapid-Wrinkle-Repair-Moisturizer-for-Night-97.html
119 http://www.cvs.com/pharmacy/pharmacy-homepage.jsp?WT.ac=B_3222211_SMS_1&pt=PHARMACY&searchTerm=mobile-text C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/pharmacy-pharmacy-homepage.jsp-102.html
119 http://www.cvs.com/pharmacy/pharmacy-homepage.jsp?WT.ac=B_3222211_SMS_2&pt=PHARMACY&searchTerm=mobile-text C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/pharmacy-pharmacy-homepage.jsp-103.html
119 http://www.cvs.com/shop/product-detail/Maybelline-Instant-Age-Rewind-Treatment-Concealer-Light-20?skuId=849691 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Maybelline-Instant-Age-Rewind-Treatment-Concealer-Light-20-98.html
119 http://www.cvs.com/shop/product-detail/Vanicream-Moisturizing-Skin-Cream-For-Sensitive-Skin?skuId=805065 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Vanicream-Moisturizing-Skin-Cream-For-Sensitive-Skin-99.html
119 http://www.cvs.com/shop/product-detail/Neutrogena-Rapid-Wrinkle-Repair-Eye-Cream?skuId=834899 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-product-detail-Neutrogena-Rapid-Wrinkle-Repair-Eye-Cream-100.html
119 http://www.cvs.com/shop?WT.ac=B_3223116_SWS_1 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-105.html
119 http://www.cvs.com/shop?WT.ac=B_3223116_SWS_2 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-106.html
119 http://www.cvs.com/shop/Beauty/_/N-3rZe7upZ2k?pt=DEPARTMENT C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-Beauty-_-N-3rZe7upZ2k-101.html
119 http://www.cvs.com/pharmacy/pharmacy-homepage.jsp C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/pharmacy-pharmacy-homepage.jsp-108.html
119 http://www.cvs.com/promo/promoLandingTemplate.jsp?promoLandingId=mobile C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/promo-promoLandingTemplate.jsp-144.html
119 http://www.cvs.com/drug/information.jsp C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/drug-information.jsp-109.html
119 http://www.cvs.com/shop/online-deals/_/N-3vZ2k?pt=SHOP&searchTerm=money-center C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-online-deals-_-N-3vZ2k-116.html
119 http://www.cvs.com/promo/promoLandingTemplate.jsp?promoLandingId=giftcards C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/promo-promoLandingTemplate.jsp-150.html
119 http://www.cvs.com/promo/promoLandingTemplate.jsp?promoLandingId=mobile-sites C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/promo-promoLandingTemplate.jsp-122.html
119 http://www.cvs.com/promo/promoLandingTemplate.jsp?promoLandingId=mobile-apps C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/promo-promoLandingTemplate.jsp-123.html
119 http://www.cvs.com/help/help_index.jsp C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/help-help_index.jsp-124.html
119 http://www.cvs.com/help/help_contact_us.jsp C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/help-help_contact_us.jsp-125.html
119 http://www.cvs.com/help/privacy_policy.jsp C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/help-privacy_policy.jsp-128.html
119 http://www.cvs.com/help/sitemap/sitemap.jsp C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/help-sitemap-sitemap.jsp-129.html
119 http://www.cvs.com/help/terms_of_use.jsp C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/help-terms_of_use.jsp-130.html
119 http://www.cvs.com/shop/Health-&-Medicine/_/N-3rZidZ2k?pt=DEPARTMENT C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/shop-Health-&-Medicine-_-N-3rZidZ2k-138.html
119 http://www.cvs.com/promo/promoLandingTemplate.jsp?promoLandingId=accessibility-statement C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\119-www.cvs.com/promo-promoLandingTemplate.jsp-153.html
122 http://www.subway.com/subwayroot/default.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-default.aspx-2.html
122 http://www.subway.com/bundlizer/cssBasic C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/bundlizer-cssBasic-3.html
122 http://www.subway.com/bundlizer/cssMainPromo C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/bundlizer-cssMainPromo-4.html
122 http://www.subway.com/subwayroot/careers/default.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-careers-default.aspx-54.html
122 http://www.subway.com/bundlizer/cssMiniPromo C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/bundlizer-cssMiniPromo-5.html
122 http://www.subway.com/subwayroot/sitemap.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-sitemap.aspx-55.html
122 http://www.subway.com/subwayroot/privacyNotice.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-privacyNotice.aspx-56.html
122 http://www.subway.com/subwayroot/exploreourworld.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-exploreourworld.aspx-6.html
122 http://www.subway.com/subwayroot/TermsOfUse.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-TermsOfUse.aspx-57.html
122 http://www.subway.com/OnlineOrdering/default.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/OnlineOrdering-default.aspx-7.html
122 http://www.subway.com/subwayroot/Freshbuzz/Apolo/apolo.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-Freshbuzz-Apolo-apolo.aspx-58.html
122 http://www.subway.com/storelocator/default.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/storelocator-default.aspx-8.html
122 http://www.subway.com/menu/default.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/menu-default.aspx-9.html
122 http://www.subway.com/subwayroot/Catering/default.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-Catering-default.aspx-10.html
122 http://www.subway.com/subwayroot/Freshbuzz/default.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-Freshbuzz-default.aspx-11.html
122 http://www.subway.com/ContactUs/frmCustomerService.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/ContactUs-frmCustomerService.aspx-12.html
122 http://www.subway.com/subwayroot/Careers/default.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-Careers-default.aspx-13.html
122 http://www.subway.com/subwayroot/Own_a_Franchise/default.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-Own_a_Franchise-default.aspx-14.html
122 http://www.subway.com/Menu/MenuCategoryItems.aspx?CC=USA&LC=ENG&MenuId=53&MenuTypeId=1 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/Menu-MenuCategoryItems.aspx-15.html
122 http://www.subway.com/Menu/MenuCategoryItems.aspx?CC=USA&LC=ENG&MenuId=56&MenuTypeId=1 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/Menu-MenuCategoryItems.aspx-16.html
122 http://www.subway.com/Menu/MenuCategoryItems.aspx?CC=USA&LC=ENG&MenuId=35&MenuTypeId=1 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/Menu-MenuCategoryItems.aspx-17.html
122 http://www.subway.com/Menu/MenuCategoryItems.aspx?CC=USA&LC=ENG&MenuId=54&MenuTypeId=1 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/Menu-MenuCategoryItems.aspx-18.html
122 http://www.subway.com/Menu/MenuCategoryItems.aspx?CC=USA&LC=ENG&MenuId=40&MenuTypeId=1 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/Menu-MenuCategoryItems.aspx-19.html
122 http://www.subway.com/Menu/MenuCategoryItems.aspx?CC=USA&LC=ENG&MenuId=57&MenuTypeId=1 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/Menu-MenuCategoryItems.aspx-20.html
122 http://www.subway.com/Menu/Product.aspx?CC=USA&LC=ENG&MenuId=36&MenuTypeId=1 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/Menu-Product.aspx-21.html
122 http://www.subway.com/Menu/MenuCategoryItems.aspx?CC=USA&LC=ENG&MenuId=41&MenuTypeId=1 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/Menu-MenuCategoryItems.aspx-22.html
122 http://www.subway.com/Menu/SidesDrinksExtras.aspx?CC=USA&LC=ENG&MenuId=38&MenuTypeId=1 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/Menu-SidesDrinksExtras.aspx-23.html
122 http://www.subway.com/subwayroot/Menu_And_Nutrition/BreadsAndToppings/default.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-Menu_And_Nutrition-BreadsAndToppings-default.aspx-24.html
122 http://www.subway.com/Menu/HowToOrder/HowToOrder.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/Menu-HowToOrder-HowToOrder.aspx-25.html
122 http://www.subway.com/nutrition/nutritionlist.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/nutrition-nutritionlist.aspx-26.html
122 http://www.subway.com/subwayroot/menu_and_nutrition/ExpertAdvice.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-menu_and_nutrition-ExpertAdvice.aspx-27.html
122 http://www.subway.com/subwayroot/Menu_And_Nutrition/MenuFAQs.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-Menu_And_Nutrition-MenuFAQs.aspx-28.html
122 http://www.subway.com/subwayroot/Menu_And_Nutrition/HeartHealthyMeals/Default.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-Menu_And_Nutrition-HeartHealthyMeals-Default.aspx-29.html
122 http://www.subway.com/subwayroot/Catering/cateringproducts.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-Catering-cateringproducts.aspx-30.html
122 http://www.subway.com/subwayroot/catering/CateringPlanning.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-catering-CateringPlanning.aspx-31.html
122 http://www.subway.com/subwayroot/Catering/CateringFAQs.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-Catering-CateringFAQs.aspx-32.html
122 http://www.subway.com/subwayroot/freshbuzz/Jared/default.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-freshbuzz-Jared-default.aspx-33.html
122 http://www.subway.com/subwayroot/freshbuzz/famousfans.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-freshbuzz-famousfans.aspx-34.html
122 http://www.subway.com/subwayroot/Freshbuzz/getnewsandoffer.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-Freshbuzz-getnewsandoffer.aspx-35.html
122 http://www.subway.com/ContactUs/CustServFAQs.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/ContactUs-CustServFAQs.aspx-36.html
122 http://www.subway.com/subwayroot/about_us/history.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-about_us-history.aspx-37.html
122 http://www.subway.com/subwayroot/about_us/pressreleases.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-about_us-pressreleases.aspx-38.html
122 http://www.subway.com/subwayroot/ExploreOurWorld.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-ExploreOurWorld.aspx-39.html
122 http://www.subway.com/subwayroot/about_us/Social_Responsibility/default.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-about_us-Social_Responsibility-default.aspx-40.html
122 http://www.subway.com/subwayroot/about_us/Social_Responsibility/OurPeopleOurCommunities.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-about_us-Social_Responsibility-OurPeopleOurCommunities.aspx-41.html
122 http://www.subway.com/subwayroot/Careers/Default.aspx?showDialog=true C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-Careers-Default.aspx-42.html
122 http://www.subway.com/subwayroot/Careers/regionalJobs.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-Careers-regionalJobs.aspx-43.html
122 http://www.subway.com/subwayroot/own_a_franchise/whychoosesubway.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-own_a_franchise-whychoosesubway.aspx-44.html
122 http://www.subway.com/subwayroot/Own_a_Franchise/nextsteps.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-Own_a_Franchise-nextsteps.aspx-45.html
122 http://www.subway.com/subwayroot/Own_a_Franchise/events.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-Own_a_Franchise-events.aspx-47.html
122 http://www.subway.com/subwayroot/Own_a_Franchise/FranchiseFAQs.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-Own_a_Franchise-FranchiseFAQs.aspx-48.html
122 http://www.subway.com/subwayroot/Own_a_Franchise/ContactFranchiseSales.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-Own_a_Franchise-ContactFranchiseSales.aspx-49.html
122 http://www.subway.com/forsale/default.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/forsale-default.aspx-50.html
122 http://www.subway.com/subwayroot/Own_a_Franchise/SubmitALocation.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-Own_a_Franchise-SubmitALocation.aspx-51.html
122 http://www.subway.com/subwayroot/freshbuzz/default.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\122-www.subway.com/subwayroot-freshbuzz-default.aspx-52.html
130 http://www.osgoodtextile.com/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\130-www.osgoodtextile.com/-1.html
130 http://www.osgoodtextile.com/coupons.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\130-www.osgoodtextile.com/coupons.html-2.html
130 http://www.osgoodtextile.com/mailing_list.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\130-www.osgoodtextile.com/mailing_list.html-3.html
130 http://www.osgoodtextile.com/contact_us.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\130-www.osgoodtextile.com/contact_us.html-4.html
130 http://www.osgoodtextile.com/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\130-www.osgoodtextile.com/index.html-5.html
130 http://www.osgoodtextile.com/osgood_textile_fabric_department.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\130-www.osgoodtextile.com/osgood_textile_fabric_department.html-6.html
130 http://www.osgoodtextile.com/osgood_textile_blinds_department.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\130-www.osgoodtextile.com/osgood_textile_blinds_department.html-7.html
130 http://www.osgoodtextile.com/hours.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\130-www.osgoodtextile.com/hours.html-8.html
130 http://www.osgoodtextile.com/directions.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\130-www.osgoodtextile.com/directions.html-9.html
130 http://www.osgoodtextile.com/about_us.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\130-www.osgoodtextile.com/about_us.html-10.html
131 http://springfield.luxeburgerbar.com/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\131-springfield.luxeburgerbar.com/-1.html
131 http://springfield.luxeburgerbar.com/menu/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\131-springfield.luxeburgerbar.com/menu--2.html
131 http://springfield.luxeburgerbar.com/menu/pdf-menus/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\131-springfield.luxeburgerbar.com/menu-pdf-menus--3.html
131 http://springfield.luxeburgerbar.com/menu/specials/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\131-springfield.luxeburgerbar.com/menu-specials--4.html
131 http://springfield.luxeburgerbar.com/reservations/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\131-springfield.luxeburgerbar.com/reservations--5.html
131 http://springfield.luxeburgerbar.com/events/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\131-springfield.luxeburgerbar.com/events--6.html
131 http://springfield.luxeburgerbar.com/about/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\131-springfield.luxeburgerbar.com/about--7.html
131 http://springfield.luxeburgerbar.com/about/team/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\131-springfield.luxeburgerbar.com/about-team--8.html
131 http://springfield.luxeburgerbar.com/about/press/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\131-springfield.luxeburgerbar.com/about-press--9.html
131 http://springfield.luxeburgerbar.com/gallery/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\131-springfield.luxeburgerbar.com/gallery--10.html
131 http://springfield.luxeburgerbar.com/gift-cards/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\131-springfield.luxeburgerbar.com/gift-cards--11.html
131 http://springfield.luxeburgerbar.com/contact-us/contact-form/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\131-springfield.luxeburgerbar.com/contact-us-contact-form--12.html
131 http://springfield.luxeburgerbar.com/contact-us/careers/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\131-springfield.luxeburgerbar.com/contact-us-careers--13.html
131 http://springfield.luxeburgerbar.com/contact-us/directions/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\131-springfield.luxeburgerbar.com/contact-us-directions--14.html
131 http://springfield.luxeburgerbar.com/vip-rewards/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\131-springfield.luxeburgerbar.com/vip-rewards--15.html
131 http://springfield.luxeburgerbar.com/specials/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\131-springfield.luxeburgerbar.com/specials--28.html
136 http://www.progreenpainting.com/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\136-www.progreenpainting.com/-1.html
136 http://www.progreenpainting.com/index.php C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\136-www.progreenpainting.com/index.php-2.html
136 http://www.progreenpainting.com/about-us.php C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\136-www.progreenpainting.com/about-us.php-3.html
136 http://www.progreenpainting.com/interior-painting.php C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\136-www.progreenpainting.com/interior-painting.php-4.html
136 http://www.progreenpainting.com/exterior-painting.php C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\136-www.progreenpainting.com/exterior-painting.php-5.html
136 http://www.progreenpainting.com/decks-patios.php C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\136-www.progreenpainting.com/decks-patios.php-6.html
136 http://www.progreenpainting.com/gallery.php C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\136-www.progreenpainting.com/gallery.php-7.html
136 http://www.progreenpainting.com/painting-faq.php C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\136-www.progreenpainting.com/painting-faq.php-8.html
136 http://www.progreenpainting.com/painting-tips.php C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\136-www.progreenpainting.com/painting-tips.php-9.html
136 http://www.progreenpainting.com/contact-us.php C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\136-www.progreenpainting.com/contact-us.php-10.html
136 http://www.progreenpainting.com/residential-painting.php C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\136-www.progreenpainting.com/residential-painting.php-12.html
136 http://www.progreenpainting.com/testimonials.php C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\136-www.progreenpainting.com/testimonials.php-13.html
137 http://www.newdaychurch.cc/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\137-www.newdaychurch.cc/-1.html
137 http://www.newdaychurch.cc/webservices/skinning/skin.aspx?groupId=73733 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\137-www.newdaychurch.cc/webservices-skinning-skin.aspx-2.html
137 http://www.newdaychurch.cc/pages/page.asp?page_id=234164 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\137-www.newdaychurch.cc/pages-page.asp-3.html
137 http://www.newdaychurch.cc/pages/page.asp?page_id=234156 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\137-www.newdaychurch.cc/pages-page.asp-4.html
137 http://www.newdaychurch.cc/pages/page.asp?page_id=234157 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\137-www.newdaychurch.cc/pages-page.asp-5.html
137 http://www.newdaychurch.cc/pages/page.asp?page_id=234158 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\137-www.newdaychurch.cc/pages-page.asp-6.html
137 http://www.newdaychurch.cc/pages/page.asp?page_id=234159 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\137-www.newdaychurch.cc/pages-page.asp-7.html
137 http://www.newdaychurch.cc/pages/page.asp?page_id=234160 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\137-www.newdaychurch.cc/pages-page.asp-8.html
137 http://www.newdaychurch.cc/pages/page.asp?page_id=234161 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\137-www.newdaychurch.cc/pages-page.asp-9.html
137 http://www.newdaychurch.cc/pages/page.asp?page_id=234165 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\137-www.newdaychurch.cc/pages-page.asp-10.html
137 http://www.newdaychurch.cc/pages/page.asp?page_id=237276 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\137-www.newdaychurch.cc/pages-page.asp-11.html
137 http://www.newdaychurch.cc/pages/page.asp?page_id=237262 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\137-www.newdaychurch.cc/pages-page.asp-12.html
137 http://www.newdaychurch.cc/pages/page.asp?page_id=234171 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\137-www.newdaychurch.cc/pages-page.asp-13.html
137 http://www.newdaychurch.cc/pages/page.asp?page_id=234209 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\137-www.newdaychurch.cc/pages-page.asp-14.html
137 http://www.newdaychurch.cc/pages/page.asp?page_id=234173 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\137-www.newdaychurch.cc/pages-page.asp-15.html
137 http://www.newdaychurch.cc/pages/page.asp?page_id=234191 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\137-www.newdaychurch.cc/pages-page.asp-16.html
137 http://www.newdaychurch.cc/pages/page.asp?page_id=251745 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\137-www.newdaychurch.cc/pages-page.asp-17.html
137 http://www.newdaychurch.cc/pages/page.asp?page_id=234177 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\137-www.newdaychurch.cc/pages-page.asp-18.html
137 http://www.newdaychurch.cc/pages/page.asp?page_id=237132 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\137-www.newdaychurch.cc/pages-page.asp-19.html
137 http://www.newdaychurch.cc/pages/page.asp?page_id=234174 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\137-www.newdaychurch.cc/pages-page.asp-20.html
137 http://www.newdaychurch.cc/pages/page.asp?page_id=236597 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\137-www.newdaychurch.cc/pages-page.asp-21.html
137 http://www.newdaychurch.cc/pages/page.asp?page_id=234187 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\137-www.newdaychurch.cc/pages-page.asp-22.html
137 http://www.newdaychurch.cc/sermons C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\137-www.newdaychurch.cc/sermons-23.html
137 http://www.newdaychurch.cc/pages/page.asp?page_id=237137 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\137-www.newdaychurch.cc/pages-page.asp-24.html
137 http://www.newdaychurch.cc/pages/page.asp?page_id=236611&programId=182309 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\137-www.newdaychurch.cc/pages-page.asp-25.html
137 http://www.newdaychurch.cc/pages/page.asp?page_id=236608 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\137-www.newdaychurch.cc/pages-page.asp-26.html
138 http://www.benjaminmoore.com/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/-1.html
138 http://www.benjaminmoore.com/ShowPropertyServlet;jsessionid=RqHVTXQMV7Zlsyy4fn26LXYhLpL04J9Nb7Ktw7QtzBjD64ryf6rN!-543060135!NONE?nodePath=%2FBEA%2BRepository%2Fimagerepository%2Fpublic_site%2Farticle_images%2FLogos%2FIA_BM_splashpagelogo%2F%2Fcustom_images%5B0%5D.content_en_US C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/ShowPropertyServlet;jsessionid=RqHVTXQMV7Zlsyy4fn26LXYhLpL04J9Nb7Ktw7QtzBjD64ryf6rN!-543060135!NONE-2.html
138 http://www.benjaminmoore.com/ShowPropertyServlet;jsessionid=RqHVTXQMV7Zlsyy4fn26LXYhLpL04J9Nb7Ktw7QtzBjD64ryf6rN!-543060135!NONE?nodePath=%2FBEA%2BRepository%2Fimagerepository%2Fpublic_site%2Fsplash_images%2FIA_splash_rbc_orangelivingroom%2F%2Fcustom_images%5B0%5D.content_en_US C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/ShowPropertyServlet;jsessionid=RqHVTXQMV7Zlsyy4fn26LXYhLpL04J9Nb7Ktw7QtzBjD64ryf6rN!-543060135!NONE-9.html
138 http://www.benjaminmoore.com/ShowPropertyServlet;jsessionid=RqHVTXQMV7Zlsyy4fn26LXYhLpL04J9Nb7Ktw7QtzBjD64ryf6rN!-543060135!NONE?nodePath=%2FBEA%2BRepository%2Fpublic_site%2Fsplash_page%2Fbm_splash_page%2F%2Fsplash_page_bg_images%5B1%5D.overlay_image C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/ShowPropertyServlet;jsessionid=RqHVTXQMV7Zlsyy4fn26LXYhLpL04J9Nb7Ktw7QtzBjD64ryf6rN!-543060135!NONE-10.html
138 http://www.benjaminmoore.com/en-us/welcome-to-benjamin-moore C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/en-us-welcome-to-benjamin-moore-14.html
138 http://www.benjaminmoore.com/en-us/for-your-home/about-the-benjamin-moore-paint-company C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/en-us-for-your-home-about-the-benjamin-moore-paint-company-45.html
138 http://www.benjaminmoore.com/en-us/for-architects-and-designers C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/en-us-for-architects-and-designers-15.html
138 http://www.benjaminmoore.com/en-us/for-your-home/benjamin-moore-store-locator C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/en-us-for-your-home-benjamin-moore-store-locator-46.html
138 http://www.benjaminmoore.com/en-us/for-painting-contractors C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/en-us-for-painting-contractors-16.html
138 http://www.benjaminmoore.com/portals/bmps.portal?_nfpb=true&_pageLabel=fh_errorpage_article&np=public_site%2Farticles%2Ferrorpage_article%2F404ErrorArticle C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/portals-bmps.portal-47.html
138 http://www.benjaminmoore.com/en-ca/for-your-home C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/en-ca-for-your-home-17.html
138 http://www.benjaminmoore.com/en-ca/for-architects-and-designers C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/en-ca-for-architects-and-designers-18.html
138 http://www.benjaminmoore.com/en-ca/for-contractors C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/en-ca-for-contractors-19.html
138 http://www.benjaminmoore.com/fr-ca/pour-votre-decor C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/fr-ca-pour-votre-decor-20.html
138 http://www.benjaminmoore.com/fr-ca/pour-les-architectes-et-designers C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/fr-ca-pour-les-architectes-et-designers-21.html
138 http://www.benjaminmoore.com/fr-ca/pour-entrepreneurs C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/fr-ca-pour-entrepreneurs-22.html
138 http://www.benjaminmoore.com/en-us/for-your-home/privacy-statement C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/en-us-for-your-home-privacy-statement-48.html
138 http://www.benjaminmoore.com/en-us/for-your-home/legal-benjamin-moore-co-website-terms-and-conditions C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/en-us-for-your-home-legal-benjamin-moore-co-website-terms-and-conditions-49.html
138 http://www.benjaminmoore.com/en-us/for-your-home/personal-color-viewer C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/en-us-for-your-home-personal-color-viewer-50.html
138 http://www.benjaminmoore.com/en-us/for-your-home/find-products C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/en-us-for-your-home-find-products-51.html
138 http://www.benjaminmoore.com/en-us/for-your-home/paint-products/ben-waterborne-interior-paint?lang=en_US&role=H C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/en-us-for-your-home-paint-products-ben-waterborne-interior-paint-53.html
138 http://www.benjaminmoore.com/en-us/for-your-home/paint-products/natura-waterborne-interior-paint?lang=en_US&role=H C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/en-us-for-your-home-paint-products-natura-waterborne-interior-paint-54.html
138 http://www.benjaminmoore.com/en-us/for-your-home/paint-products/aura-waterborne-interior-paint?lang=en_US&role=H C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/en-us-for-your-home-paint-products-aura-waterborne-interior-paint-64.html
138 http://www.benjaminmoore.com/en-us/for-your-home/explore-paint-colors C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/en-us-for-your-home-explore-paint-colors-55.html
138 http://www.benjaminmoore.com/en-us/for-architects-and-designers/benjamin-moore-aura-interior-paint C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/en-us-for-architects-and-designers-benjamin-moore-aura-interior-paint-57.html
138 http://www.benjaminmoore.com/en-us/for-contractors/professional-tools C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/en-us-for-contractors-professional-tools-58.html
138 http://www.benjaminmoore.com/en-us/for-contractors/preferred-commercial-account C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/en-us-for-contractors-preferred-commercial-account-59.html
138 http://www.benjaminmoore.com/en-us/for-architects-and-designers/super-spec-hp-industrial-coatings C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/en-us-for-architects-and-designers-super-spec-hp-industrial-coatings-61.html
138 http://www.benjaminmoore.com/en-us/for-your-home/site-map C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\138-www.benjaminmoore.com/en-us-for-your-home-site-map-62.html
140 http://www.clubsunagawam.com/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\140-www.clubsunagawam.com/-1.html
140 http://www.clubsunagawam.com/cs/Satellite?c=CSS_UXStyling&cid=1300961338070&moddate=2012-09-15%2007%3A25%3A22&pagename=Stylesheet&site=USMultiPage C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\140-www.clubsunagawam.com/cs-Satellite-2.html
140 http://www.clubsunagawam.com/cs/Satellite?c=CSS_UXOverride&cid=1301395447706&moddate=2012-11-27%2022%3A47%3A58&pagename=Stylesheet&site=USMultiPage C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\140-www.clubsunagawam.com/cs-Satellite-3.html
140 http://www.clubsunagawam.com/index.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\140-www.clubsunagawam.com/index.html-5.html
140 http://www.clubsunagawam.com/agawam-ma-tanning-services.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\140-www.clubsunagawam.com/agawam-ma-tanning-services.html-6.html
140 http://www.clubsunagawam.com/agawam-ma-airbrush-tanning-services.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\140-www.clubsunagawam.com/agawam-ma-airbrush-tanning-services.html-7.html
140 http://www.clubsunagawam.com/contact-sun-tanning-salon-agawam-ma.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\140-www.clubsunagawam.com/contact-sun-tanning-salon-agawam-ma.html-8.html
143 http://www.woodcraft.com/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/-1.html
143 http://www.woodcraft.com/include/wcss.css?v=1.7 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/include-wcss.css-2.html
143 http://www.woodcraft.com/category/3/1001038/2083034/Domestic%20Wood%20by%20Species.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001038-2083034-Domestic%20Wood%20by%20Species.aspx-52.html
143 http://www.woodcraft.com/include/responsive.css?v=1.0 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/include-responsive.css-3.html
143 http://www.woodcraft.com/category/3/1001038/2083026/Exotic%20Wood%20by%20Species.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001038-2083026-Exotic%20Wood%20by%20Species.aspx-53.html
143 http://www.woodcraft.com/category/3/1001038/2083031/Baseball%20Billet%20Stock.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001038-2083031-Baseball%20Billet%20Stock.aspx-54.html
143 http://www.woodcraft.com/Stores/Default.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/Stores-Default.aspx-7.html
143 http://www.woodcraft.com/category/3/1001038/2083023/Bottle%20Stopper%20Blank%20Stock.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001038-2083023-Bottle%20Stopper%20Blank%20Stock.aspx-55.html
143 http://www.woodcraft.com/category/3/1001038/2083024/Bowl%20Blank%20Stock.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001038-2083024-Bowl%20Blank%20Stock.aspx-56.html
143 http://www.woodcraft.com/category/3/1001038/1005307/Carving%20Stock.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001038-1005307-Carving%20Stock.aspx-57.html
143 http://www.woodcraft.com/checkout/cart.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/checkout-cart.aspx-8.html
143 http://www.woodcraft.com/category/3/1001038/1002098/Dimension%20Lumber.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001038-1002098-Dimension%20Lumber.aspx-58.html
143 http://www.woodcraft.com/brands/2416/Easy%20Wood%20Tools.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/brands-2416-Easy%20Wood%20Tools.aspx-9.html
143 http://www.woodcraft.com/category/3/1001038/1002121/Dowels.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001038-1002121-Dowels.aspx-59.html
143 http://www.woodcraft.com/Tab/001.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/Tab-001.aspx-10.html
143 http://www.woodcraft.com/Catalog/Catalog.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/Catalog-Catalog.aspx-11.html
143 http://www.woodcraft.com/specials/newproducts.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/specials-newproducts.aspx-12.html
143 http://www.woodcraft.com/Catalog/giftCardHome.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/Catalog-giftCardHome.aspx-13.html
143 http://www.woodcraft.com/offers/shopbydept.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/offers-shopbydept.aspx-14.html
143 http://www.woodcraft.com/category/3/1001038/2081023/Finger%20Board%20Stock.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001038-2081023-Finger%20Board%20Stock.aspx-60.html
143 http://www.woodcraft.com/category/2/1010000/1001045/Power%20Tools.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-2-1010000-1001045-Power%20Tools.aspx-15.html
143 http://www.woodcraft.com/category/3/1001038/2083027/Handle%20Blank%20Stock.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001038-2083027-Handle%20Blank%20Stock.aspx-61.html
143 http://www.woodcraft.com/category/3/1001045/1005230/Air%20Compressors.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-1005230-Air%20Compressors.aspx-16.html
143 http://www.woodcraft.com/category/3/1001038/1002257/Inlay.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001038-1002257-Inlay.aspx-62.html
143 http://www.woodcraft.com/category/3/1001038/1002243/Knife%20Scale%20Stock.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001038-1002243-Knife%20Scale%20Stock.aspx-63.html
143 http://www.woodcraft.com/category/3/1001038/2083028/Leg%20Blank%20Stock.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001038-2083028-Leg%20Blank%20Stock.aspx-64.html
143 http://www.woodcraft.com/category/4/1001046/1002167/Alignment%20and%20Set%20Up%20Tools.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-4-1001046-1002167-Alignment%20and%20Set%20Up%20Tools.aspx-17.html
143 http://www.woodcraft.com/category/3/1001038/1002286/Pen%20Turning%20Blank%20Stock.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001038-1002286-Pen%20Turning%20Blank%20Stock.aspx-65.html
143 http://www.woodcraft.com/category/3/1001045/1004065/Bandsaws%20Blades%20and%20Accessories.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-1004065-Bandsaws%20Blades%20and%20Accessories.aspx-18.html
143 http://www.woodcraft.com/category/4/1001046/1002172/Bases%20Stands%20and%20Supports.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-4-1001046-1002172-Bases%20Stands%20and%20Supports.aspx-19.html
143 http://www.woodcraft.com/category/3/1001038/2083029/Peppermill%20Blank%20Stock.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001038-2083029-Peppermill%20Blank%20Stock.aspx-66.html
143 http://www.woodcraft.com/category/3/1001045/1001200/Circular%20Saws%20Blades%20and%20Accessories.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-1001200-Circular%20Saws%20Blades%20and%20Accessories.aspx-20.html
143 http://www.woodcraft.com/category/3/1001038/1005311/Plywood.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001038-1005311-Plywood.aspx-67.html
143 http://www.woodcraft.com/category/3/1001045/1005266/CNC%20Machines.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-1005266-CNC%20Machines.aspx-21.html
143 http://www.woodcraft.com/category/3/1001038/2083030/Pool%20Cue%20Blank%20Stock.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001038-2083030-Pool%20Cue%20Blank%20Stock.aspx-68.html
143 http://www.woodcraft.com/category/3/1001045/1001201/Cordless%20Tools.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-1001201-Cordless%20Tools.aspx-22.html
143 http://www.woodcraft.com/category/3/1001038/2083025/Spindle%20Blank%20Stock.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001038-2083025-Spindle%20Blank%20Stock.aspx-69.html
143 http://www.woodcraft.com/category/3/1001045/1004067/Drill%20Presses%20and%20Accessories.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-1004067-Drill%20Presses%20and%20Accessories.aspx-23.html
143 http://www.woodcraft.com/category/3/1001045/2080773/Drills%20and%20Drivers.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-2080773-Drills%20and%20Drivers.aspx-24.html
143 http://www.woodcraft.com/category/3/1001045/1002170/Dust%20Collectors%20Extractors%20and%20Accessories.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-1002170-Dust%20Collectors%20Extractors%20and%20Accessories.aspx-25.html
143 http://www.woodcraft.com/category/3/1001038/1002239/Thin%20Stock%20Lumber.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001038-1002239-Thin%20Stock%20Lumber.aspx-70.html
143 http://www.woodcraft.com/category/3/1001045/1001068/Generators.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-1001068-Generators.aspx-26.html
143 http://www.woodcraft.com/category/3/1001038/1002122/Veneer.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001038-1002122-Veneer.aspx-71.html
143 http://www.woodcraft.com/category/3/1001045/1002161/Grinders%20Buffers%20and%20Sharpeners.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-1002161-Grinders%20Buffers%20and%20Sharpeners.aspx-27.html
143 http://www.woodcraft.com/category/3/1001045/2080737/Handheld%20Sanders%20and%20Sandpaper.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-2080737-Handheld%20Sanders%20and%20Sandpaper.aspx-28.html
143 http://www.woodcraft.com/category/3/1001038/1002242/Veneering%20Tools%20and%20Accessories.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001038-1002242-Veneering%20Tools%20and%20Accessories.aspx-72.html
143 http://www.woodcraft.com/category/3/1001045/1004091/Jig%20Saws%20Blades%20and%20Accessories.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-1004091-Jig%20Saws%20Blades%20and%20Accessories.aspx-29.html
143 http://www.woodcraft.com/category/3/1001038/1001036/Wood%20Grab%20Bags.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001038-1001036-Wood%20Grab%20Bags.aspx-73.html
143 http://www.woodcraft.com/category/3/1001045/2081039/Joinery%20Tools%20and%20Accessories.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-2081039-Joinery%20Tools%20and%20Accessories.aspx-30.html
143 http://www.woodcraft.com/category/3/1001038/1002296/Wood%20Storage%20Racks.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001038-1002296-Wood%20Storage%20Racks.aspx-74.html
143 http://www.woodcraft.com/category/3/1001045/1004066/Jointers.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-1004066-Jointers.aspx-31.html
143 http://www.woodcraft.com/category/3/1001038/1002236/Wooden%20Parts.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001038-1002236-Wooden%20Parts.aspx-75.html
143 http://www.woodcraft.com/category/3/1001045/1002150/Wood%20Lathes%20Accessories%20and%20Chucks.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-1002150-Wood%20Lathes%20Accessories%20and%20Chucks.aspx-32.html
143 http://www.woodcraft.com/category/2/1010000/1001038/Wood.aspx?featured=new C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-2-1010000-1001038-Wood.aspx-76.html
143 http://www.woodcraft.com/category/3/1001039/2083555/Lawn%20and%20Garden.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001039-2083555-Lawn%20and%20Garden.aspx-33.html
143 http://www.woodcraft.com/category/2/1010000/1001050/Hardware.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-2-1010000-1001050-Hardware.aspx-77.html
143 http://www.woodcraft.com/category/3/1001045/1005008/Miter%20Saws%20Stands%20Blades%20and%20Accessories.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-1005008-Miter%20Saws%20Stands%20Blades%20and%20Accessories.aspx-34.html
143 http://www.woodcraft.com/category/3/1001050/2083106/Bed%20Hardware.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001050-2083106-Bed%20Hardware.aspx-78.html
143 http://www.woodcraft.com/category/3/1001050/1002223/Catches%20and%20Hasps.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001050-1002223-Catches%20and%20Hasps.aspx-79.html
143 http://www.woodcraft.com/category/3/1001045/1004062/Mortisers%20and%20Accessories.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-1004062-Mortisers%20and%20Accessories.aspx-35.html
143 http://www.woodcraft.com/category/3/1001045/2081082/MultiFunction%20Tools%20and%20Accessories.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-2081082-MultiFunction%20Tools%20and%20Accessories.aspx-36.html
143 http://www.woodcraft.com/category/3/1001050/1002232/Computer%20TV%20and%20Stereo.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001050-1002232-Computer%20TV%20and%20Stereo.aspx-80.html
143 http://www.woodcraft.com/category/3/1001045/1002157/Planers%20and%20Accessories.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-1002157-Planers%20and%20Accessories.aspx-37.html
143 http://www.woodcraft.com/category/3/1001050/1004021/Custom%20Drawers.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001050-1004021-Custom%20Drawers.aspx-81.html
143 http://www.woodcraft.com/category/3/1001045/1005298/Pneumatics%20%20Air%20Tools%20Fasteners%20and%20Accessories.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-1005298-Pneumatics%20%20Air%20Tools%20Fasteners%20and%20Accessories.aspx-38.html
143 http://www.woodcraft.com/category/3/1001050/2083568/Decorative%20Hardware.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001050-2083568-Decorative%20Hardware.aspx-82.html
143 http://www.woodcraft.com/category/3/1001045/1001048/Power%20Carving.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-1001048-Power%20Carving.aspx-39.html
143 http://www.woodcraft.com/category/3/1001050/1002229/Drawer%20and%20Table%20Slides.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001050-1002229-Drawer%20and%20Table%20Slides.aspx-83.html
143 http://www.woodcraft.com/category/3/1001045/1005302/Power%20Feeders.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-1005302-Power%20Feeders.aspx-40.html
143 http://www.woodcraft.com/category/3/1001050/1005271/Fasteners.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001050-1005271-Fasteners.aspx-84.html
143 http://www.woodcraft.com/category/3/1001045/1002158/Routers%20Router%20Bits%20and%20Accessories.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-1002158-Routers%20Router%20Bits%20and%20Accessories.aspx-41.html
143 http://www.woodcraft.com/category/3/1001050/1002217/Hinges.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001050-1002217-Hinges.aspx-85.html
143 http://www.woodcraft.com/category/3/1001045/1002153/Sanding%20Machines.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-1002153-Sanding%20Machines.aspx-42.html
143 http://www.woodcraft.com/category/3/1001050/1002307/Jig%20and%20Fixture%20Hardware.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001050-1002307-Jig%20and%20Fixture%20Hardware.aspx-86.html
143 http://www.woodcraft.com/category/3/1001050/1002218/Knobs.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001050-1002218-Knobs.aspx-87.html
143 http://www.woodcraft.com/category/3/1001050/1002228/Knock%20Down%20Hardware.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001050-1002228-Knock%20Down%20Hardware.aspx-88.html
143 http://www.woodcraft.com/category/4/1001049/1005025/Lighting%20for%20Cabinets%20Drawers%20and%20Tools.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-4-1001049-1005025-Lighting%20for%20Cabinets%20Drawers%20and%20Tools.aspx-89.html
143 http://www.woodcraft.com/category/3/1001050/1002222/Locks%20and%20Escutcheons.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001050-1002222-Locks%20and%20Escutcheons.aspx-90.html
143 http://www.woodcraft.com/category/3/1001045/1001210/Saws%20and%20Saw%20Blades.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-1001210-Saws%20and%20Saw%20Blades.aspx-43.html
143 http://www.woodcraft.com/category/3/1001045/2080770/Scroll%20Saws%20Blades%20and%20Accessories.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-2080770-Scroll%20Saws%20Blades%20and%20Accessories.aspx-44.html
143 http://www.woodcraft.com/category/3/1001045/1005007/Shapers.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-1005007-Shapers.aspx-45.html
143 http://www.woodcraft.com/category/3/1001050/1002159/Pulls.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001050-1002159-Pulls.aspx-91.html
143 http://www.woodcraft.com/category/3/1001045/1001018/Small%20ScaleModel%20Making.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-1001018-Small%20ScaleModel%20Making.aspx-46.html
143 http://www.woodcraft.com/category/3/1001050/1002221/Shelf%20Pins%20and%20Brackets.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001050-1002221-Shelf%20Pins%20and%20Brackets.aspx-92.html
143 http://www.woodcraft.com/category/3/1001045/1004064/Table%20Saws%20Blades%20Stands%20and%20Accessories.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-1004064-Table%20Saws%20Blades%20Stands%20and%20Accessories.aspx-47.html
143 http://www.woodcraft.com/category/3/1001050/1002231/Swivels.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001050-1002231-Swivels.aspx-93.html
143 http://www.woodcraft.com/category/3/1001050/1002225/Table%20Hardware.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001050-1002225-Table%20Hardware.aspx-94.html
143 http://www.woodcraft.com/category/4/1001046/1002168/Jigs%20and%20Fixtures.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-4-1001046-1002168-Jigs%20and%20Fixtures.aspx-49.html
143 http://www.woodcraft.com/category/3/1001050/1002261/Template%20Systems.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001050-1002261-Template%20Systems.aspx-95.html
143 http://www.woodcraft.com/category/2/1010000/1001045/Power%20Tools.aspx?featured=new C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-2-1010000-1001045-Power%20Tools.aspx-50.html
143 http://www.woodcraft.com/category/3/1001050/1002224/Trunk%20and%20Briefcase%20Hardware.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001050-1002224-Trunk%20and%20Briefcase%20Hardware.aspx-96.html
143 http://www.woodcraft.com/category/2/1010000/1001038/Wood.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-2-1010000-1001038-Wood.aspx-51.html
143 http://www.woodcraft.com/category/3/1001050/1002219/Wheels%20and%20Casters.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001050-1002219-Wheels%20and%20Casters.aspx-97.html
143 http://www.woodcraft.com/category/3/1005232/1001023/Rasps%20and%20Files.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1005232-1001023-Rasps%20and%20Files.aspx-102.html
143 http://www.woodcraft.com/category/2/1010000/1001050/Hardware.aspx?featured=new C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-2-1010000-1001050-Hardware.aspx-98.html
143 http://www.woodcraft.com/category/4/1001049/1002214/Hammers%20and%20Mallets.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-4-1001049-1002214-Hammers%20and%20Mallets.aspx-103.html
143 http://www.woodcraft.com/category/2/1010000/1005232/Hand%20Tools.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-2-1010000-1005232-Hand%20Tools.aspx-99.html
143 http://www.woodcraft.com/category/3/1005232/1001040/Hand%20Saws.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1005232-1001040-Hand%20Saws.aspx-104.html
143 http://www.woodcraft.com/category/3/1005232/1001053/Carving.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1005232-1001053-Carving.aspx-100.html
143 http://www.woodcraft.com/category/3/1005232/1001026/Chisels.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1005232-1001026-Chisels.aspx-101.html
143 http://www.woodcraft.com/category/3/1001051/1002234/Glass%20Accessories.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001051-1002234-Glass%20Accessories.aspx-153.html
143 http://www.woodcraft.com/category/4/1001053/1002264/Knives%20and%20Utility%20Blades.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-4-1001053-1002264-Knives%20and%20Utility%20Blades.aspx-105.html
143 http://www.woodcraft.com/category/3/1005232/1001031/Marking%20and%20Measuring%20Tools.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1005232-1001031-Marking%20and%20Measuring%20Tools.aspx-106.html
143 http://www.woodcraft.com/category/3/1001051/2083870/Knife%20Making%20Kits.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001051-2083870-Knife%20Making%20Kits.aspx-154.html
143 http://www.woodcraft.com/category/3/1005232/1001037/Woodworking%20Hand%20Planes%20and%20Spokeshaves.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1005232-1001037-Woodworking%20Hand%20Planes%20and%20Spokeshaves.aspx-107.html
143 http://www.woodcraft.com/category/3/1001051/1002238/Miscellaneous%20Project%20Supplies.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001051-1002238-Miscellaneous%20Project%20Supplies.aspx-155.html
143 http://www.woodcraft.com/category/3/1005232/1002068/Scrapers.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1005232-1002068-Scrapers.aspx-109.html
143 http://www.woodcraft.com/category/3/1001051/1001025/Musical%20Instrument%20Kits%20and%20Supplies.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001051-1001025-Musical%20Instrument%20Kits%20and%20Supplies.aspx-156.html
143 http://www.woodcraft.com/category/3/1005232/2080335/Screwdrivers.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1005232-2080335-Screwdrivers.aspx-110.html
143 http://www.woodcraft.com/category/4/1001030/1001056/Pen%20Turning%20Kits%20Blanks%20and%20Accessories.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-4-1001030-1001056-Pen%20Turning%20Kits%20Blanks%20and%20Accessories.aspx-157.html
143 http://www.woodcraft.com/category/3/1005232/2080877/Snips.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1005232-2080877-Snips.aspx-111.html
143 http://www.woodcraft.com/category/3/1001051/2080839/Personalized%20Workshop%20Signs.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001051-2080839-Personalized%20Workshop%20Signs.aspx-158.html
143 http://www.woodcraft.com/category/3/1001051/1001022/Picture%20Framing.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001051-1001022-Picture%20Framing.aspx-159.html
143 http://www.woodcraft.com/category/3/1005232/1001017/Timber%20Framing.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1005232-1001017-Timber%20Framing.aspx-112.html
143 http://www.woodcraft.com/category/3/1005232/1001030/Woodturning%20Tools%20Lathes%20and%20Kits.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1005232-1001030-Woodturning%20Tools%20Lathes%20and%20Kits.aspx-113.html
143 http://www.woodcraft.com/category/3/1001051/1001041/Woodburning.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001051-1001041-Woodburning.aspx-160.html
143 http://www.woodcraft.com/category/4/1001030/1002262/Woodturning%20Kits%20and%20Projects.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-4-1001030-1002262-Woodturning%20Kits%20and%20Projects.aspx-161.html
143 http://www.woodcraft.com/category/2/1010000/1001051/Project%20Supplies.aspx?featured=new C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-2-1010000-1001051-Project%20Supplies.aspx-162.html
143 http://www.woodcraft.com/category/3/1001045/1001044/Woodboring%20Tools.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001045-1001044-Woodboring%20Tools.aspx-114.html
143 http://www.woodcraft.com/category/2/1010000/1001047/Books%20DVDs%20and%20Videos.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-2-1010000-1001047-Books%20DVDs%20and%20Videos.aspx-163.html
143 http://www.woodcraft.com/category/3/1001047/1002183/Boxmaking%20Books.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001047-1002183-Boxmaking%20Books.aspx-164.html
143 http://www.woodcraft.com/category/3/1001047/1002192/Cabinetry%20Books%20and%20DVDs.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001047-1002192-Cabinetry%20Books%20and%20DVDs.aspx-165.html
143 http://www.woodcraft.com/category/2/1010000/1005232/Hand%20Tools.aspx?featured=new C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-2-1010000-1005232-Hand%20Tools.aspx-115.html
143 http://www.woodcraft.com/category/3/1001047/1002245/Caning%20Books.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001047-1002245-Caning%20Books.aspx-166.html
143 http://www.woodcraft.com/category/3/1001047/1002174/Carving%20Books.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001047-1002174-Carving%20Books.aspx-167.html
143 http://www.woodcraft.com/category/3/1001047/1002184/Clock%20Books.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001047-1002184-Clock%20Books.aspx-168.html
143 http://www.woodcraft.com/category/3/1001047/1001158/Craft%20Books.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001047-1001158-Craft%20Books.aspx-169.html
143 http://www.woodcraft.com/category/3/1001047/1004019/DVDs%20and%20Videos.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001047-1004019-DVDs%20and%20Videos.aspx-170.html
143 http://www.woodcraft.com/category/3/1001047/1005021/Finishing%20Books.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001047-1005021-Finishing%20Books.aspx-171.html
143 http://www.woodcraft.com/category/2/1010000/1005233/Shop%20Essentials.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-2-1010000-1005233-Shop%20Essentials.aspx-116.html
143 http://www.woodcraft.com/category/3/1001047/1002191/Furniture%20Making%20Books.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001047-1002191-Furniture%20Making%20Books.aspx-173.html
143 http://www.woodcraft.com/category/3/1001047/1002202/Hand%20Tool%20Books.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001047-1002202-Hand%20Tool%20Books.aspx-174.html
143 http://www.woodcraft.com/category/3/1001047/1002309/Instrument%20Making%20Books.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001047-1002309-Instrument%20Making%20Books.aspx-175.html
143 http://www.woodcraft.com/category/3/1001047/2083420/Knife%20Making%20Books.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001047-2083420-Knife%20Making%20Books.aspx-176.html
143 http://www.woodcraft.com/category/3/1001047/1002305/Marquetry%20and%20Veneering%20Books.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001047-1002305-Marquetry%20and%20Veneering%20Books.aspx-177.html
143 http://www.woodcraft.com/category/3/1005233/1001028/Clamps.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1005233-1001028-Clamps.aspx-117.html
143 http://www.woodcraft.com/category/3/1001047/1002182/Outdoor%20Woodworking%20Books.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001047-1002182-Outdoor%20Woodworking%20Books.aspx-179.html
143 http://www.woodcraft.com/category/3/1001047/1002195/Pen%20Turning%20Books%20and%20DVDs.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001047-1002195-Pen%20Turning%20Books%20and%20DVDs.aspx-180.html
143 http://www.woodcraft.com/category/3/1005233/1001042/Finishes.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1005233-1001042-Finishes.aspx-118.html
143 http://www.woodcraft.com/category/3/1001047/1002197/Power%20Tool%20Books.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001047-1002197-Power%20Tool%20Books.aspx-182.html
143 http://www.woodcraft.com/category/3/1001039/1001112/Flooring%20and%20AntiFatigue%20Floor%20Mats.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001039-1001112-Flooring%20and%20AntiFatigue%20Floor%20Mats.aspx-119.html
143 http://www.woodcraft.com/category/3/1001047/1002194/Puzzles%20and%20Toys%20Books.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001047-1002194-Puzzles%20and%20Toys%20Books.aspx-183.html
143 http://www.woodcraft.com/category/3/1001047/1002203/Reference%20Books.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001047-1002203-Reference%20Books.aspx-184.html
143 http://www.woodcraft.com/category/4/1001021/1002177/Sharpening%20Books.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-4-1001021-1002177-Sharpening%20Books.aspx-185.html
143 http://www.woodcraft.com/category/3/1001047/1002201/Wood%20Bending%20Books.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001047-1002201-Wood%20Bending%20Books.aspx-186.html
143 http://www.woodcraft.com/category/4/1001041/1002178/Woodburning%20Books.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-4-1001041-1002178-Woodburning%20Books.aspx-187.html
143 http://www.woodcraft.com/category/3/1001047/1003081/Woodcraft%20Magazine.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001047-1003081-Woodcraft%20Magazine.aspx-188.html
143 http://www.woodcraft.com/category/3/1005233/1001221/Glue%20and%20Glue%20Accessories.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1005233-1001221-Glue%20and%20Glue%20Accessories.aspx-120.html
143 http://www.woodcraft.com/category/3/1001047/1002199/Woodshop%20Books.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001047-1002199-Woodshop%20Books.aspx-189.html
143 http://www.woodcraft.com/category/4/1001030/1002193/Woodturning%20Books%20and%20DVDs.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-4-1001030-1002193-Woodturning%20Books%20and%20DVDs.aspx-190.html
143 http://www.woodcraft.com/category/3/1001047/1005019/Woodworking%20for%20the%20Home%20Books.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001047-1005019-Woodworking%20for%20the%20Home%20Books.aspx-191.html
143 http://www.woodcraft.com/category/3/1001047/1001059/Woodworking%20Technique%20Books.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001047-1001059-Woodworking%20Technique%20Books.aspx-192.html
143 http://www.woodcraft.com/category/3/1005233/1001219/Sanding%20Sandpaper%20and%20Accessories.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1005233-1001219-Sanding%20Sandpaper%20and%20Accessories.aspx-121.html
143 http://www.woodcraft.com/category/2/1010000/1001047/Books%20DVDs%20and%20Videos.aspx?featured=new C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-2-1010000-1001047-Books%20DVDs%20and%20Videos.aspx-193.html
143 http://www.woodcraft.com/category/3/1005233/1001021/Sharpening.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1005233-1001021-Sharpening.aspx-122.html
143 http://www.woodcraft.com/category/2/1010000/1001039/Plus%20More.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-2-1010000-1001039-Plus%20More.aspx-194.html
143 http://www.woodcraft.com/category/3/1001039/2085831/Cleaning%20Equipment.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001039-2085831-Cleaning%20Equipment.aspx-195.html
143 http://www.woodcraft.com/category/3/1005233/1001049/Shop%20Accessories.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1005233-1001049-Shop%20Accessories.aspx-123.html
143 http://www.woodcraft.com/category/3/1001039/2084139/Exercise%20Equipment.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001039-2084139-Exercise%20Equipment.aspx-196.html
143 http://www.woodcraft.com/category/5/1002213/1001087/Miscellaneous%20Shop%20MustHave%20Essentials.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-5-1002213-1001087-Miscellaneous%20Shop%20MustHave%20Essentials.aspx-124.html
143 http://www.woodcraft.com/category/3/1001039/1001075/For%20the%20Home.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001039-1001075-For%20the%20Home.aspx-197.html
143 http://www.woodcraft.com/category/3/1005233/2083485/Shop%20Safety.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1005233-2083485-Shop%20Safety.aspx-125.html
143 http://www.woodcraft.com/category/3/1001039/1001102/Ladders%20and%20Scaffolding.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001039-1001102-Ladders%20and%20Scaffolding.aspx-198.html
143 http://www.woodcraft.com/category/3/1005233/1005027/Storage.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1005233-1005027-Storage.aspx-126.html
143 http://www.woodcraft.com/category/3/1001039/1001071/Outdoor%20Living.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001039-1001071-Outdoor%20Living.aspx-199.html
143 http://www.woodcraft.com/category/3/1001039/2080771/Panel%20Saws.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001039-2080771-Panel%20Saws.aspx-200.html
143 http://www.woodcraft.com/category/3/1001039/1001217/Vehicle%20Accessories.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001039-1001217-Vehicle%20Accessories.aspx-201.html
143 http://www.woodcraft.com/category/3/1001039/1001083/Wooden%20Personal%20Accessories.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001039-1001083-Wooden%20Personal%20Accessories.aspx-202.html
143 http://www.woodcraft.com/category/3/1005233/1001220/Vises.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1005233-1001220-Vises.aspx-127.html
143 http://www.woodcraft.com/category/3/1001039/2085900/Wooden%20Toys.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001039-2085900-Wooden%20Toys.aspx-203.html
143 http://www.woodcraft.com/category/3/1005233/1001027/Workbenches%20and%20Hardware.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1005233-1001027-Workbenches%20and%20Hardware.aspx-128.html
143 http://www.woodcraft.com/brands.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/brands.aspx-204.html
143 http://www.woodcraft.com/category/2/1010000/1005233/Shop%20Essentials.aspx?featured=new C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-2-1010000-1005233-Shop%20Essentials.aspx-129.html
143 http://www.woodcraft.com/brands/2399/Bosch.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/brands-2399-Bosch.aspx-205.html
143 http://www.woodcraft.com/category/3/1001047/1004092/Woodworking%20Plans.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001047-1004092-Woodworking%20Plans.aspx-130.html
143 http://www.woodcraft.com/brands/50/DeWalt.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/brands-50-DeWalt.aspx-206.html
143 http://www.woodcraft.com/category/4/1004092/1001315/Cabins%20Houses%20and%20Addition%20Plans.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-4-1004092-1001315-Cabins%20Houses%20and%20Addition%20Plans.aspx-131.html
143 http://www.woodcraft.com/brands/68/Fein.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/brands-68-Fein.aspx-207.html
143 http://www.woodcraft.com/brands/69/Festool.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/brands-69-Festool.aspx-208.html
143 http://www.woodcraft.com/category/4/1004092/1004096/Childrens%20Toy%20and%20Dollhouse%20Plans.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-4-1004092-1004096-Childrens%20Toy%20and%20Dollhouse%20Plans.aspx-132.html
143 http://www.woodcraft.com/brands/1000/Freud.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/brands-1000-Freud.aspx-209.html
143 http://www.woodcraft.com/category/4/1004092/1004097/Furniture%20Plans.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-4-1004092-1004097-Furniture%20Plans.aspx-133.html
143 http://www.woodcraft.com/brands/85/General%20Finishes.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/brands-85-General%20Finishes.aspx-210.html
143 http://www.woodcraft.com/brands/2024/Highpoint.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/brands-2024-Highpoint.aspx-211.html
143 http://www.woodcraft.com/brands/105/HTC.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/brands-105-HTC.aspx-212.html
143 http://www.woodcraft.com/category/4/1004092/1004094/Garden%20and%20Patio%20Plans.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-4-1004092-1004094-Garden%20and%20Patio%20Plans.aspx-134.html
143 http://www.woodcraft.com/brands/115/JET.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/brands-115-JET.aspx-213.html
143 http://www.woodcraft.com/category/4/1004092/2081686/Holiday%20Plans.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-4-1004092-2081686-Holiday%20Plans.aspx-135.html
143 http://www.woodcraft.com/category/4/1004092/2081506/Home%20Decor%20Plans.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-4-1004092-2081506-Home%20Decor%20Plans.aspx-136.html
143 http://www.woodcraft.com/category/4/1004092/2081512/Miscellaneous%20Plans.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-4-1004092-2081512-Miscellaneous%20Plans.aspx-137.html
143 http://www.woodcraft.com/brands/125/Kreg.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/brands-125-Kreg.aspx-214.html
143 http://www.woodcraft.com/category/4/1004092/1001317/Outdoor%20Storage%20Plans.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-4-1004092-1001317-Outdoor%20Storage%20Plans.aspx-138.html
143 http://www.woodcraft.com/brands/2375/Laguna.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/brands-2375-Laguna.aspx-215.html
143 http://www.woodcraft.com/category/4/1004092/1004095/Shop%20Jigs%20and%20Storage%20Plans.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-4-1004092-1004095-Shop%20Jigs%20and%20Storage%20Plans.aspx-139.html
143 http://www.woodcraft.com/category/4/1004092/1005267/Tool%20Plans.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-4-1004092-1005267-Tool%20Plans.aspx-140.html
143 http://www.woodcraft.com/category/4/1004092/1002128/UBild%20Plans.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-4-1004092-1002128-UBild%20Plans.aspx-141.html
143 http://www.woodcraft.com/category/4/1004092/2080716/WOOD%20Magazine%20Plans.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-4-1004092-2080716-WOOD%20Magazine%20Plans.aspx-142.html
143 http://www.woodcraft.com/category/4/1003081/1005293/Woodcraft%20Magazine%20Classic%20Project%20Plans.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-4-1003081-1005293-Woodcraft%20Magazine%20Classic%20Project%20Plans.aspx-143.html
143 http://www.woodcraft.com/brands/159/Norton.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/brands-159-Norton.aspx-216.html
143 http://www.woodcraft.com/category/4/1003081/2080621/Woodcraft%20Magazine%20Classic%20Shop%20Plans.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-4-1003081-2080621-Woodcraft%20Magazine%20Classic%20Shop%20Plans.aspx-144.html
143 http://www.woodcraft.com/category/3/1001047/1004092/Woodworking%20Plans.aspx?featured=new C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001047-1004092-Woodworking%20Plans.aspx-145.html
143 http://www.woodcraft.com/brands/170/pfeil%20Swiss%20made.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/brands-170-pfeil%20Swiss%20made.aspx-217.html
143 http://www.woodcraft.com/category/2/1010000/1001051/Project%20Supplies.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-2-1010000-1001051-Project%20Supplies.aspx-146.html
143 http://www.woodcraft.com/brands/2237/Pinnacle.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/brands-2237-Pinnacle.aspx-218.html
143 http://www.woodcraft.com/category/3/1001051/1002244/Caning%20Supplies.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001051-1002244-Caning%20Supplies.aspx-147.html
143 http://www.woodcraft.com/category/3/1001051/1001052/Clock%20Supplies.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001051-1001052-Clock%20Supplies.aspx-148.html
143 http://www.woodcraft.com/category/3/1001051/1004025/Custom%20Drawers.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001051-1004025-Custom%20Drawers.aspx-149.html
143 http://www.woodcraft.com/brands/173/Porter%20Cable.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/brands-173-Porter%20Cable.aspx-219.html
143 http://www.woodcraft.com/brands/2008/Powermatic.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/brands-2008-Powermatic.aspx-220.html
143 http://www.woodcraft.com/category/3/1001051/2083469/Cutting%20Board%20Blanks.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001051-2083469-Cutting%20Board%20Blanks.aspx-150.html
143 http://www.woodcraft.com/brands/189/Rikon.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/brands-189-Rikon.aspx-221.html
143 http://www.woodcraft.com/category/3/1001051/1001134/Dollhouse%20Supplies.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001051-1001134-Dollhouse%20Supplies.aspx-151.html
143 http://www.woodcraft.com/brands/213/Robert%20Sorby.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/brands-213-Robert%20Sorby.aspx-222.html
143 http://www.woodcraft.com/brands/2390/SawStop.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/brands-2390-SawStop.aspx-223.html
143 http://www.woodcraft.com/brands/2746/Tanos.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/brands-2746-Tanos.aspx-224.html
143 http://www.woodcraft.com/brands/226/Teknatool.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/brands-226-Teknatool.aspx-225.html
143 http://www.woodcraft.com/brands/224/Veritas.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/brands-224-Veritas.aspx-226.html
143 http://www.woodcraft.com/brands/253/Whiteside.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/brands-253-Whiteside.aspx-227.html
143 http://www.woodcraft.com/brands/2236/Woodpeckers.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/brands-2236-Woodpeckers.aspx-228.html
143 http://www.woodcraft.com/brands/2015/WoodRiver.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/brands-2015-WoodRiver.aspx-229.html
143 http://www.woodcraft.com/specials/onsale.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/specials-onsale.aspx-230.html
143 http://www.woodcraft.com/Product/2086605/46914/Porter-Cable-PCC601LB-20-volt-12-Inch-Lithium-Ion-DrillDriver-Kit.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/Product-2086605-46914-Porter-Cable-PCC601LB-20-volt-12-Inch-Lithium-Ion-DrillDriver-Kit.aspx-231.html
143 http://www.woodcraft.com/Product/2080272/30035/Vika-TwoFold-Workbench-and-Scaffold.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/Product-2080272-30035-Vika-TwoFold-Workbench-and-Scaffold.aspx-232.html
143 http://www.woodcraft.com/Product/2080327/28906/Rikon-10-Bench-Top-Bandsaw-Model-10-305.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/Product-2080327-28906-Rikon-10-Bench-Top-Bandsaw-Model-10-305.aspx-233.html
143 http://www.woodcraft.com/category/3/1001069/2080348/Gift%20Shop.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-3-1001069-2080348-Gift%20Shop.aspx-234.html
143 http://www.woodcraft.com/specials/clearance.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/specials-clearance.aspx-235.html
143 http://www.woodcraft.com/specials/wooddeals.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/specials-wooddeals.aspx-237.html
143 http://www.woodcraft.com/Resources/Rebates.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/Resources-Rebates.aspx-238.html
143 http://www.woodcraft.com/media/upcycling.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/media-upcycling.aspx-239.html
143 http://www.woodcraft.com/wishlist/wishlistsearch.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/wishlist-wishlistsearch.aspx-240.html
143 http://www.woodcraft.com/Resources/Education.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/Resources-Education.aspx-241.html
143 http://www.woodcraft.com/projectconfigurator/projectlanding.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/projectconfigurator-projectlanding.aspx-242.html
143 http://www.woodcraft.com/Product/2005485/22172/Nova-DVR-XP-Lathe.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/Product-2005485-22172-Nova-DVR-XP-Lathe.aspx-243.html
143 http://www.woodcraft.com/Product/2005331/29417/HTC-Adjustable-Mobile-Base-HTC-2000.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/Product-2005331-29417-HTC-Adjustable-Mobile-Base-HTC-2000.aspx-244.html
143 http://www.woodcraft.com/Product/2004403/25658/Porter-Cable-3-12-Gallon-Air-Compressor-and-2-Brad-Nailer-Package.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/Product-2004403-25658-Porter-Cable-3-12-Gallon-Air-Compressor-and-2-Brad-Nailer-Package.aspx-245.html
143 http://www.woodcraft.com/Product/2083551/36745/Small-Shop-Stool-with-Adjustable-Height.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/Product-2083551-36745-Small-Shop-Stool-with-Adjustable-Height.aspx-246.html
143 http://www.woodcraft.com/Product/2021277/39072/WoodRiver-16-3W-LED-Dual-Power-250-Lumen-Shop-Light-with-Focusing-Head.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/Product-2021277-39072-WoodRiver-16-3W-LED-Dual-Power-250-Lumen-Shop-Light-with-Focusing-Head.aspx-247.html
143 http://www.woodcraft.com/Product/2082584/33129/Freeman-Pinner-and-Brad-Nailer-Combo-Kit.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/Product-2082584-33129-Freeman-Pinner-and-Brad-Nailer-Combo-Kit.aspx-248.html
143 http://www.woodcraft.com/Product/2085883/42523/Groz-Parallel-Clamp-Set.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/Product-2085883-42523-Groz-Parallel-Clamp-Set.aspx-249.html
143 http://www.woodcraft.com/Static/CustomerService.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/Static-CustomerService.aspx-284.html
143 http://www.woodcraft.com/Product/2080751/29891/Trend-T4-11-HP-VS-Plunge-Router.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/Product-2080751-29891-Trend-T4-11-HP-VS-Plunge-Router.aspx-250.html
143 http://www.woodcraft.com/Static/AboutUS.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/Static-AboutUS.aspx-285.html
143 http://www.woodcraft.com/category/6/2082709/2080355/Cartridge%20Bullet%20Pen%20Kit.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-6-2082709-2080355-Cartridge%20Bullet%20Pen%20Kit.aspx-251.html
143 http://www.woodcraft.com/PressReleases/PressReleases.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/PressReleases-PressReleases.aspx-286.html
143 http://www.woodcraft.com/category/5/1001055/1001054/Router%20Bits.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-5-1001055-1001054-Router%20Bits.aspx-297.html
143 http://www.woodcraft.com/CustomerService/CustomerFeedback.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/CustomerService-CustomerFeedback.aspx-287.html
143 http://www.woodcraft.com/category/5/1001054/1005068/Architectural%20Bits.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-5-1001054-1005068-Architectural%20Bits.aspx-298.html
143 http://www.woodcraft.com/static/engraving.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/static-engraving.aspx-288.html
143 http://www.woodcraft.com/static/factoryauthorized.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/static-factoryauthorized.aspx-289.html
143 http://www.woodcraft.com/category/5/1001054/1002280/Bushings%20Bearings%20and%20Collets.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-5-1001054-1002280-Bushings%20Bearings%20and%20Collets.aspx-299.html
143 http://www.woodcraft.com/category/5/1001054/1001141/Cabinet%20Making%20Router%20Bits.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-5-1001054-1001141-Cabinet%20Making%20Router%20Bits.aspx-300.html
143 http://www.woodcraft.com/Checkout/QuickOrder.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/Checkout-QuickOrder.aspx-291.html
143 http://www.woodcraft.com/category/5/1001054/1004081/Joinery%20Router%20Bits.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-5-1001054-1004081-Joinery%20Router%20Bits.aspx-301.html
143 http://www.woodcraft.com/Static/Sitemap.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/Static-Sitemap.aspx-292.html
143 http://www.woodcraft.com/category/5/1001054/1001140/Router%20Bit%20Sets.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-5-1001054-1001140-Router%20Bit%20Sets.aspx-302.html
143 http://www.woodcraft.com/Product/2084194/37444/Fresh-Wood-Donation.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/Product-2084194-37444-Fresh-Wood-Donation.aspx-293.html
143 http://www.woodcraft.com/category/5/1001054/1001149/Straight%20Router%20Bits.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-5-1001054-1001149-Straight%20Router%20Bits.aspx-303.html
143 http://www.woodcraft.com/Static/PrivacyPolicy.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/Static-PrivacyPolicy.aspx-294.html
143 http://www.woodcraft.com/category/4/1001056/1002283/Pen%20Kits.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-4-1001056-1002283-Pen%20Kits.aspx-304.html
143 http://www.woodcraft.com/email/NewSubscriber.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/email-NewSubscriber.aspx-295.html
143 http://www.woodcraft.com/category/5/2083849/2081318/Wall%20Street%20II%20Pen%20Inlay%20Kits.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-5-2083849-2081318-Wall%20Street%20II%20Pen%20Inlay%20Kits.aspx-305.html
143 http://www.woodcraft.com/offers/irhot100.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/offers-irhot100.aspx-296.html
143 http://www.woodcraft.com/category/6/2082707/2021232/Stars%20and%20Stripes%20Flag%20Inlay%20Kits.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/category-6-2082707-2021232-Stars%20and%20Stripes%20Flag%20Inlay%20Kits.aspx-306.html
143 http://www.woodcraft.com/LoginForm.aspx?ReturnUrl=%2Fmyaccount%2FDefault.aspx C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\143-www.woodcraft.com/LoginForm.aspx-307.html
144 http://www.jmcgraphics.net/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/-1.html
144 http://www.jmcgraphics.net/w3c/p3p.xml C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/w3c-p3p.xml-2.html
144 http://www.jmcgraphics.net/account/contact C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/account-contact-3.html
144 http://www.jmcgraphics.net/products/tradingcards C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-tradingcards-52.html
144 http://www.jmcgraphics.net/products/businesscards C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-businesscards-5.html
144 http://www.jmcgraphics.net/products/vehicledecals C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-vehicledecals-53.html
144 http://www.jmcgraphics.net/products/vehiclemagnets C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-vehiclemagnets-54.html
144 http://www.jmcgraphics.net/products/vinyllabels C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-vinyllabels-55.html
144 http://www.jmcgraphics.net/products/whitecanvas C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-whitecanvas-56.html
144 http://www.jmcgraphics.net/products/windowcling C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-windowcling-57.html
144 http://www.jmcgraphics.net/products/windowperf C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-windowperf-58.html
144 http://www.jmcgraphics.net/products/x-frame-banner-no-stand C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-x-frame-banner-no-stand-59.html
144 http://www.jmcgraphics.net/products/yard-signs-stakes C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-yard-signs-stakes-60.html
144 http://www.jmcgraphics.net/products/brochures C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-brochures-6.html
144 http://www.jmcgraphics.net/products/monthly-special C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-monthly-special-61.html
144 http://www.jmcgraphics.net/mailing/brochures-mailing C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/mailing-brochures-mailing-62.html
144 http://www.jmcgraphics.net/products/businesscards-mini C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-businesscards-mini-63.html
144 http://www.jmcgraphics.net/products/business-cards-w-free-shipping C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-business-cards-w-free-shipping-64.html
144 http://www.jmcgraphics.net/products/foldoverbusinesscards C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-foldoverbusinesscards-65.html
144 http://www.jmcgraphics.net/products/tearcards C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-tearcards-66.html
144 http://www.jmcgraphics.net/products/brochures1color C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-brochures1color-67.html
144 http://www.jmcgraphics.net/products/businesscards1color C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-businesscards1color-68.html
144 http://www.jmcgraphics.net/products/letterhead1color C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-letterhead1color-69.html
144 http://www.jmcgraphics.net/products/notepads1color C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-notepads1color-70.html
144 http://www.jmcgraphics.net/products/postcards C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-postcards-7.html
144 http://www.jmcgraphics.net/products/vinylbanners C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-vinylbanners-8.html
144 http://www.jmcgraphics.net/mailing/postcards-mailing C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/mailing-postcards-mailing-9.html
144 http://www.jmcgraphics.net/products/signage C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-signage-11.html
144 http://www.jmcgraphics.net/products/yard-signs C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-yard-signs-12.html
144 http://www.jmcgraphics.net/products/trade-show-graphics C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-trade-show-graphics-13.html
144 http://www.jmcgraphics.net/products/x-frame-with-banner C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-x-frame-with-banner-14.html
144 http://www.jmcgraphics.net/products/letterhead C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-letterhead-15.html
144 http://www.jmcgraphics.net/products/envelopes4color C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-envelopes4color-16.html
144 http://www.jmcgraphics.net/products/labels C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-labels-17.html
144 http://www.jmcgraphics.net/products/notepads C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-notepads-18.html
144 http://www.jmcgraphics.net/designer-gallery C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/designer-gallery-19.html
144 http://www.jmcgraphics.net/products/postcards1color C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-postcards1color-71.html
144 http://www.jmcgraphics.net/products/greetingcards C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-greetingcards-20.html
144 http://www.jmcgraphics.net/products/rackcards C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-rackcards-21.html
144 http://www.jmcgraphics.net/products/smallflyers1color C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-smallflyers1color-72.html
144 http://www.jmcgraphics.net/products/bookmarks-digital C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-bookmarks-digital-73.html
144 http://www.jmcgraphics.net/products/brochures-digital C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-brochures-digital-74.html
144 http://www.jmcgraphics.net/products/businesscards-digital C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-businesscards-digital-75.html
144 http://www.jmcgraphics.net/products/calendars-digital C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-calendars-digital-76.html
144 http://www.jmcgraphics.net/products/catalogs-digital C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-catalogs-digital-77.html
144 http://www.jmcgraphics.net/products/cd-inlays-digital C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-cd-inlays-digital-78.html
144 http://www.jmcgraphics.net/products/bookmarks C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-bookmarks-22.html
144 http://www.jmcgraphics.net/products/cdinserts-digital C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-cdinserts-digital-79.html
144 http://www.jmcgraphics.net/products/clubflyers-digital C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-clubflyers-digital-80.html
144 http://www.jmcgraphics.net/products/dvdinserts-digital C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-dvdinserts-digital-81.html
144 http://www.jmcgraphics.net/products/envelopes-digital C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-envelopes-digital-82.html
144 http://www.jmcgraphics.net/products/greetingcards-digital C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-greetingcards-digital-83.html
144 http://www.jmcgraphics.net/products/folders C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-folders-23.html
144 http://www.jmcgraphics.net/products/hangtags-digital C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-hangtags-digital-84.html
144 http://www.jmcgraphics.net/products/magnets-digital C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-magnets-digital-24.html
144 http://www.jmcgraphics.net/products/labels-digital C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-labels-digital-85.html
144 http://www.jmcgraphics.net/products/tshirts-digital C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-tshirts-digital-25.html
144 http://www.jmcgraphics.net/products/letterhead-digital C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-letterhead-digital-86.html
144 http://www.jmcgraphics.net/products/bumperstickers-digital C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-bumperstickers-digital-26.html
144 http://www.jmcgraphics.net/products/postcards-digital C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-postcards-digital-87.html
144 http://www.jmcgraphics.net/products/plastic-digital C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-plastic-digital-27.html
144 http://www.jmcgraphics.net/products/posters-digital C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-posters-digital-88.html
144 http://www.jmcgraphics.net/products/rackcards-digital C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-rackcards-digital-89.html
144 http://www.jmcgraphics.net/mailing/brochures C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/mailing-brochures-30.html
144 http://www.jmcgraphics.net/products/smallflyers-digital C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-smallflyers-digital-90.html
144 http://www.jmcgraphics.net/products/tearcards-digital C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-tearcards-digital-91.html
144 http://www.jmcgraphics.net/products/brochures-free-folding C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-brochures-free-folding-31.html
144 http://www.jmcgraphics.net/products/tradingcards-digital C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-tradingcards-digital-92.html
144 http://www.jmcgraphics.net/company/aboutus C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/company-aboutus-93.html
144 http://www.jmcgraphics.net/products/calendars C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-calendars-32.html
144 http://www.jmcgraphics.net/services/upload C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/services-upload-94.html
144 http://www.jmcgraphics.net/green C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/green-95.html
144 http://www.jmcgraphics.net/eddm C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/eddm-96.html
144 http://www.jmcgraphics.net/offset-vs-digital C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/offset-vs-digital-97.html
144 http://www.jmcgraphics.net/company/privacy C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/company-privacy-98.html
144 http://www.jmcgraphics.net/company/terms C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/company-terms-99.html
144 http://www.jmcgraphics.net/pages/helpcenter C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/pages-helpcenter-100.html
144 http://www.jmcgraphics.net/products/catalogs C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-catalogs-33.html
144 http://www.jmcgraphics.net/products/cdinlays C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-cdinlays-34.html
144 http://www.jmcgraphics.net/products/cdinserts C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-cdinserts-35.html
144 http://www.jmcgraphics.net/products/clubflyers C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-clubflyers-36.html
144 http://www.jmcgraphics.net/products/digitalposters C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-digitalposters-37.html
144 http://www.jmcgraphics.net/products/doorhangers C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-doorhangers-38.html
144 http://www.jmcgraphics.net/products/dvdinserts C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-dvdinserts-39.html
144 http://www.jmcgraphics.net/products/dvdcdmailers C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-dvdcdmailers-40.html
144 http://www.jmcgraphics.net/products/envelopes1color C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-envelopes1color-41.html
144 http://www.jmcgraphics.net/products/hangtags C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-hangtags-42.html
144 http://www.jmcgraphics.net/products/ncrforms C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-ncrforms-43.html
144 http://www.jmcgraphics.net/products/pop-displays C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-pop-displays-44.html
144 http://www.jmcgraphics.net/mailing/postcards C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/mailing-postcards-45.html
144 http://www.jmcgraphics.net/products/posters C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-posters-46.html
144 http://www.jmcgraphics.net/products/retractable-banner-no-display C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-retractable-banner-no-display-47.html
144 http://www.jmcgraphics.net/products/retractable-display-with-banner C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-retractable-display-with-banner-48.html
144 http://www.jmcgraphics.net/products/rolllabels C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-rolllabels-49.html
144 http://www.jmcgraphics.net/products/smallflyers C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-smallflyers-50.html
144 http://www.jmcgraphics.net/products/spider-feet-stand-only C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\144-www.jmcgraphics.net/products-spider-feet-stand-only-51.html
147 http://laundromax.com/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\147-Laundromax.com/-1.html
148 http://www.mcdonalds.com/us/en/home.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-home.html-2.html
148 http://www.mcdonalds.com/us/en/food.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-food.html-3.html
148 http://www.mcdonalds.com/us/en/subscription.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-subscription.html-53.html
148 http://www.mcdonalds.com/us/en/food/full_menu/sandwiches.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-food-full_menu-sandwiches.html-5.html
148 http://www.mcdonalds.com/us/en/full_menu_explorer.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-full_menu_explorer.html-54.html
148 http://www.mcdonalds.com/us/en/food/full_menu/chicken.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-food-full_menu-chicken.html-6.html
148 http://www.mcdonalds.com/us/en/food/full_menu/breakfast.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-food-full_menu-breakfast.html-7.html
148 http://www.mcdonalds.com/us/en/food/full_menu/salads.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-food-full_menu-salads.html-8.html
148 http://www.mcdonalds.com/us/en/food/full_menu/snacks_and_sides.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-food-full_menu-snacks_and_sides.html-9.html
148 http://www.mcdonalds.com/us/en/food/full_menu/beverages.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-food-full_menu-beverages.html-10.html
148 http://www.mcdonalds.com/us/en/food/full_menu/mc_cafe.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-food-full_menu-mc_cafe.html-11.html
148 http://www.mcdonalds.com/us/en/food/full_menu/desserts_and_shakes.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-food-full_menu-desserts_and_shakes.html-12.html
148 http://www.mcdonalds.com/us/en/food/meal_bundles/favoritesunder400.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-food-meal_bundles-favoritesunder400.html-13.html
148 http://www.mcdonalds.com/us/en/food/meal_bundles/dollar_menu.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-food-meal_bundles-dollar_menu.html-14.html
148 http://www.mcdonalds.com/us/en/food/meal_bundles/extra_value_meals.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-food-meal_bundles-extra_value_meals.html-15.html
148 http://www.mcdonalds.com/us/en/food/meal_bundles/happy_meals.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-food-meal_bundles-happy_meals.html-16.html
148 http://www.mcdonalds.com/us/en/food/meal_bundles/mighty_kids_meals.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-food-meal_bundles-mighty_kids_meals.html-17.html
148 http://www.mcdonalds.com/us/en/food/food_quality/nutrition_choices.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-food-food_quality-nutrition_choices.html-18.html
148 http://www.mcdonalds.com/us/en/food/food_quality/see_what_we_are_made_of.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-food-food_quality-see_what_we_are_made_of.html-19.html
148 http://www.mcdonalds.com/us/en/food/food_quality/trends_innovation.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-food-food_quality-trends_innovation.html-20.html
148 http://www.mcdonalds.com/us/en/food/food_quality/your_questions_answered.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-food-food_quality-your_questions_answered.html-21.html
148 http://www.mcdonalds.com/us/en/promotions.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-promotions.html-22.html
148 http://www.mcdonalds.com/us/en/promotions/worldcup.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-promotions-worldcup.html-23.html
148 http://www.mcdonalds.com/us/en/promotions/icedcoffee.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-promotions-icedcoffee.html-24.html
148 http://www.mcdonalds.com/us/en/our_story.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-our_story.html-26.html
148 http://www.mcdonalds.com/us/en/our_story/our_history.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-our_story-our_history.html-27.html
148 http://www.mcdonalds.com/us/en/our_story/leadership.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-our_story-leadership.html-28.html
148 http://www.mcdonalds.com/us/en/our_story/our_communities.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-our_story-our_communities.html-29.html
148 http://www.mcdonalds.com/us/en/our_story/values_in_action.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-our_story-values_in_action.html-30.html
148 http://www.mcdonalds.com/us/en/our_story/Corporate_Info.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-our_story-Corporate_Info.html-31.html
148 http://www.mcdonalds.com/us/en/our_story/news.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-our_story-news.html-32.html
148 http://www.mcdonalds.com/us/en/careers.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-careers.html-33.html
148 http://www.mcdonalds.com/us/en/careers/working_here.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-careers-working_here.html-34.html
148 http://www.mcdonalds.com/us/en/careers/training_education.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-careers-training_education.html-35.html
148 http://www.mcdonalds.com/us/en/careers/benefits.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-careers-benefits.html-36.html
148 http://www.mcdonalds.com/us/en/careers/our_people.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-careers-our_people.html-37.html
148 http://www.mcdonalds.com/us/en/careers/veterans.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-careers-veterans.html-38.html
148 http://www.mcdonalds.com/us/en/restaurant_locator.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-restaurant_locator.html-39.html
148 http://www.mcdonalds.com/us/en/search.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-search.html-40.html
148 http://www.mcdonalds.com/us/en/contact_us.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-contact_us.html-41.html
148 http://www.mcdonalds.com/us/en/services.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-services.html-42.html
148 http://www.mcdonalds.com/us/en/services/arch_card.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-services-arch_card.html-43.html
148 http://www.mcdonalds.com/us/en/services/free_wifi.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-services-free_wifi.html-44.html
148 http://www.mcdonalds.com/us/en/services/playplaces_parties.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-services-playplaces_parties.html-45.html
148 http://www.mcdonalds.com/us/en/websites.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-websites.html-46.html
148 http://www.mcdonalds.com/us/en/landingpagetest.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-landingpagetest.html-47.html
148 http://www.mcdonalds.com/us/en/home.emailform.html?currentPagePath=%2Fcontent%2Fus%2Fen%2Fhome¤tPageTitle=Home¤tPageUrl=http%3A%2F%2Fwww.mcdonalds.com%2Fus%2Fen%2Fhome.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-home.emailform.html-48.html
148 http://www.mcdonalds.com/us/en/meal_builder.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-meal_builder.html-49.html
148 http://www.mcdonalds.com/us/en/our_story/our_communities/rmhc.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-our_story-our_communities-rmhc.html-50.html
148 http://www.mcdonalds.com/us/en/privacy.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-privacy.html-51.html
148 http://www.mcdonalds.com/us/en/terms_conditions.html C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\148-www.mcdonalds.com/us-en-terms_conditions.html-52.html
149 http://www.friendlys.com/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/-1.html
149 http://www.friendlys.com/about-friendlys/refreshed-locations C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/about-friendlys-refreshed-locations-52.html
149 http://www.friendlys.com/about-friendlys/fun-facts-about-friendlys C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/about-friendlys-fun-facts-about-friendlys-53.html
149 http://www.friendlys.com/_sites/friendlys/includes/css/styles.min.css?cb=1399495291289 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/_sites-friendlys-includes-css-styles.min.css-3.html
149 http://www.friendlys.com/about-friendlys/join-bff C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/about-friendlys-join-bff-54.html
149 http://www.friendlys.com/about-friendlys/nutrition C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/about-friendlys-nutrition-55.html
149 http://www.friendlys.com/menu/breakfast C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/menu-breakfast-6.html
149 http://www.friendlys.com/about-friendlys/franchising C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/about-friendlys-franchising-56.html
149 http://www.friendlys.com/menu/breakfast/classics C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/menu-breakfast-classics-7.html
149 http://www.friendlys.com/about-friendlys/real-estate C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/about-friendlys-real-estate-57.html
149 http://www.friendlys.com/about-friendlys/contact-us C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/about-friendlys-contact-us-58.html
149 http://www.friendlys.com/about-friendlys/careers C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/about-friendlys-careers-59.html
149 http://www.friendlys.com/menu/breakfast/egg-specialties C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/menu-breakfast-egg-specialties-8.html
149 http://www.friendlys.com/about-friendlys/friendlier-than-ever C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/about-friendlys-friendlier-than-ever-62.html
149 http://www.friendlys.com/menu/breakfast/healthier-options C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/menu-breakfast-healthier-options-9.html
149 http://www.friendlys.com/about-friendlys/lp/2014-c2/red-velvet C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/about-friendlys-lp-2014-c2-red-velvet-63.html
149 http://www.friendlys.com/menu/breakfast/omelettes C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/menu-breakfast-omelettes-10.html
149 http://www.friendlys.com/offers C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/offers-64.html
149 http://www.friendlys.com/menu/breakfast/scramblers C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/menu-breakfast-scramblers-11.html
149 http://www.friendlys.com/menu/dessert/sundaes C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/menu-dessert-sundaes-65.html
149 http://www.friendlys.com/menu/breakfast/supermelts C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/menu-breakfast-supermelts-12.html
149 http://www.friendlys.com/menu/breakfast/sides C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/menu-breakfast-sides-13.html
149 http://www.friendlys.com/menu/lunch-dinner C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/menu-lunch-dinner-14.html
149 http://www.friendlys.com/menu/lunch-dinner/big-beef-burgers C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/menu-lunch-dinner-big-beef-burgers-15.html
149 http://www.friendlys.com/menu/lunch-dinner/create-your-own-burger C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/menu-lunch-dinner-create-your-own-burger-16.html
149 http://www.friendlys.com/menu/lunch-dinner/supermelt-sandwiches C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/menu-lunch-dinner-supermelt-sandwiches-17.html
149 http://www.friendlys.com/menu/lunch-dinner/sandwiches C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/menu-lunch-dinner-sandwiches-18.html
149 http://www.friendlys.com/menu/lunch-dinner/entrees C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/menu-lunch-dinner-entrees-19.html
149 http://www.friendlys.com/menu/lunch-dinner/munchies C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/menu-lunch-dinner-munchies-20.html
149 http://www.friendlys.com/menu/lunch-dinner/salads C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/menu-lunch-dinner-salads-21.html
149 http://www.friendlys.com/menu/lunch-dinner/soups C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/menu-lunch-dinner-soups-22.html
149 http://www.friendlys.com/menu/lunch-dinner/sides C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/menu-lunch-dinner-sides-23.html
149 http://www.friendlys.com/menu/kids-menu C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/menu-kids-menu-25.html
149 http://www.friendlys.com/webresource.axd?d=gFj_gJp6viMmPbi9KBg6MitkXfYgBH_2Z-yLrswFBgpZ7QbsTkTZo-JWg_KsFxKVoqnc3PPkXfDY6vogVlJje4nSjFBXmuQjFIPjH7y9PmYS7SVbQ4G_VAAzyyf7mgFkI-ELlLPR4Gncj2xFITYesA2&t=635238422054596215 C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/webresource.axd-80.html
149 http://www.friendlys.com/menu/kids-menu/breakfast C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/menu-kids-menu-breakfast-26.html
149 http://www.friendlys.com/about-friendlys/privacy C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/about-friendlys-privacy-81.html
149 http://www.friendlys.com/menu/kids-menu/lil-scoop C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/menu-kids-menu-lil-scoop-27.html
149 http://www.friendlys.com/about-friendlys/legal C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/about-friendlys-legal-82.html
149 http://www.friendlys.com/menu/kids-menu/big-scoop C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/menu-kids-menu-big-scoop-28.html
149 http://www.friendlys.com/about-friendlys/marketing-policy C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/about-friendlys-marketing-policy-83.html
149 http://www.friendlys.com/menu/kids-menu/kids-desserts C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/menu-kids-menu-kids-desserts-29.html
149 http://www.friendlys.com/menu/dessert C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/menu-dessert-30.html
149 http://www.friendlys.com/menu/under-565-calories/under-565-calories C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/menu-under-565-calories-under-565-calories-85.html
149 http://www.friendlys.com/packaged-ice-cream C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/packaged-ice-cream-31.html
149 http://www.friendlys.com/packaged-ice-cream/ice-cream-cartons C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/packaged-ice-cream-ice-cream-cartons-32.html
149 http://www.friendlys.com/packaged-ice-cream/ice-cream-cartons/rich-and-creamy-ice-cream C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/packaged-ice-cream-ice-cream-cartons-rich-and-creamy-ice-cream-33.html
149 http://www.friendlys.com/packaged-ice-cream/ice-cream-cartons/frozen-yogurt C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/packaged-ice-cream-ice-cream-cartons-frozen-yogurt-34.html
149 http://www.friendlys.com/packaged-ice-cream/ice-cream-cartons/fruit-swirls C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/packaged-ice-cream-ice-cream-cartons-fruit-swirls-35.html
149 http://www.friendlys.com/packaged-ice-cream/ice-cream-cartons/limited-edition C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/packaged-ice-cream-ice-cream-cartons-limited-edition-36.html
149 http://www.friendlys.com/packaged-ice-cream/ice-cream-cartons/seasonal-flavors C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/packaged-ice-cream-ice-cream-cartons-seasonal-flavors-37.html
149 http://www.friendlys.com/packaged-ice-cream/ice-cream-cartons/sherbet C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/packaged-ice-cream-ice-cream-cartons-sherbet-38.html
149 http://www.friendlys.com/packaged-ice-cream/ice-cream-cartons/smooth-churned-ice-cream C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/packaged-ice-cream-ice-cream-cartons-smooth-churned-ice-cream-39.html
149 http://www.friendlys.com/packaged-ice-cream/ice-cream-cartons/sundae-xtreme C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/packaged-ice-cream-ice-cream-cartons-sundae-xtreme-40.html
149 http://www.friendlys.com/packaged-ice-cream/ice-cream-rolls C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/packaged-ice-cream-ice-cream-rolls-41.html
149 http://www.friendlys.com/packaged-ice-cream/ice-cream-cakes C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/packaged-ice-cream-ice-cream-cakes-42.html
149 http://www.friendlys.com/packaged-ice-cream/sundae-cups C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/packaged-ice-cream-sundae-cups-43.html
149 http://www.friendlys.com/packaged-ice-cream/bars-cones-and-sandwiches C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/packaged-ice-cream-bars-cones-and-sandwiches-44.html
149 http://www.friendlys.com/about-friendlys/gift-cards C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/about-friendlys-gift-cards-45.html
149 http://www.friendlys.com/locations C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/locations-46.html
149 http://www.friendlys.com/about-friendlys/mission-vision-values C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/about-friendlys-mission-vision-values-47.html
149 http://www.friendlys.com/about-friendlys/about-us C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/about-friendlys-about-us-48.html
149 http://www.friendlys.com/about-friendlys/press-room C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/about-friendlys-press-room-49.html
149 http://www.friendlys.com/about-friendlys/funraising C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/about-friendlys-funraising-50.html
149 http://www.friendlys.com/about-friendlys/easter-seals-camp-friendlys C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\149-www.friendlys.com/about-friendlys-easter-seals-camp-friendlys-51.html
150 http://www.bertellisskateshop.com/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\150-www.bertellisskateshop.com/-1.html
150 http://www.bertellisskateshop.com/joinourmailinglist/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\150-www.bertellisskateshop.com/joinourmailinglist--2.html
150 http://www.bertellisskateshop.com/aboutus/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\150-www.bertellisskateshop.com/aboutus--3.html
150 http://www.bertellisskateshop.com/contactus/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\150-www.bertellisskateshop.com/contactus--4.html
150 http://www.bertellisskateshop.com/login.htm C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\150-www.bertellisskateshop.com/login.htm-55.html
150 http://www.bertellisskateshop.com/clearance/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\150-www.bertellisskateshop.com/clearance--5.html
150 http://www.bertellisskateshop.com/prostock/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\150-www.bertellisskateshop.com/prostock--6.html
150 http://www.bertellisskateshop.com/skates/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\150-www.bertellisskateshop.com/skates--7.html
150 http://www.bertellisskateshop.com/skates/bauerhockeyskates/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\150-www.bertellisskateshop.com/skates-bauerhockeyskates--8.html
150 http://www.bertellisskateshop.com/skates/ccmhockeyskates/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\150-www.bertellisskateshop.com/skates-ccmhockeyskates--9.html
150 http://www.bertellisskateshop.com/skates/eastonhockeyskates/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\150-www.bertellisskateshop.com/skates-eastonhockeyskates--10.html
150 http://www.bertellisskateshop.com/skates/reebokhockeyskates/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\150-www.bertellisskateshop.com/skates-reebokhockeyskates--11.html
150 http://www.bertellisskateshop.com/skates/skatesharpening/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\150-www.bertellisskateshop.com/skates-skatesharpening--12.html
150 http://www.bertellisskateshop.com/sticks/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\150-www.bertellisskateshop.com/sticks--13.html
150 http://www.bertellisskateshop.com/sticks/bauerhockeysticks/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\150-www.bertellisskateshop.com/sticks-bauerhockeysticks--14.html
150 http://www.bertellisskateshop.com/sticks/ccmhockeysticks/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\150-www.bertellisskateshop.com/sticks-ccmhockeysticks--15.html
150 http://www.bertellisskateshop.com/sticks/eastonhockeysticks/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\150-www.bertellisskateshop.com/sticks-eastonhockeysticks--16.html
150 http://www.bertellisskateshop.com/sticks/reeboksticks/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\150-www.bertellisskateshop.com/sticks-reeboksticks--17.html
150 http://www.bertellisskateshop.com/helmetcages/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\150-www.bertellisskateshop.com/helmetcages--18.html
150 http://www.bertellisskateshop.com/helmetcages/bauer/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\150-www.bertellisskateshop.com/helmetcages-bauer--19.html
150 http://www.bertellisskateshop.com/helmetcages/cascade/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\150-www.bertellisskateshop.com/helmetcages-cascade--20.html
150 http://www.bertellisskateshop.com/helmetcages/ccm/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\150-www.bertellisskateshop.com/helmetcages-ccm--21.html
150 http://www.bertellisskateshop.com/helmetcages/easton/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\150-www.bertellisskateshop.com/helmetcages-easton--22.html
150 http://www.bertellisskateshop.com/helmetcages/mission/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\150-www.bertellisskateshop.com/helmetcages-mission--23.html
150 http://www.bertellisskateshop.com/helmetcages/reebok/ C:\Users\Aale\Dropbox\Development\Java-ws\SMOPs\crawl\150-www.bertellisskateshop.com/helmetcages-reebok--24.html