-
Notifications
You must be signed in to change notification settings - Fork 1
/
ping1000.txt
990 lines (989 loc) · 84.8 KB
/
ping1000.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
PING uw.edu (128.95.155.134) 56(84) bytes of data.
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=1 ttl=47 time=405 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=2 ttl=47 time=429 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=3 ttl=47 time=452 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=4 ttl=47 time=373 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=5 ttl=47 time=397 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=6 ttl=47 time=420 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=7 ttl=47 time=444 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=8 ttl=47 time=366 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=9 ttl=47 time=388 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=10 ttl=47 time=411 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=11 ttl=47 time=436 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=12 ttl=47 time=358 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=13 ttl=47 time=383 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=14 ttl=47 time=409 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=15 ttl=47 time=427 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=16 ttl=47 time=354 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=17 ttl=47 time=372 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=18 ttl=47 time=398 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=19 ttl=47 time=420 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=20 ttl=47 time=445 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=21 ttl=47 time=365 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=22 ttl=47 time=390 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=23 ttl=47 time=419 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=24 ttl=47 time=549 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=25 ttl=47 time=357 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=26 ttl=47 time=380 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=27 ttl=47 time=404 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=28 ttl=47 time=434 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=29 ttl=47 time=457 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=30 ttl=47 time=374 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=31 ttl=47 time=243 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=32 ttl=47 time=421 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=33 ttl=47 time=445 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=34 ttl=47 time=365 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=35 ttl=47 time=391 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=36 ttl=47 time=414 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=37 ttl=47 time=440 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=38 ttl=47 time=361 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=39 ttl=47 time=254 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=40 ttl=47 time=405 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=41 ttl=47 time=265 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=42 ttl=47 time=461 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=43 ttl=47 time=878 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=44 ttl=47 time=464 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=45 ttl=47 time=591 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=47 ttl=47 time=369 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=48 ttl=47 time=390 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=49 ttl=47 time=414 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=50 ttl=47 time=438 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=51 ttl=47 time=358 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=52 ttl=47 time=382 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=53 ttl=47 time=405 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=54 ttl=47 time=430 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=55 ttl=47 time=351 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=56 ttl=47 time=377 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=57 ttl=47 time=402 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=58 ttl=47 time=422 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=59 ttl=47 time=446 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=60 ttl=47 time=412 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=71 ttl=47 time=455 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=72 ttl=47 time=367 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=73 ttl=47 time=405 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=74 ttl=47 time=416 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=75 ttl=47 time=439 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=76 ttl=47 time=360 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=77 ttl=47 time=384 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=78 ttl=45 time=522 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=79 ttl=47 time=408 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=80 ttl=47 time=353 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=81 ttl=47 time=377 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=82 ttl=47 time=400 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=83 ttl=47 time=320 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=84 ttl=47 time=447 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=85 ttl=47 time=368 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=86 ttl=47 time=392 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=87 ttl=47 time=416 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=88 ttl=47 time=441 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=89 ttl=47 time=361 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=90 ttl=47 time=385 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=91 ttl=47 time=409 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=92 ttl=47 time=432 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=93 ttl=47 time=456 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=94 ttl=47 time=379 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=95 ttl=47 time=403 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=96 ttl=47 time=427 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=97 ttl=47 time=551 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=98 ttl=47 time=384 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=99 ttl=47 time=702 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=100 ttl=47 time=432 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=101 ttl=47 time=765 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=102 ttl=47 time=481 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=103 ttl=45 time=392 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=104 ttl=47 time=513 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=105 ttl=47 time=448 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=106 ttl=47 time=663 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=107 ttl=47 time=378 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=108 ttl=47 time=812 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=109 ttl=47 time=528 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=110 ttl=47 time=962 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=111 ttl=47 time=680 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=112 ttl=47 time=396 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=113 ttl=47 time=726 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=114 ttl=47 time=443 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=115 ttl=47 time=380 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=116 ttl=47 time=593 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=117 ttl=47 time=412 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=118 ttl=47 time=742 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=119 ttl=47 time=461 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=120 ttl=47 time=389 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=121 ttl=47 time=611 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=122 ttl=47 time=328 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=123 ttl=47 time=588 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=124 ttl=47 time=477 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=125 ttl=47 time=404 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=126 ttl=47 time=626 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=127 ttl=47 time=447 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=128 ttl=47 time=326 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=129 ttl=47 time=492 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=130 ttl=47 time=429 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=131 ttl=47 time=644 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=132 ttl=47 time=360 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=133 ttl=47 time=793 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=134 ttl=47 time=511 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=135 ttl=47 time=441 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=136 ttl=47 time=245 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=137 ttl=47 time=478 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=138 ttl=47 time=913 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=139 ttl=45 time=526 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=140 ttl=47 time=462 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=141 ttl=47 time=677 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=142 ttl=47 time=394 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=143 ttl=47 time=323 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=144 ttl=47 time=543 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=145 ttl=47 time=376 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=146 ttl=47 time=693 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=147 ttl=47 time=409 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=148 ttl=47 time=739 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=149 ttl=47 time=458 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=150 ttl=47 time=384 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=151 ttl=47 time=607 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=152 ttl=47 time=535 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=153 ttl=47 time=635 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=154 ttl=47 time=372 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=155 ttl=47 time=804 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=156 ttl=47 time=522 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=157 ttl=47 time=448 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=158 ttl=47 time=672 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=159 ttl=47 time=388 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=160 ttl=47 time=821 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=161 ttl=47 time=537 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=162 ttl=47 time=357 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=163 ttl=47 time=689 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=164 ttl=47 time=405 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=165 ttl=47 time=736 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=166 ttl=47 time=452 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=167 ttl=47 time=389 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=168 ttl=47 time=602 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=169 ttl=47 time=422 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=170 ttl=47 time=752 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=171 ttl=47 time=471 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=172 ttl=47 time=402 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=173 ttl=47 time=481 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=174 ttl=47 time=438 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=175 ttl=45 time=768 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=176 ttl=47 time=486 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=177 ttl=47 time=413 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=178 ttl=47 time=635 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=179 ttl=47 time=250 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=180 ttl=47 time=784 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=181 ttl=47 time=501 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=182 ttl=47 time=430 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=183 ttl=47 time=353 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=184 ttl=47 time=367 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=185 ttl=47 time=365 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=186 ttl=47 time=250 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=187 ttl=47 time=233 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=188 ttl=47 time=416 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=189 ttl=47 time=381 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=190 ttl=47 time=411 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=191 ttl=47 time=635 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=192 ttl=47 time=352 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=193 ttl=47 time=380 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=194 ttl=47 time=399 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=195 ttl=47 time=423 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=196 ttl=47 time=446 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=197 ttl=47 time=368 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=198 ttl=47 time=391 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=199 ttl=47 time=415 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=200 ttl=47 time=438 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=201 ttl=47 time=359 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=202 ttl=47 time=384 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=203 ttl=47 time=407 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=204 ttl=47 time=431 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=205 ttl=47 time=353 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=206 ttl=47 time=376 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=207 ttl=47 time=399 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=208 ttl=47 time=423 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=209 ttl=47 time=345 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=210 ttl=47 time=369 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=211 ttl=47 time=393 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=212 ttl=47 time=417 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=213 ttl=47 time=338 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=214 ttl=47 time=361 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=215 ttl=47 time=384 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=216 ttl=47 time=408 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=217 ttl=47 time=432 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=218 ttl=47 time=353 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=219 ttl=47 time=376 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=220 ttl=47 time=400 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=221 ttl=45 time=423 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=222 ttl=47 time=346 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=223 ttl=47 time=367 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=224 ttl=47 time=392 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=225 ttl=47 time=421 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=226 ttl=47 time=447 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=227 ttl=47 time=368 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=228 ttl=47 time=394 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=229 ttl=47 time=415 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=230 ttl=47 time=434 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=231 ttl=47 time=355 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=232 ttl=47 time=376 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=233 ttl=47 time=401 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=234 ttl=47 time=425 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=235 ttl=47 time=447 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=236 ttl=47 time=370 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=237 ttl=47 time=393 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=238 ttl=47 time=415 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=239 ttl=47 time=439 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=240 ttl=47 time=362 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=241 ttl=47 time=385 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=242 ttl=47 time=408 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=243 ttl=47 time=432 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=244 ttl=47 time=355 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=245 ttl=47 time=378 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=246 ttl=47 time=400 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=247 ttl=47 time=424 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=248 ttl=47 time=348 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=249 ttl=47 time=369 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=250 ttl=45 time=392 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=251 ttl=47 time=415 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=252 ttl=47 time=440 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=253 ttl=47 time=361 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=254 ttl=47 time=384 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=255 ttl=47 time=408 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=256 ttl=47 time=433 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=257 ttl=47 time=352 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=258 ttl=47 time=377 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=259 ttl=47 time=400 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=260 ttl=47 time=425 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=261 ttl=47 time=447 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=262 ttl=47 time=369 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=263 ttl=47 time=392 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=264 ttl=47 time=313 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=265 ttl=47 time=424 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=266 ttl=47 time=361 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=267 ttl=45 time=384 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=268 ttl=47 time=407 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=269 ttl=47 time=432 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=270 ttl=47 time=455 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=271 ttl=47 time=375 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=272 ttl=47 time=401 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=273 ttl=47 time=424 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=274 ttl=47 time=346 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=275 ttl=47 time=369 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=276 ttl=47 time=393 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=277 ttl=47 time=417 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=278 ttl=47 time=440 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=279 ttl=47 time=362 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=280 ttl=47 time=384 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=281 ttl=47 time=409 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=282 ttl=47 time=433 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=283 ttl=47 time=353 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=284 ttl=47 time=377 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=285 ttl=47 time=401 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=286 ttl=47 time=426 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=287 ttl=47 time=346 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=288 ttl=47 time=370 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=289 ttl=47 time=394 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=290 ttl=47 time=417 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=291 ttl=47 time=441 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=292 ttl=47 time=362 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=293 ttl=47 time=386 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=294 ttl=47 time=409 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=295 ttl=47 time=433 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=296 ttl=47 time=355 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=297 ttl=47 time=278 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=298 ttl=47 time=407 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=299 ttl=47 time=428 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=300 ttl=45 time=452 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=301 ttl=47 time=374 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=302 ttl=47 time=397 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=303 ttl=47 time=421 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=304 ttl=47 time=444 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=305 ttl=47 time=326 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=306 ttl=47 time=365 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=307 ttl=47 time=405 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=308 ttl=47 time=329 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=309 ttl=47 time=358 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=310 ttl=47 time=382 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=311 ttl=47 time=405 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=312 ttl=47 time=429 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=313 ttl=47 time=355 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=314 ttl=47 time=376 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=315 ttl=47 time=398 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=316 ttl=47 time=423 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=317 ttl=47 time=447 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=318 ttl=47 time=368 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=319 ttl=47 time=391 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=320 ttl=47 time=417 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=321 ttl=47 time=338 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=322 ttl=47 time=362 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=323 ttl=47 time=384 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=324 ttl=47 time=409 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=325 ttl=47 time=431 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=326 ttl=47 time=354 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=327 ttl=47 time=377 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=328 ttl=47 time=404 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=329 ttl=47 time=425 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=330 ttl=47 time=347 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=331 ttl=47 time=369 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=332 ttl=47 time=394 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=333 ttl=47 time=419 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=334 ttl=47 time=442 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=335 ttl=47 time=363 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=336 ttl=47 time=385 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=337 ttl=47 time=407 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=338 ttl=47 time=431 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=339 ttl=45 time=452 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=340 ttl=47 time=373 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=341 ttl=47 time=395 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=342 ttl=47 time=418 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=343 ttl=47 time=442 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=344 ttl=47 time=362 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=345 ttl=47 time=386 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=346 ttl=47 time=406 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=347 ttl=47 time=429 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=348 ttl=47 time=349 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=349 ttl=47 time=370 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=350 ttl=47 time=394 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=351 ttl=47 time=415 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=352 ttl=47 time=438 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=353 ttl=47 time=358 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=354 ttl=45 time=382 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=355 ttl=47 time=403 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=356 ttl=47 time=427 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=357 ttl=47 time=346 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=358 ttl=47 time=370 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=359 ttl=47 time=391 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=360 ttl=47 time=413 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=361 ttl=47 time=438 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=362 ttl=47 time=264 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=363 ttl=47 time=380 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=364 ttl=47 time=306 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=365 ttl=47 time=425 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=366 ttl=47 time=448 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=367 ttl=47 time=368 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=368 ttl=47 time=390 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=369 ttl=47 time=413 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=370 ttl=47 time=436 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=371 ttl=47 time=356 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=372 ttl=47 time=378 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=373 ttl=47 time=401 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=374 ttl=47 time=423 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=375 ttl=47 time=447 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=376 ttl=47 time=350 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=377 ttl=47 time=494 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=378 ttl=47 time=413 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=379 ttl=47 time=436 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=380 ttl=47 time=356 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=381 ttl=47 time=379 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=382 ttl=47 time=402 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=383 ttl=47 time=425 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=384 ttl=47 time=345 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=385 ttl=47 time=368 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=386 ttl=47 time=390 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=387 ttl=47 time=414 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=388 ttl=47 time=436 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=389 ttl=47 time=356 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=390 ttl=47 time=379 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=391 ttl=47 time=400 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=392 ttl=47 time=424 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=393 ttl=47 time=445 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=394 ttl=47 time=366 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=395 ttl=47 time=388 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=396 ttl=47 time=412 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=397 ttl=47 time=434 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=398 ttl=47 time=354 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=399 ttl=47 time=377 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=400 ttl=47 time=400 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=401 ttl=47 time=422 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=402 ttl=47 time=444 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=403 ttl=47 time=366 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=404 ttl=47 time=387 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=405 ttl=47 time=410 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=406 ttl=47 time=331 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=407 ttl=47 time=353 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=408 ttl=47 time=376 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=409 ttl=47 time=397 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=410 ttl=47 time=420 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=411 ttl=47 time=442 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=412 ttl=47 time=362 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=413 ttl=45 time=385 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=414 ttl=47 time=407 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=415 ttl=47 time=430 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=416 ttl=47 time=351 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=417 ttl=47 time=373 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=418 ttl=47 time=394 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=419 ttl=45 time=417 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=420 ttl=47 time=439 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=421 ttl=47 time=360 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=422 ttl=47 time=382 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=423 ttl=47 time=406 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=424 ttl=47 time=427 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=426 ttl=47 time=2536 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=427 ttl=47 time=1536 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=428 ttl=47 time=538 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=429 ttl=45 time=443 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=430 ttl=47 time=362 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=431 ttl=47 time=386 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=432 ttl=47 time=407 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=433 ttl=47 time=431 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=434 ttl=47 time=351 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=435 ttl=47 time=374 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=436 ttl=47 time=294 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=437 ttl=47 time=420 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=438 ttl=47 time=340 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=439 ttl=47 time=465 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=440 ttl=47 time=385 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=441 ttl=47 time=408 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=442 ttl=47 time=431 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=443 ttl=47 time=353 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=444 ttl=47 time=375 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=445 ttl=47 time=397 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=446 ttl=47 time=421 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=447 ttl=47 time=443 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=448 ttl=47 time=364 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=449 ttl=47 time=328 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=450 ttl=47 time=407 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=451 ttl=47 time=329 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=452 ttl=47 time=350 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=453 ttl=47 time=373 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=454 ttl=47 time=397 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=455 ttl=47 time=419 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=456 ttl=47 time=441 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=457 ttl=47 time=362 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=458 ttl=47 time=384 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=459 ttl=47 time=409 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=460 ttl=45 time=431 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=461 ttl=47 time=350 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=462 ttl=47 time=373 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=463 ttl=47 time=395 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=464 ttl=47 time=419 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=465 ttl=47 time=441 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=466 ttl=47 time=260 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=467 ttl=47 time=383 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=468 ttl=47 time=406 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=469 ttl=45 time=430 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=470 ttl=47 time=349 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=471 ttl=47 time=373 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=472 ttl=47 time=294 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=473 ttl=47 time=418 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=474 ttl=47 time=440 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=475 ttl=47 time=362 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=476 ttl=47 time=384 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=477 ttl=45 time=407 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=478 ttl=47 time=429 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=479 ttl=47 time=350 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=480 ttl=47 time=239 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=481 ttl=47 time=394 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=482 ttl=45 time=418 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=483 ttl=47 time=440 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=484 ttl=47 time=361 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=485 ttl=47 time=383 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=486 ttl=47 time=406 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=487 ttl=47 time=330 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=488 ttl=47 time=347 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=489 ttl=47 time=369 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=490 ttl=47 time=393 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=491 ttl=47 time=416 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=492 ttl=47 time=438 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=493 ttl=47 time=359 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=494 ttl=47 time=384 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=495 ttl=47 time=404 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=496 ttl=47 time=426 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=497 ttl=47 time=346 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=498 ttl=47 time=370 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=499 ttl=47 time=391 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=500 ttl=47 time=414 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=501 ttl=47 time=436 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=502 ttl=47 time=257 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=503 ttl=47 time=379 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=504 ttl=47 time=356 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=505 ttl=47 time=424 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=506 ttl=47 time=344 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=507 ttl=47 time=367 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=508 ttl=47 time=389 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=509 ttl=47 time=412 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=510 ttl=47 time=434 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=511 ttl=47 time=355 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=512 ttl=47 time=378 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=513 ttl=47 time=400 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=514 ttl=47 time=424 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=515 ttl=47 time=446 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=516 ttl=45 time=366 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=517 ttl=47 time=390 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=518 ttl=47 time=412 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=519 ttl=47 time=435 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=520 ttl=47 time=357 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=521 ttl=47 time=378 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=522 ttl=47 time=402 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=523 ttl=47 time=424 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=524 ttl=47 time=447 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=525 ttl=47 time=366 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=526 ttl=47 time=390 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=527 ttl=47 time=411 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=528 ttl=47 time=434 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=529 ttl=47 time=355 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=530 ttl=47 time=378 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=531 ttl=47 time=400 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=532 ttl=47 time=423 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=533 ttl=47 time=445 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=534 ttl=47 time=366 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=535 ttl=47 time=388 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=536 ttl=47 time=410 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=537 ttl=47 time=433 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=538 ttl=47 time=352 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=539 ttl=47 time=375 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=540 ttl=47 time=399 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=541 ttl=47 time=421 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=542 ttl=47 time=332 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=543 ttl=47 time=365 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=544 ttl=47 time=389 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=546 ttl=47 time=2365 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=547 ttl=47 time=1365 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=548 ttl=47 time=365 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=549 ttl=47 time=403 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=550 ttl=47 time=426 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=551 ttl=47 time=346 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=552 ttl=47 time=368 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=553 ttl=47 time=392 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=554 ttl=47 time=414 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=555 ttl=47 time=437 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=556 ttl=47 time=356 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=557 ttl=47 time=379 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=558 ttl=47 time=403 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=559 ttl=47 time=426 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=560 ttl=47 time=346 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=561 ttl=47 time=368 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=562 ttl=47 time=389 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=563 ttl=47 time=411 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=564 ttl=47 time=435 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=565 ttl=47 time=356 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=566 ttl=47 time=378 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=567 ttl=47 time=605 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=568 ttl=47 time=425 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=569 ttl=47 time=447 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=570 ttl=47 time=367 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=571 ttl=47 time=389 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=572 ttl=47 time=413 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=573 ttl=47 time=334 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=574 ttl=47 time=382 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=575 ttl=45 time=583 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=576 ttl=47 time=400 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=577 ttl=47 time=731 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=578 ttl=47 time=447 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=579 ttl=47 time=375 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=580 ttl=47 time=595 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=581 ttl=47 time=430 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=582 ttl=47 time=640 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=583 ttl=47 time=458 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=584 ttl=47 time=788 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=585 ttl=47 time=506 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=586 ttl=47 time=434 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=587 ttl=47 time=654 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=588 ttl=47 time=368 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=589 ttl=47 time=802 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=590 ttl=47 time=518 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=591 ttl=47 time=443 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=592 ttl=47 time=562 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=593 ttl=47 time=381 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=594 ttl=47 time=439 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=595 ttl=47 time=425 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=596 ttl=47 time=858 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=597 ttl=47 time=576 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=598 ttl=47 time=409 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=599 ttl=47 time=622 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=600 ttl=47 time=439 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=601 ttl=47 time=769 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=602 ttl=47 time=485 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=603 ttl=47 time=405 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=604 ttl=47 time=429 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=605 ttl=47 time=349 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=606 ttl=47 time=372 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=607 ttl=47 time=393 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=608 ttl=47 time=417 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=609 ttl=47 time=439 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=610 ttl=47 time=361 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=611 ttl=47 time=382 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=612 ttl=47 time=406 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=613 ttl=47 time=428 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=614 ttl=47 time=349 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=615 ttl=47 time=372 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=616 ttl=47 time=395 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=617 ttl=47 time=417 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=618 ttl=47 time=440 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=619 ttl=47 time=361 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=620 ttl=47 time=383 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=621 ttl=47 time=406 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=622 ttl=47 time=430 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=623 ttl=47 time=451 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=624 ttl=47 time=371 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=625 ttl=47 time=395 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=626 ttl=47 time=418 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=627 ttl=47 time=440 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=628 ttl=47 time=360 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=629 ttl=47 time=382 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=630 ttl=47 time=404 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=631 ttl=47 time=427 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=632 ttl=47 time=450 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=633 ttl=47 time=371 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=634 ttl=47 time=393 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=635 ttl=47 time=416 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=636 ttl=47 time=438 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=637 ttl=47 time=358 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=638 ttl=47 time=382 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=639 ttl=47 time=403 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=640 ttl=47 time=426 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=641 ttl=47 time=345 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=642 ttl=47 time=368 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=643 ttl=47 time=391 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=644 ttl=47 time=416 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=645 ttl=47 time=438 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=646 ttl=47 time=359 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=647 ttl=47 time=381 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=648 ttl=47 time=403 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=649 ttl=47 time=425 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=650 ttl=47 time=449 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=651 ttl=47 time=368 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=652 ttl=47 time=392 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=653 ttl=47 time=413 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=654 ttl=47 time=436 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=655 ttl=47 time=355 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=656 ttl=47 time=379 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=657 ttl=47 time=300 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=658 ttl=47 time=424 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=659 ttl=47 time=447 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=660 ttl=47 time=367 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=661 ttl=47 time=390 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=662 ttl=47 time=412 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=663 ttl=47 time=436 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=664 ttl=47 time=355 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=666 ttl=47 time=2210 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=667 ttl=47 time=1203 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=668 ttl=47 time=245 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=669 ttl=47 time=355 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=670 ttl=47 time=369 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=671 ttl=47 time=392 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=672 ttl=47 time=413 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=673 ttl=47 time=438 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=674 ttl=47 time=357 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=675 ttl=47 time=381 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=676 ttl=47 time=402 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=677 ttl=47 time=426 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=678 ttl=47 time=346 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=679 ttl=47 time=369 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=680 ttl=47 time=392 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=681 ttl=47 time=415 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=682 ttl=47 time=438 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=683 ttl=47 time=357 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=684 ttl=47 time=380 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=685 ttl=47 time=404 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=686 ttl=47 time=428 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=687 ttl=47 time=448 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=688 ttl=47 time=369 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=689 ttl=47 time=390 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=690 ttl=47 time=415 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=691 ttl=45 time=437 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=692 ttl=47 time=357 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=693 ttl=47 time=380 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=694 ttl=47 time=402 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=695 ttl=47 time=322 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=696 ttl=47 time=449 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=697 ttl=47 time=368 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=698 ttl=47 time=391 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=699 ttl=47 time=413 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=700 ttl=47 time=436 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=701 ttl=47 time=354 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=702 ttl=47 time=378 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=703 ttl=47 time=401 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=704 ttl=47 time=422 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=705 ttl=47 time=445 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=706 ttl=47 time=367 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=707 ttl=47 time=389 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=708 ttl=47 time=394 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=709 ttl=47 time=333 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=710 ttl=45 time=458 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=711 ttl=47 time=378 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=712 ttl=47 time=400 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=713 ttl=47 time=424 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=714 ttl=47 time=343 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=715 ttl=47 time=367 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=716 ttl=47 time=389 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=717 ttl=47 time=411 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=718 ttl=47 time=433 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=719 ttl=47 time=354 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=720 ttl=47 time=276 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=721 ttl=47 time=399 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=722 ttl=47 time=421 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=723 ttl=47 time=443 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=724 ttl=47 time=364 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=725 ttl=47 time=386 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=726 ttl=47 time=409 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=727 ttl=47 time=433 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=728 ttl=47 time=352 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=729 ttl=47 time=376 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=730 ttl=47 time=397 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=731 ttl=47 time=420 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=732 ttl=47 time=340 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=733 ttl=47 time=362 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=734 ttl=47 time=385 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=735 ttl=47 time=407 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=736 ttl=45 time=311 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=737 ttl=45 time=452 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=738 ttl=47 time=374 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=739 ttl=47 time=396 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=740 ttl=47 time=419 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=741 ttl=47 time=442 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=742 ttl=45 time=364 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=743 ttl=47 time=386 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=744 ttl=47 time=408 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=745 ttl=47 time=430 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=746 ttl=47 time=352 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=747 ttl=47 time=374 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=748 ttl=47 time=397 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=749 ttl=47 time=419 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=750 ttl=47 time=341 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=751 ttl=47 time=364 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=752 ttl=47 time=386 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=753 ttl=47 time=408 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=754 ttl=47 time=277 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=755 ttl=47 time=352 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=756 ttl=47 time=375 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=757 ttl=47 time=397 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=758 ttl=47 time=421 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=759 ttl=47 time=443 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=760 ttl=47 time=365 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=761 ttl=47 time=386 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=762 ttl=47 time=409 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=763 ttl=45 time=431 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=764 ttl=47 time=353 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=765 ttl=47 time=377 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=766 ttl=47 time=398 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=767 ttl=47 time=422 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=768 ttl=47 time=444 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=769 ttl=47 time=368 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=770 ttl=47 time=389 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=771 ttl=47 time=413 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=772 ttl=47 time=435 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=773 ttl=47 time=356 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=774 ttl=47 time=380 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=775 ttl=47 time=401 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=776 ttl=47 time=426 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=777 ttl=47 time=449 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=778 ttl=47 time=376 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=779 ttl=47 time=394 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=780 ttl=47 time=409 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=781 ttl=47 time=338 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=782 ttl=47 time=358 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=783 ttl=47 time=383 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=785 ttl=47 time=3060 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=786 ttl=47 time=2052 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=787 ttl=45 time=1044 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=788 ttl=47 time=366 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=789 ttl=47 time=389 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=790 ttl=47 time=413 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=791 ttl=47 time=436 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=792 ttl=47 time=358 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=793 ttl=47 time=379 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=794 ttl=47 time=374 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=795 ttl=47 time=426 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=796 ttl=47 time=350 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=797 ttl=47 time=371 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=798 ttl=47 time=394 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=799 ttl=47 time=418 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=800 ttl=47 time=440 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=801 ttl=47 time=361 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=802 ttl=47 time=386 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=803 ttl=47 time=407 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=804 ttl=47 time=432 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=805 ttl=47 time=354 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=806 ttl=47 time=377 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=807 ttl=47 time=400 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=808 ttl=47 time=424 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=809 ttl=47 time=447 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=810 ttl=47 time=370 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=811 ttl=47 time=374 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=812 ttl=47 time=417 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=813 ttl=47 time=440 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=814 ttl=47 time=361 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=815 ttl=47 time=386 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=816 ttl=47 time=409 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=817 ttl=47 time=433 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=818 ttl=47 time=354 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=819 ttl=47 time=377 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=820 ttl=47 time=402 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=821 ttl=47 time=425 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=822 ttl=47 time=346 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=823 ttl=47 time=367 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=824 ttl=47 time=367 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=825 ttl=47 time=313 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=826 ttl=47 time=283 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=827 ttl=47 time=358 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=828 ttl=47 time=383 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=829 ttl=47 time=406 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=830 ttl=47 time=430 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=831 ttl=47 time=350 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=832 ttl=47 time=361 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=833 ttl=47 time=397 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=834 ttl=47 time=421 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=835 ttl=47 time=446 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=836 ttl=47 time=366 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=837 ttl=47 time=390 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=838 ttl=47 time=413 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=839 ttl=47 time=438 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=840 ttl=47 time=360 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=841 ttl=47 time=383 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=842 ttl=47 time=407 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=843 ttl=47 time=431 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=844 ttl=47 time=239 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=845 ttl=47 time=374 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=846 ttl=45 time=398 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=847 ttl=47 time=422 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=848 ttl=47 time=445 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=849 ttl=47 time=366 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=850 ttl=47 time=390 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=851 ttl=47 time=414 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=852 ttl=45 time=438 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=853 ttl=47 time=359 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=854 ttl=47 time=387 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=855 ttl=47 time=407 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=856 ttl=47 time=431 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=857 ttl=47 time=352 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=858 ttl=47 time=375 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=859 ttl=47 time=400 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=860 ttl=47 time=525 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=861 ttl=47 time=446 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=862 ttl=47 time=366 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=863 ttl=47 time=391 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=864 ttl=47 time=414 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=865 ttl=47 time=439 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=866 ttl=47 time=360 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=867 ttl=47 time=384 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=868 ttl=47 time=406 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=869 ttl=47 time=431 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=870 ttl=47 time=453 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=871 ttl=47 time=323 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=872 ttl=47 time=359 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=873 ttl=47 time=421 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=874 ttl=47 time=242 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=875 ttl=47 time=364 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=876 ttl=47 time=388 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=877 ttl=47 time=411 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=878 ttl=47 time=435 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=879 ttl=47 time=356 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=880 ttl=47 time=380 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=881 ttl=47 time=403 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=882 ttl=47 time=427 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=883 ttl=45 time=451 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=884 ttl=47 time=372 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=885 ttl=47 time=396 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=886 ttl=47 time=419 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=887 ttl=47 time=443 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=888 ttl=47 time=363 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=889 ttl=47 time=388 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=890 ttl=47 time=411 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=891 ttl=47 time=435 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=892 ttl=47 time=355 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=893 ttl=47 time=380 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=894 ttl=47 time=402 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=895 ttl=47 time=426 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=896 ttl=47 time=347 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=897 ttl=47 time=370 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=898 ttl=47 time=395 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=899 ttl=47 time=417 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=900 ttl=47 time=442 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=901 ttl=47 time=361 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=902 ttl=47 time=386 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=903 ttl=47 time=409 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=904 ttl=47 time=243 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=905 ttl=47 time=242 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=906 ttl=47 time=241 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=907 ttl=47 time=308 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=908 ttl=47 time=321 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=909 ttl=47 time=345 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=910 ttl=47 time=367 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=911 ttl=47 time=328 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=912 ttl=47 time=414 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=913 ttl=47 time=437 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=914 ttl=47 time=357 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=915 ttl=45 time=382 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=916 ttl=47 time=352 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=917 ttl=47 time=428 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=918 ttl=47 time=350 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=919 ttl=47 time=321 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=920 ttl=47 time=397 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=921 ttl=47 time=420 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=922 ttl=47 time=444 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=923 ttl=47 time=366 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=924 ttl=47 time=390 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=925 ttl=47 time=414 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=926 ttl=47 time=438 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=927 ttl=47 time=364 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=928 ttl=47 time=382 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=929 ttl=47 time=406 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=930 ttl=47 time=327 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=931 ttl=47 time=351 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=932 ttl=47 time=375 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=933 ttl=47 time=398 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=934 ttl=47 time=273 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=935 ttl=47 time=444 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=936 ttl=47 time=366 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=937 ttl=47 time=389 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=938 ttl=47 time=413 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=939 ttl=47 time=436 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=940 ttl=47 time=357 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=941 ttl=47 time=380 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=942 ttl=47 time=403 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=943 ttl=47 time=428 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=944 ttl=47 time=348 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=945 ttl=47 time=373 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=946 ttl=47 time=396 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=947 ttl=47 time=421 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=948 ttl=47 time=444 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=949 ttl=47 time=364 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=950 ttl=47 time=388 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=951 ttl=47 time=411 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=952 ttl=47 time=398 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=953 ttl=47 time=244 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=954 ttl=47 time=236 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=955 ttl=47 time=401 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=956 ttl=47 time=395 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=957 ttl=47 time=346 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=958 ttl=47 time=370 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=959 ttl=47 time=394 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=960 ttl=47 time=419 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=961 ttl=47 time=386 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=962 ttl=47 time=364 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=963 ttl=47 time=387 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=964 ttl=47 time=313 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=965 ttl=47 time=434 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=966 ttl=47 time=355 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=967 ttl=47 time=379 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=968 ttl=47 time=402 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=969 ttl=47 time=528 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=970 ttl=47 time=312 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=971 ttl=47 time=243 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=972 ttl=47 time=392 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=973 ttl=47 time=416 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=974 ttl=47 time=441 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=975 ttl=47 time=362 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=976 ttl=47 time=386 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=977 ttl=45 time=409 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=978 ttl=47 time=433 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=979 ttl=47 time=354 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=980 ttl=47 time=378 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=981 ttl=47 time=403 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=982 ttl=47 time=426 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=983 ttl=47 time=347 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=984 ttl=47 time=371 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=985 ttl=47 time=374 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=986 ttl=47 time=418 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=987 ttl=47 time=442 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=988 ttl=47 time=361 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=989 ttl=47 time=386 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=990 ttl=47 time=408 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=991 ttl=47 time=433 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=992 ttl=47 time=293 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=993 ttl=47 time=378 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=994 ttl=47 time=351 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=995 ttl=47 time=280 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=996 ttl=47 time=277 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=997 ttl=47 time=368 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=998 ttl=47 time=393 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=999 ttl=47 time=282 ms
64 bytes from www1.cac.washington.edu (128.95.155.134): icmp_seq=1000 ttl=47 time=441 ms
--- uw.edu ping statistics ---
1000 packets transmitted, 985 received, 1% packet loss, time 999912ms
rtt min/avg/max/mdev = 233.977/422.886/3060.440/177.011 ms, pipe 4