summaryrefslogtreecommitdiff
path: root/ept/test-data/popcon/popularity-contest
blob: 6eeec208834f6f08e138980656dbf0e82c10a023 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
POPULARITY-CONTEST-0 TIME:1181000000 ID:00000000000000000000000000000000 ARCH:amd64 POPCONVER:1.42
1181048444 1181048464 powertop /usr/bin/powertop <RECENT-CTIME>
1181041113 1181041119 signing-party /usr/bin/keylookup <RECENT-CTIME>
1181041113 1181041118 postgresql-common /usr/share/postgresql-common/t/TestLib.pm <RECENT-CTIME>
1181041113 1181041114 cpio /bin/mt-gnu <RECENT-CTIME>
1181041113 1181041118 postgresql-client-common /usr/bin/pg_restore <RECENT-CTIME>
1180897461 1180897510 libgnome2-0 /usr/bin/gnome-open <RECENT-CTIME>
1180897461 1180897574 unionfs-tools /usr/sbin/unionimap <RECENT-CTIME>
1180897461 1180897545 pppoe /usr/sbin/pppoe-relay <RECENT-CTIME>
1180897461 1180897498 recordmydesktop /usr/bin/recordmydesktop <RECENT-CTIME>
1180897461 1180897480 aircrack-ng /usr/sbin/airmon-ng <RECENT-CTIME>
1180897461 1180897461 dmidecode /usr/sbin/dmidecode <RECENT-CTIME>
1180897461 1180897583 zlib-bin /usr/bin/miniunzip <RECENT-CTIME>
1180897461 1180897462 info /usr/bin/infokey <RECENT-CTIME>
1180897461 1180897480 whois /usr/bin/mkpasswd <RECENT-CTIME>
1180897461 1180897572 tofrodos /usr/bin/dos2unix <RECENT-CTIME>
1180897461 1180897479 texinfo /usr/bin/ginstall-info <RECENT-CTIME>
1180897461 1180897510 libgnome2-dev /usr/lib/libgnome-2.a <RECENT-CTIME>
1180897461 1180897484 fakeroot /usr/bin/faked-sysv <RECENT-CTIME>
1180897461 1180897479 python-central /usr/bin/dh_pycentral <RECENT-CTIME>
1180897461 1180897474 file /usr/bin/file <RECENT-CTIME>
1180897461 1180897575 wdiff /usr/bin/wdiff <RECENT-CTIME>
1180897461 1180897584 915resolution /usr/sbin/915resolution <RECENT-CTIME>
1180897461 1180897544 openvpn /usr/include/openvpn/openvpn-plugin.h <RECENT-CTIME>
1180897461 1180897486 gconf2 /usr/sbin/update-gconf-defaults <RECENT-CTIME>
1180897461 1180897505 libaudio-dev /usr/lib/libaudio.a <RECENT-CTIME>
1180897461 1180897555 python2.4 /usr/bin/pdb2.4 <RECENT-CTIME>
1180897461 1180897469 module-init-tools /sbin/lsmod <RECENT-CTIME>
1180897461 1180897539 noiz2sa-data /usr/share/games/noiz2sa/ogg/ogg.h <RECENT-CTIME>
1180897461 1180897462 iputils-ping /bin/ping6 <RECENT-CTIME>
1180897461 1180897498 gv /usr/bin/gv <RECENT-CTIME>
1180897461 1180897497 gtk-recordmydesktop /usr/bin/gtk-recordMyDesktop <RECENT-CTIME>
1180897461 1180897493 mkisofs /usr/bin/mkhybrid <RECENT-CTIME>
1180897461 1180897586 reprepro /usr/bin/changestool <RECENT-CTIME>
1180897461 1180897493 genisoimage /usr/bin/isovfy <RECENT-CTIME>
1180897461 1180897560 qemu /usr/sbin/qemu-make-debian-root <RECENT-CTIME>
1180897461 1180897575 vde2 /usr/bin/vdeqemu <RECENT-CTIME>
1180897461 1180897540 ntp /usr/bin/ntpq <RECENT-CTIME>
1180897461 1180897508 libexif-dev /usr/include/libexif/exif-content.h <RECENT-CTIME>
1180897461 1180897538 netpbm /usr/bin/bmptoppm <RECENT-CTIME>
1180897461 1180897586 simple-cdd /usr/bin/build-simple-cdd <RECENT-CTIME>
1180897461 1180897492 psmisc /usr/bin/pstree.x11 <RECENT-CTIME>
1180897461 1180897471 dictionaries-common /usr/sbin/update-default-aspell <RECENT-CTIME>
1180897461 1180897534 libungif4-dev /usr/lib/libgif.a <RECENT-CTIME>
1180897461 1180897582 xpdf-common /usr/sbin/update-xpdfrc <RECENT-CTIME>
1180897461 1180897571 testdisk /usr/sbin/photorec <RECENT-CTIME>
1180897461 1180897470 bind9-host /usr/bin/host <RECENT-CTIME>
1180897461 1180897484 eject /usr/bin/volname <RECENT-CTIME>
1180897461 1180897478 pidentd /usr/sbin/ikeygen <RECENT-CTIME>
1180897461 1180897556 python-minimal /usr/bin/python <RECENT-CTIME>
1180897461 1180897586 xgsmlib /usr/bin/xgsm <RECENT-CTIME>
1180897461 1180897585 libccid /usr/bin/RSA_SecurID_getpasswd <RECENT-CTIME>
1180897461 1180897500 hal /usr/sbin/hald <RECENT-CTIME>
1180897461 1180897570 samba-common /usr/bin/testparm <RECENT-CTIME>
1180897461 1180897499 usbutils /usr/bin/lsusb <RECENT-CTIME>
1180897461 1180897566 smbclient /usr/bin/smbcquotas <RECENT-CTIME>
1180897461 1180897555 python /usr/bin/pdb <RECENT-CTIME>
1180897461 1180897581 xpdf-reader /usr/bin/xpdf.bin <RECENT-CTIME>
1180897461 1180897475 ispell /usr/sbin/ispellconfig <RECENT-CTIME>
1180897461 1180897575 webcpp /usr/bin/scs2scs2 <RECENT-CTIME>
1180897461 1180897482 daemon /usr/bin/daemon <RECENT-CTIME>
1180897461 1180897482 cdparanoia /usr/bin/cdparanoia <RECENT-CTIME>
1180897461 1180897485 libgconf2-dev /usr/lib/libgconf-2.a <RECENT-CTIME>
1180897461 1180897549 python-xml /usr/bin/xmlproc_val.python-xml <RECENT-CTIME>
1180897461 1180897481 blktrace /usr/sbin/blktrace <RECENT-CTIME>
1180897461 1180897584 hfsutils /usr/bin/humount <RECENT-CTIME>
1180897461 1180897541 openssl /usr/bin/openssl <RECENT-CTIME>
1180897461 1180897503 libart-2.0-dev /usr/bin/libart2-config <RECENT-CTIME>
1180897461 1180897579 xmms /usr/bin/wmxmms <RECENT-CTIME>
1180897461 1180897560 ruby /usr/bin/ruby <RECENT-CTIME>
1180897461 1180897570 sdparm /usr/bin/sdparm <RECENT-CTIME>
1180897461 1180897585 ogdi-bin /usr/bin/ogdi_info <RECENT-CTIME>
1180897461 1180897569 smbfs /sbin/mount.smb <RECENT-CTIME>
1180897461 1180897483 libglib2.0-dev /usr/bin/glib-mkenums <RECENT-CTIME>
1180897461 1180897581 xpdf-utils /usr/bin/pdfimages <RECENT-CTIME>
1180897461 1180897472 dnsutils /usr/bin/nsupdate <RECENT-CTIME>
1180897461 1180897545 ppp /usr/sbin/pppdump <RECENT-CTIME>
1180897461 1180897509 libglib-perl /usr/lib/perl5/Glib.pm <RECENT-CTIME>
1180897461 1180897576 wodim /usr/bin/wodim <RECENT-CTIME>
1180897461 1180897556 python2.4-minimal /usr/bin/python2.4 <RECENT-CTIME>
1180897461 1180897483 desktop-file-utils /usr/bin/update-desktop-database <RECENT-CTIME>
1180897461 1180897571 syslinux /usr/bin/mkdiskimage <RECENT-CTIME>
1180897461 1180897550 python2.4-dev /usr/include/python2.4/weakrefobject.h <RECENT-CTIME>
1180897461 1180897538 noiz2sa /usr/bin/noiz2sa <RECENT-CTIME>
1180897461 1180897574 unpaper /usr/bin/unpaper <RECENT-CTIME>
1180897461 1180897463 libssl-dev /usr/include/openssl/pqueue.h <RECENT-CTIME>
1180897461 1180897560 ruby1.8 /usr/bin/testrb1.8 <RECENT-CTIME>
1180897461 1180897504 libatk1.0-dev /usr/include/atk-1.0/atk/atk-enum-types.h <RECENT-CTIME>
1180897461 1180897465 man-db /usr/sbin/accessdb <RECENT-CTIME>
1180897449 1180897459 xutils-dev /usr/bin/gccmakedep <RECENT-CTIME>
1180897449 1180897454 libxmu-dev /usr/lib/libXmu.a <RECENT-CTIME>
1180897449 1180897452 libpng12-dev /usr/bin/libpng-config <RECENT-CTIME>
1180897449 1180897451 libfreetype6-dev /usr/include/ft2build.h <RECENT-CTIME>
1180897449 1180897458 xbase-clients /usr/bin/xwud <RECENT-CTIME>
1180897441 1180897447 libxrandr-dev /usr/lib/libXrandr.a <RECENT-CTIME>
1180897441 1180897443 libxau-dev /usr/lib/libXau.a <RECENT-CTIME>
1180897441 1180897446 libxinerama-dev /usr/lib/libXinerama.a <RECENT-CTIME>
1180897441 1180897446 libxmu-headers /usr/include/X11/Xmu/Xct.h <RECENT-CTIME>
1180897441 1180897443 libsm-dev /usr/lib/libSM.a <RECENT-CTIME>
1180897441 1180897447 libxt-dev /usr/include/X11/Shell.h <RECENT-CTIME>
1180897441 1180897442 flex /usr/lib/libl.a <RECENT-CTIME>
1180897441 1180897445 libxcursor-dev /usr/lib/libXcursor.a <RECENT-CTIME>
1180897441 1180897445 libxext-dev /usr/lib/libXext.a <RECENT-CTIME>
1180897441 1180897444 libxrender-dev /usr/include/X11/extensions/Xrender.h <RECENT-CTIME>
1180897441 1180897444 libxfixes-dev /usr/lib/libXfixes.a <RECENT-CTIME>
1180897441 1180897448 zlib1g-dev /usr/include/zconf.h <RECENT-CTIME>
1180897435 1180897435 libncurses5-dev /usr/lib/libcurses.a <RECENT-CTIME>
1180897433 1180897434 sed /bin/sed <RECENT-CTIME>
1180897431 1180897432 ncurses-bin /usr/bin/reset <RECENT-CTIME>
1180897430 1180897431 mktemp /bin/mktemp <RECENT-CTIME>
1180897427 1180897429 findutils /usr/bin/updatedb <RECENT-CTIME>
1180897426 1180897427 diff /usr/bin/sdiff <RECENT-CTIME>
1180897423 1180897423 debianutils /usr/bin/which <RECENT-CTIME>
1180787194 1180787195 libept-dev /usr/lib/libept.a <RECENT-CTIME>
1180774498 1180774499 tagcoll /usr/bin/tagcoll <RECENT-CTIME>
1180774498 1180774498 libtagcoll2-dev /usr/include/tagcoll-2.0.6/tagcoll/utils/set.h <RECENT-CTIME>
1180627127 1180627144 libgtkmm-2.4-doc /usr/share/doc/libgtkmm-2.4-doc/examples/treemodelcustom/exampletreemodel.h <RECENT-CTIME>
1180627127 1180627142 libgtkmm-2.4-dev /usr/include/atkmm-1.6/atkmm.h <RECENT-CTIME>
1180614103 1180614123 reportbug-ng /usr/bin/rng <RECENT-CTIME>
1180608501 1180608507 rkhunter /usr/bin/rkhunter <RECENT-CTIME>
1180608501 1180608504 cdbs /usr/bin/cdbs-edit-patch <RECENT-CTIME>
1180608501 1180608505 python-nose /usr/bin/nosetests <RECENT-CTIME>
1180608501 1180608504 libimage-info-perl /usr/share/perl5/Image/Info/SVG.pm <RECENT-CTIME>
1180526809 1180526811 vim-scripts /usr/bin/vimplate <RECENT-CTIME>
1180460243 1180460244 hg-load-dirs /usr/bin/hg_load_dirs <RECENT-CTIME>
1180460243 1180460245 hg-buildpackage /usr/bin/hg-markdeb <RECENT-CTIME>
1180460221 1180460242 dpkg /sbin/start-stop-daemon <RECENT-CTIME>
1180460221 1180460240 dpkg-dev /usr/bin/dpkg-source <RECENT-CTIME>
1180460161 1180460188 binutils /usr/bin/ld <RECENT-CTIME>
1180460161 1180460196 libc6 /sbin/ldconfig <RECENT-CTIME>
1180460161 1180460190 libc6-dev /usr/include/syscall.h <RECENT-CTIME>
1180460161 1180460193 locales /usr/sbin/locale-gen <RECENT-CTIME>
1180459910 1180459953 linux-image-2.6.21-1-amd64 /boot/System.map-2.6.21-1-amd64 <RECENT-CTIME>
1180459910 1180459965 python-setuptools /usr/bin/easy_install-2.4 <RECENT-CTIME>
1180459910 1180459939 linux-headers-2.6.21-1 /usr/src/linux-headers-2.6.21-1/include/asm-generic/audit_change_attr.h <RECENT-CTIME>
1180254024 1180254033 eric /usr/bin/eric <RECENT-CTIME>
1180254024 1180254030 bzr-builddeb /usr/bin/bzr-buildpackage <RECENT-CTIME>
1180081502 1180081530 python-turbogears /usr/bin/tg-admin <RECENT-CTIME>
1180000910 1180000928 libwibble-dev /usr/lib/libwibble.a <RECENT-CTIME>
1179997203 1179997209 libdballef-dev /usr/lib/libdballef.a <RECENT-CTIME>
1179997203 1179997209 dballe /usr/bin/dbamsg <RECENT-CTIME>
1179997203 1179997210 python-dballe /usr/share/pycentral/python-dballe/site-packages/_dballe.a <RECENT-CTIME>
1179930200 1179930229 provami /usr/bin/provami <RECENT-CTIME>
1179908628 1179908651 doc-base /usr/share/perl5/Debian/DocBase/Common.pm <RECENT-CTIME>
1179908628 1179908651 apt-listchanges /usr/bin/apt-listchanges <RECENT-CTIME>
1179908628 1179909194 privoxy /usr/sbin/privoxy <RECENT-CTIME>
1179908628 1179908648 reportbug /usr/bin/querybts <RECENT-CTIME>
1179692174 1179692199 xclip /usr/bin/xclip <RECENT-CTIME>
1179657476 1179657496 openbox /usr/include/openbox/3.3/openbox/parse.h <RECENT-CTIME>
1179657476 1179657496 obconf /usr/bin/obconf <RECENT-CTIME>
1179655030 1179655048 python2.5-minimal /usr/bin/python2.5 <RECENT-CTIME>
1179655030 1179655034 bzr /usr/bin/bzr <RECENT-CTIME>
1179655030 1179655052 uswsusp /usr/sbin/s2ram <RECENT-CTIME>
1179655030 1179655048 pm-utils /usr/sbin/pm-hibernate <RECENT-CTIME>
1179655030 1179655050 python2.5 /usr/bin/pdb2.5 <RECENT-CTIME>
1179655030 1179655037 gs-common /usr/bin/ps2txt <RECENT-CTIME>
1179655030 1179655035 dpatch /usr/bin/dpatch-get-origtargz <RECENT-CTIME>
1179655030 1179655031 python-support /usr/sbin/update-python-modules <RECENT-CTIME>
1179655026 1179655028 libhsqldb-java /usr/bin/hsqldb-databasemanagerswing <RECENT-CTIME>
1179428033 1179428056 rake /usr/bin/rake <RECENT-CTIME>
1179428033 1179428055 c++-annotations /usr/share/doc/c++-annotations/examples/yo/overloading/examples/binary3.h <RECENT-CTIME>
1179428033 1179428060 ucf /usr/bin/ucfq <RECENT-CTIME>
1179256205 1179256236 kernel-package /usr/sbin/kernel-packageconfig <RECENT-CTIME>
1179256170 1179256192 linux-image-2.6.18-4-amd64 /boot/System.map-2.6.18-4-amd64 <RECENT-CTIME>
1178982037 1178982070 pydb /usr/bin/pydb <RECENT-CTIME>
1178982037 1178982071 python-pastescript /usr/bin/paster <RECENT-CTIME>
1178982037 1178982057 x11proto-input-dev /usr/include/X11/extensions/XIproto.h <RECENT-CTIME>
1178982037 1178982058 clive /usr/bin/clive <RECENT-CTIME>
1178783830 1178783848 meld /usr/bin/meld <RECENT-CTIME>
1178783830 1178783847 libtimedate-perl /usr/share/perl5/Date/Language.pm <RECENT-CTIME>
1178783830 1178783838 dvipdfmx /usr/bin/dvipdfmx <RECENT-CTIME>
1178783830 1178783882 texlive-latex-extra /usr/share/doc/texlive-doc/latex/register/Reg_macro.pm.gz <RECENT-CTIME>
1178783830 1178783847 lintian /usr/share/lintian/lib/Dep.pm <RECENT-CTIME>
1178783830 1178783846 ipython /usr/bin/pycolor <RECENT-CTIME>
1178783824 1178783826 texlive-base-bin /usr/bin/oxdvi <RECENT-CTIME>
1178783824 1178783826 texlive-latex-base /usr/bin/latex <RECENT-CTIME>
1178783824 1178783827 texlive-pdfetex /usr/bin/pdfopen <RECENT-CTIME>
1178633976 1178634000 xvfb /usr/bin/xvfb-run <RECENT-CTIME>
1178633976 1178634001 python-dogtail /usr/bin/dogtail-recorder <RECENT-CTIME>
1178142411 1178142444 liblocale-maketext-simple-perl /usr/share/perl5/Locale/Maketext/Simple.pm <OLD>
1178142411 1178142442 debhelper /usr/share/perl5/Debian/Debhelper/Dh_Version.pm <OLD>
1178128394 1178128416 python-imaging /usr/include/python2.3/Imaging.h <OLD>
1178128394 1178128416 keyjnote /usr/bin/keyjnote <OLD>
1178015044 1178015050 python-docutils /usr/bin/rst2newlatex <OLD>
1178015044 1178015066 qt4-dev-tools /usr/bin/linguist-qt4 <OLD>
1178015044 1178015066 wormux /usr/games/wormux <OLD>
1178015044 1178015055 python-numpy /usr/bin/f2py <OLD>
1178015044 1178015054 python-numpy-dev /usr/lib/python2.4/site-packages/numpy/f2py/src/fortranobject.h <OLD>
1178014144 1178014225 xml-core /usr/sbin/update-xmlcatalog <OLD>
1178014144 1178014226 zenity /usr/bin/gdialog <OLD>
1178014144 1178014146 r-base-core /usr/lib/R/bin/R <OLD>
1178014144 1178014228 svn-buildpackage /usr/share/svn-buildpackage/SDCommon.pm <OLD>
1178014144 1178014184 rdoc1.8 /usr/bin/rdoc1.8 <OLD>
1178014144 1178014185 recode /usr/bin/recode <OLD>
1178014144 1178014203 tex-common /usr/bin/update-updmap <OLD>
1178014144 1178014190 scribus-ng /usr/bin/scribus-ng <OLD>
1178014144 1178014213 unrar /usr/bin/unrar <OLD>
1178014144 1178014221 xfsprogs /sbin/xfs_repair <OLD>
1178014144 1178014222 xine-ui /usr/bin/xine-bugreport <OLD>
1178014144 1178014201 sudo /usr/sbin/visudo <OLD>
1178014144 1178014225 xplanet /usr/bin/xplanet <OLD>
1178014144 1178014212 unp /usr/bin/unp <OLD>
1178014144 1178014186 rpm /usr/bin/rpmquery <OLD>
1178014144 1178014202 tcptraceroute /usr/bin/tcptraceroute <OLD>
1178014144 1178014220 wpasupplicant /sbin/wpa_cli <OLD>
1178014144 1178014167 ri /usr/bin/ri <OLD>
1178014144 1178014199 smartmontools /usr/sbin/smartctl <OLD>
1178014144 1178014206 tsocks /usr/bin/validateconf <OLD>
1178014144 1178014187 rsync /usr/bin/rsync <OLD>
1178014144 1178014167 ri1.8 /usr/bin/ri1.8 <OLD>
1178014144 1178014216 valgrind /usr/include/valgrind/pub_tool_libcassert.h <OLD>
1178014140 1178014141 x11proto-randr-dev /usr/include/X11/extensions/randrproto.h <OLD>
1178014140 1178014140 x11proto-core-dev /usr/include/X11/Xwinsock.h <OLD>
1178014119 1178014125 sun-java5-jdk /usr/lib/jvm/java-1.5.0-sun-1.5.0.11/include/jdwpTransport.h <OLD>
1178014119 1178014137 x11-common /usr/bin/X <OLD>
1178014119 1178014121 sun-java5-demo /usr/lib/jvm/java-1.5.0-sun-1.5.0.11/demo/jvmti/heapTracker/src/heapTracker.h <OLD>
1178014119 1178014130 sun-java5-bin /usr/lib/jvm/java-1.5.0-sun-1.5.0.11/bin/java <OLD>
1178014098 1178014117 tar /bin/tar <OLD>
1178012580 1178012681 libqt4-core /usr/bin/qdbus <OLD>
1178012580 1178012663 liblocale-maketext-lexicon-perl /usr/share/perl5/Locale/Maketext/Lexicon/Auto.pm <OLD>
1178012580 1178012672 pcscd /usr/sbin/update-reader.conf <OLD>
1178012580 1178012694 libwmf-bin /usr/bin/wmf2eps <OLD>
1178012580 1178012731 proj /usr/bin/invgeod <OLD>
1178012580 1178012713 module-assistant /usr/bin/m-a <OLD>
1178012580 1178012597 libavahi-common-dev /usr/include/avahi-common/rlist.h <OLD>
1178012580 1178012661 libhtml-parser-perl /usr/lib/perl5/HTML/Filter.pm <OLD>
1178012580 1178012592 libbonobo2-dev /usr/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-version.h <OLD>
1178012580 1178012612 file-roller /usr/bin/file-roller <OLD>
1178012580 1178012640 libflash-swfplayer /usr/bin/swfplayer <OLD>
1178012580 1178012580 libgpg-error-dev /usr/bin/gpg-error-config <OLD>
1178012580 1178012590 nfs-common /sbin/rpc.lockd <OLD>
1178012580 1178012582 libgcrypt11-dev /usr/bin/libgcrypt-config <OLD>
1178012580 1178012740 pstoedit /usr/bin/pstoedit <OLD>
1178012580 1178012621 intltool /usr/bin/intltool-prepare <OLD>
1178012580 1178012633 libcaca0 /usr/lib/caca/libgl_plugin.a <OLD>
1178012580 1178012656 libhdf4g-dev /usr/include/hdf/hfile.h <OLD>
1178012580 1178012591 libidl-dev /usr/bin/libIDL-config-2 <OLD>
1178012580 1178012598 libavahi-glib-dev /usr/include/avahi-glib/glib-malloc.h <OLD>
1178012580 1178012583 libopencdk8-dev /usr/bin/opencdk-config <OLD>
1178012580 1178012585 libkrb5-dev /usr/include/profile.h <OLD>
1178012580 1178012690 libsvn-mirror-perl /usr/bin/svn-mirror <OLD>
1178012580 1178012635 libconvert-binhex-perl /usr/share/perl5/Convert/BinHex.pm <OLD>
1178012580 1178012636 xdg-utils /usr/bin/xdg-desktop-menu <OLD>
1178012580 1178012595 libbonoboui2-dev /usr/lib/libglade/2.0/libbonobo.a <OLD>
1178012580 1178012626 irb /usr/bin/irb <OLD>
1178012580 1178012729 orbit2 /usr/bin/typelib-dump <OLD>
1178012580 1178012594 libbonobo2-common /usr/sbin/bonobo-activation-sysconf <OLD>
1178012580 1178012714 mplayer /usr/bin/gmplayer <OLD>
1178012580 1178012620 imageindex /usr/bin/imageindex <OLD>
1178012580 1178012599 libgnomeui-dev /usr/lib/libgnomeui-2.a <OLD>
1178012580 1178012635 libclone-perl /usr/lib/perl5/Clone.pm <OLD>
1178012580 1178012678 libqt4-dev /usr/share/qt4/bin/lupdate <OLD>
1178012580 1178012592 liborbit2-dev /usr/include/orbit-2.0/ORBitservices/CosNaming.h <OLD>
1178012580 1178012649 libgksu2-0 /usr/bin/gksu-properties <OLD>
1178012580 1178012732 popularity-contest /usr/sbin/popcon-largest-unused <OLD>
1178012580 1178012729 p7zip-full /usr/bin/7za <OLD>
1178012580 1178012695 libxml-simple-perl /usr/share/perl5/XML/Simple.pm <OLD>
1178012580 1178012635 libdata-hierarchy-perl /usr/share/perl5/Data/Hierarchy.pm <OLD>
1178012580 1178012636 libdigest-sha1-perl /usr/lib/perl5/Digest/SHA1.pm <OLD>
1178012580 1178012733 postgresql-autodoc /usr/bin/postgresql_autodoc <OLD>
1178012580 1178012621 initramfs-tools /usr/sbin/mkinitramfs <OLD>
1178012580 1178012597 libavahi-client-dev /usr/include/avahi-client/publish.h <OLD>
1178012580 1178012640 libfile-chdir-perl /usr/share/perl5/File/chdir.pm <OLD>
1178012580 1178012712 mercurial /usr/bin/hg <OLD>
1178012580 1178012626 irb1.8 /usr/bin/irb1.8 <OLD>
1178012580 1178012665 libmysqlclient15-dev /usr/bin/mysql_config <OLD>
1178012580 1178012662 libhtml-tree-perl /usr/share/perl5/HTML/Element/traverse.pm <OLD>
1178012580 1178012584 libtasn1-3-dev /usr/bin/libtasn1-config <OLD>
1178012580 1178012634 libcfitsio-dev /usr/lib/libcfitsio.a <OLD>
1178012580 1178012661 libhtml-template-perl /usr/share/perl5/HTML/Template.pm <OLD>
1178012580 1178012691 libwmf-dev /usr/include/libwmf/defs.h <OLD>
1178012580 1178012689 libsdl-perl /usr/lib/perl5/SDL_perl.pm <OLD>
1178012580 1178012713 moreutils /usr/bin/zrun <OLD>
1178012580 1178012664 libmime-perl /usr/share/perl5/MIME/Parser/Reader.pm <OLD>
1178012580 1178012628 kdiff3 /usr/bin/kdiff3 <OLD>
1178012580 1178012587 mutt /usr/bin/mutt_dotlock <OLD>
1178012580 1178012650 libglibmm-2.4-dev /usr/include/glibmm-2.4/glibmm_generate_extra_defs/generate_extra_defs.h <OLD>
1178012525 1178012530 mysql-server-5.0 /usr/sbin/ndb_mgmd <OLD>
1178012511 1178012522 libdbd-mysql-perl /usr/lib/perl5/Bundle/DBD/mysql.pm <OLD>
1178012511 1178012524 mysql-client-5.0 /usr/sbin/mysqlmanager <OLD>
1178012511 1178012513 libxdmcp-dev /usr/include/X11/Xdmcp.h <OLD>
1178012511 1178012512 imlib-base /usr/bin/imlib-config <OLD>
1178012511 1178012512 libice-dev /usr/include/X11/ICE/ICEconn.h <OLD>
1178012511 1178012514 libxft-dev /usr/bin/xft-config <OLD>
1178011412 1178011420 m4 /usr/bin/m4 <OLD>
1178011412 1178011535 gnome-volume-manager /usr/bin/gnome-volume-manager-gthumb <OLD>
1178011412 1178011442 dvipng /usr/bin/dvigif <OLD>
1178011412 1178011516 gnome-common /usr/bin/gnome-doc-common <OLD>
1178011412 1178011470 gdm /usr/bin/gdmXnest <OLD>
1178011412 1178011540 gpsdrive /usr/lib/libfly.a <OLD>
1178011412 1178011440 dvbstream /usr/bin/dvbstream <OLD>
1178011412 1178011495 ggobi /usr/include/ggobi/GGobiEvents.h <OLD>
1178011412 1178011541 make /usr/bin/make <OLD>
1178011412 1178011468 gksu /usr/bin/gksudo <OLD>
1178011412 1178011442 exiftags /usr/bin/exiftime <OLD>
1178011412 1178011440 dput /usr/bin/dcut <OLD>
1178011412 1178011539 gpsd-clients /usr/bin/xgpsspeed <OLD>
1178011412 1178011536 gnupg-agent /usr/bin/gpgkey2ssh <OLD>
1178011412 1178011443 gaim /usr/bin/gaim-remote <OLD>
1178011412 1178011515 gnome-bin /usr/bin/new-object <OLD>
1178011412 1178011426 darcs-load-dirs /usr/bin/darcs_load_dirs <OLD>
1178011412 1178011415 klogd /sbin/klogd <OLD>
1178011412 1178011415 laptop-detect /usr/sbin/laptop-detect <OLD>
1178011412 1178011549 mc /usr/bin/mcedit <OLD>
1178011412 1178011542 lftp /usr/bin/lftp <OLD>
1178011412 1178011674 gnome-applets /usr/bin/cpufreq-selector <OLD>
1178011412 1178011546 mapserver-bin /usr/bin/scalebar <OLD>
1178011412 1178011552 debootstrap /usr/sbin/debootstrap <OLD>
1178011412 1178011494 germinate /usr/bin/germinate <OLD>
1178011412 1178011426 cowdancer /usr/sbin/cowbuilder <OLD>
1178011412 1178011547 markdown /usr/share/perl5/Text/Markdown.pm <OLD>
1178011412 1178011415 dhcp3-common /usr/bin/omshell <OLD>
1178011412 1178011536 gpgsm /usr/bin/gpgsm-gencert.sh <OLD>
1178011412 1178011460 gnome-session /usr/bin/gnome-wm <OLD>
1178011412 1178011538 gpsd /usr/include/libgpsmm.h <OLD>
1178011412 1178011425 cogito /usr/bin/cg-version <OLD>
1178011412 1178011424 cdrdao /usr/bin/cdrdao <OLD>
1178011412 1178011493 gedit /usr/bin/gedit <OLD>
1178011412 1178011414 debconf /usr/bin/debconf-show <OLD>
1178011412 1178011441 dvd+rw-tools /usr/bin/btcflash <OLD>
1178011412 1178011461 gnome-terminal /usr/bin/gnome-terminal.wrapper <OLD>
1178011412 1178011553 gnupg2 /usr/sbin/addgnupghome <OLD>
1178011412 1178011516 gnome-doc-utils /usr/bin/xml2po <OLD>
1178011412 1178011428 devscripts /usr/bin/cvs-debc <OLD>
1178011412 1178011427 debsums /usr/sbin/debsums_gen <OLD>
1178011412 1178011415 dhcp3-client /sbin/dhclient <OLD>
1178011412 1178011420 finger /usr/bin/finger <OLD>
1178011412 1178011426 svk-load-dirs /usr/bin/svk_load_dirs <OLD>
1178011412 1178011433 docbook-to-man /usr/bin/docbook-to-man <OLD>
1178011412 1178011441 dvbtune /usr/bin/dvbtune <OLD>
1178011412 1178011428 discover1 /sbin/discover <OLD>
1178011412 1178011552 aumix /usr/bin/aumix <OLD>
1178011401 1178011402 audacity /usr/bin/audacity <OLD>
1178011380 1178011381 dsniff /usr/sbin/dsniff <OLD>
1178010287 1178010316 swig /usr/bin/swig-1.3 <OLD>
1178010287 1178010294 vim-full /usr/bin/vim.full <OLD>
1178010287 1178010318 swig-examples /usr/share/doc/swig-examples/xml/example_xml.h <OLD>
1178010287 1178010323 wireshark /usr/bin/wireshark <OLD>
1178010287 1178010324 wireshark-common /usr/bin/editcap <OLD>
1178010287 1178010308 acpitool /usr/bin/acpitool <OLD>
1178010287 1178010304 telnet /usr/bin/telnet.netkit <OLD>
1178010287 1178010309 graphviz /usr/bin/neato <OLD>
1178010287 1178010300 vim-common /usr/bin/helpztags <OLD>
1178010287 1178010304 acpi /usr/bin/acpi <OLD>
1178010287 1178010313 postfix /usr/bin/mailq <OLD>
1178010287 1178010321 unison /usr/bin/unison-latest-stable <OLD>
1178010287 1178010326 xsltproc /usr/bin/xsltproc <OLD>
1178010287 1178010289 xtrans-dev /usr/include/X11/Xtrans/Xtransint.h <OLD>
1178010287 1178010327 nmap /usr/bin/nmap <OLD>
1178010287 1178010322 unison2.9.1 /usr/bin/unison-2.9.1 <OLD>
1178010287 1178010321 timidity /usr/bin/timidity <OLD>
1178010287 1178010293 vim-tiny /usr/bin/vim.tiny <OLD>
1178010287 1178010326 xterm /usr/bin/resize <OLD>
1178010287 1178010297 vim /usr/bin/vim.basic <OLD>
1178010287 1178010315 sqlite3 /usr/bin/sqlite3 <OLD>
1178010287 1178010299 vim-runtime /usr/bin/vimtutor <OLD>
1178010287 1178010310 offlineimap /usr/bin/offlineimap <OLD>
1178010287 1178010307 acpid /usr/sbin/acpid <OLD>
1178010287 1178010291 netcat /bin/netcat <OLD>
1178010287 1178010323 wammu /usr/bin/wammu <OLD>
1178010287 1178010292 sysklogd /sbin/syslogd <OLD>
1178010285 1178010286 gzip /bin/uncompress <OLD>
1177924535 1177924564 openoffice.org-calc /usr/bin/oocalc <OLD>
1177924535 1177924564 openoffice.org-math /usr/bin/oomath <OLD>
1177924535 1177924564 openoffice.org-writer /usr/bin/oowriter <OLD>
1177924535 1177924564 openoffice.org-base /usr/bin/oobase <OLD>
1177924535 1177924564 openoffice.org-impress /usr/bin/ooimpress <OLD>
1177924535 1177924564 openoffice.org-common /usr/bin/soffice <OLD>
1177924535 1177924564 openoffice.org-draw /usr/bin/oodraw <OLD>
1177884980 1177885000 scalpel /usr/bin/scalpel <OLD>
1177884980 1177885000 magicrescue /usr/bin/magicsort <OLD>
1177884980 1177884998 dosfstools /sbin/mkfs.vfat <OLD>
1177689577 1177689592 kismet /usr/bin/kismet_drone <OLD>
1177689577 1177689594 tomatoes /usr/games/tomatoes <OLD>
1177689577 1177689593 patchutils /usr/bin/lsdiff <OLD>
1177689577 1177689596 youtube-dl /usr/bin/youtube-dl <OLD>
1177537338 1166190405 mawk /usr/bin/mawk <OLD>
1177537338 1172691910 coreutils /usr/bin/sort <OLD>
1177537187 1166527002 dlocate /usr/bin/dlocate <OLD>
1177537187 1166980508 perl-base /usr/share/perl/5.8.8/bytes.pm <OLD>
1177537187 1166980507 perl /usr/lib/perl/5.8.8/Encode/Config.pm <OLD>
1177537187 1166190366 liblocale-gettext-perl /usr/lib/perl5/Locale/gettext.pm <OLD>
1177537186 1166980508 perl-suid /usr/bin/suidperl <OLD>
1177537170 1166190402 less /usr/bin/lessfile <OLD>
1177537088 1173474006 openssh-client /usr/bin/slogin <OLD>
1177536554 1173000156 epiphany-browser /usr/bin/epiphany-browser <OLD>
1177536440 1177159756 metacafe-dl /usr/bin/metacafe-dl <OLD>
1177536393 1171977084 liferea /usr/bin/liferea-bin <OLD>
1177526970 1173697161 acpi-support /usr/bin/acpi_fakekey <OLD>
1177525862 1175633735 xscreensaver /usr/bin/xscreensaver-command <OLD>
1177525861 1173000087 bsdutils /usr/bin/logger <OLD>
1177525860 1170084281 alsa-utils /usr/sbin/alsactl <OLD>
1177525860 1166190402 console-tools /usr/bin/chvt <OLD>
1177525860 1170794023 sysv-rc /usr/sbin/invoke-rc.d <OLD>
1177525860 1174317435 guessnet /usr/sbin/guessnet-ifupdown <OLD>
1177503973 1166980505 perl-modules /usr/share/perl/5.8.8/File/Copy.pm <OLD>
1177503973 1166372777 svk /usr/share/perl5/SVK/Editor/Delay.pm <OLD>
1177503971 1166372774 libsvn-perl /usr/lib/perl5/SVN/Core.pm <OLD>
1177503971 1166372773 libclass-autouse-perl /usr/share/perl5/Class/Autouse.pm <OLD>
1177503971 1166372775 liburi-perl /usr/share/perl5/URI/Escape.pm <OLD>
1177503971 1166372773 libperlio-via-dynamic-perl /usr/share/perl5/PerlIO/via/dynamic.pm <OLD>
1177503971 1166372774 libperlio-via-symlink-perl /usr/share/perl5/PerlIO/via/symlink.pm <OLD>
1177503971 1166372774 libperlio-eol-perl /usr/lib/perl5/PerlIO/eol.pm <OLD>
1177503971 1166372774 libsvn-simple-perl /usr/share/perl5/SVN/Simple/Edit.pm <OLD>
1177503971 1166372775 libyaml-perl /usr/share/perl5/YAML/Loader/Base.pm <OLD>
1177503969 1166372774 libregexp-shellish-perl /usr/share/perl5/Regexp/Shellish.pm <OLD>
1177503824 1166372775 libterm-readkey-perl /usr/lib/perl5/Term/ReadKey.pm <OLD>
1177503775 1166372773 libfile-type-perl /usr/share/perl5/File/Type.pm <OLD>
1177502279 1174946957 gnupg /usr/bin/gpg <OLD>
1177502119 1174946957 gpgv /usr/bin/gpgv <OLD>
1177502117 1174946955 aptitude /usr/bin/aptitude <OLD>
1177502114 1172691934 apt /usr/bin/apt-key <OLD>
1177502023 1166190401 groff-base /usr/bin/nroff <OLD>
1177501942 1166190405 wget /usr/bin/wget <OLD>
1177498403 1166190613 laptop-mode-tools /usr/sbin/laptop_mode <OLD>
1177497857 1170084280 w3m /usr/bin/w3m <OLD>
1177493293 1166190401 mime-support /usr/bin/print <OLD>
1177489700 1175126570 udev /usr/bin/udevinfo <OLD>
1177454644 1177159754 tasks /usr/bin/tasks <OLD>
1177454361 1171415966 imagemagick /usr/bin/display <OLD>
1177436167 1166190401 procps /usr/bin/top <OLD>
1177409235 1167739438 lbdb /usr/bin/lbdbq <OLD>
1177408907 1169982592 evince /usr/bin/evince <OLD>
1177408326 1166190407 traceroute /usr/bin/traceroute.lbl <OLD>
1177407856 1166190408 unzip /usr/bin/zipinfo <OLD>
1177354768 1175443118 azureus /usr/bin/azureus <OLD>
1177349852 1169982582 dict /usr/bin/dict <OLD>
1177346933 1166372777 subversion /usr/bin/svn <OLD>
1177345009 1166190409 grep /usr/bin/rgrep <OLD>
1177343013 1166190413 libtext-wrapi18n-perl /usr/share/perl5/Text/WrapI18N.pm <OLD>
1177343013 1166190366 libtext-charwidth-perl /usr/lib/perl5/Text/CharWidth.pm <OLD>
1177343013 1166190366 libtext-iconv-perl /usr/lib/perl5/Text/Iconv.pm <OLD>
1177343010 1172691933 apt-utils /usr/bin/apt-extracttemplates <OLD>
1177338778 1167557339 menu /usr/sbin/install-menu <OLD>
1177338739 1177338759 k3b /usr/bin/k3b <OLD>
1177338733 1166190399 xfonts-utils /usr/bin/mkfontscale <OLD>
1177338731 1171541599 defoma /usr/bin/defoma-font <OLD>
1177338731 1173127622 fontconfig /usr/bin/fc-cache <OLD>
1177338697 1174593895 update-inetd /usr/sbin/update-inetd <OLD>
1177338601 1173553214 passwd /usr/sbin/groupdel <OLD>
1177338601 1170084279 adduser /usr/sbin/delgroup <OLD>
1177338597 1169982630 cron /usr/bin/crontab <OLD>
1177337194 1166544993 qalculate-gtk /usr/bin/qalculate-gtk <OLD>
1177324149 1175768481 ekiga /usr/bin/ekiga <OLD>
1177323796 1166190406 lsof /usr/bin/lsof <OLD>
1177323316 1166190401 pciutils /bin/lspci <OLD>
1177317323 1166190407 gs-esp /usr/bin/gs-esp <OLD>
1177278694 1166493256 buffy /usr/bin/buffy <OLD>
1177264323 1177171053 dosbox /usr/bin/dosbox <OLD>
1177262780 1174946965 iceweasel /usr/bin/iceweasel <OLD>
1177261570 1166492130 pv /usr/bin/pv <OLD>
1177258837 1166527580 gqview /usr/bin/gqview <OLD>
1177258552 1175633862 xscreensaver-gl /usr/bin/xscreensaver-gl-helper <OLD>
1177258530 1166526991 compiz-core /usr/bin/compiz.real <OLD>
1177258530 1166526991 compiz-gtk /usr/bin/gtk-window-decorator <OLD>
1177258529 1166190406 xserver-xorg-input-synaptics /usr/bin/synclient <OLD>
1177258528 1166980531 gsynaptics /usr/bin/gsynaptics-init <OLD>
1177258527 1169039173 cpp-4.1 /usr/bin/x86_64-linux-gnu-cpp-4.1 <OLD>
1177258527 1166526991 mesa-utils /usr/bin/glxinfo <OLD>
1177258527 1169039173 cpp /usr/bin/cpp <OLD>
1177258527 1166493252 bluez-gnome /usr/bin/bluetooth-applet <OLD>
1177258526 1173000162 gnome-panel /usr/bin/gnome-panel <OLD>
1177258526 1173805976 nautilus /usr/bin/nautilus <OLD>
1177258525 1170084317 vino /usr/bin/vino-session <OLD>
1177258523 1173000161 gnome-control-center /usr/bin/gnome-settings-daemon <OLD>
1177258523 1166980517 gnome-keyring /usr/bin/gnome-keyring-daemon <OLD>
1177258518 1166190401 dbus /usr/bin/dbus-launch <OLD>
1177258518 1168076532 scim /usr/bin/scim <OLD>
1177258517 1166190402 xutils /usr/bin/sessreg <OLD>
1177258490 1175426296 apache2.2-common /usr/sbin/apache2ctl <OLD>
1177258488 1166190613 anacron /usr/sbin/anacron <OLD>
1177258488 1166190615 at /usr/sbin/atd <OLD>
1177258488 1175866318 apache2-mpm-prefork /usr/sbin/apache2 <OLD>
1177258487 1166493249 bluez-utils /usr/sbin/sdpd <OLD>
1177258485 1175768456 xserver-xorg-core /usr/bin/Xorg <OLD>
1177258482 1174946960 openbsd-inetd /usr/sbin/inetd <OLD>
1177258482 1166190615 lpr /usr/sbin/lpd <OLD>
1177258480 1169982583 dictd /usr/sbin/dictd <OLD>
1177258471 1170794026 cupsys /usr/sbin/cupsd <OLD>
1177258471 1166190411 cpufrequtils /usr/bin/cpufreq-set <OLD>
1177258470 1174389114 postgresql-client-7.4 /usr/lib/postgresql/7.4/bin/psql <OLD>
1177258464 1174389115 postgresql-7.4 /usr/lib/postgresql/7.4/bin/postmaster <OLD>
1177258460 1166190613 vbetool /usr/sbin/vbetool <OLD>
1177258458 1170877544 schroot /usr/bin/schroot <OLD>
1177258458 1173000091 util-linux /usr/bin/setterm <OLD>
1177256339 1177256363 gcom /usr/bin/sigmon <OLD>
1177220593 1166190404 procmail /usr/bin/procmail <OLD>
1177220578 1173473991 e2fsprogs /usr/bin/lsattr <OLD>
1177220515 1173000123 tcpd /usr/sbin/tcpd <OLD>
1177220474 1166190615 logrotate /usr/sbin/logrotate <OLD>
1177220149 1176889700 faubackup /usr/sbin/faubackup <OLD>
1177220121 1166190366 libapt-pkg-perl /usr/lib/perl5/AptPkg.pm <OLD>
1177220121 1166493229 apt-show-versions /usr/bin/apt-show-versions <OLD>
1177174821 1175720153 kdelibs4c2a /usr/bin/dcopserver_shutdown <OLD>
1177172601 1175633687 konqueror /usr/bin/konqueror <OLD>
1177171031 1177171053 libsdl-sound1.2 /usr/bin/playsound <OLD>
1177168342 1177159756 pangzero /usr/games/pangzero <OLD>
1177168314 1177159750 gt5 /usr/bin/gt5 <OLD>
1177168292 1172787014 lynx /usr/bin/lynx.stable <OLD>
1177168077 1177159749 gaia /usr/bin/gaia <OLD>
1177166731 1177159749 freedroidrpg /usr/games/freedroidRPG <OLD>
1177166619 1177159719 balder2d /usr/games/balder2d <OLD>
1177159695 1177159754 screenkast /usr/lib/libisdvncauth.a <OLD>
1177159695 1177159755 wfo /usr/bin/wfo <OLD>
1177159695 1177159751 isdexport /usr/bin/isdexport <OLD>
1177159695 1177159719 cryopid /usr/bin/freeze <OLD>
1177149141 1166190411 xdiskusage /usr/bin/xdiskusage <OLD>
1177068294 1166541760 driftnet /usr/bin/driftnet <OLD>
1177067033 1173697184 tcpdump /usr/sbin/tcpdump <OLD>
1177063016 1173553213 whiptail /usr/bin/whiptail <OLD>
1177060535 1170084291 gnome-system-tools /usr/bin/network-admin <OLD>
1177060268 1168942055 gnome-cups-manager /usr/bin/gnome-cups-manager <OLD>
1177057911 1169039178 g++-4.1 /usr/bin/x86_64-linux-gnu-g++-4.1 <OLD>
1177057911 1169039178 gcc-4.1 /usr/bin/x86_64-linux-gnu-gcc-4.1 <OLD>
1177057911 1169039178 gcc /usr/bin/gcc <OLD>
1177057911 1169039178 g++ /usr/bin/g++ <OLD>
1177057909 1169039179 libstdc++6-4.1-dev /usr/include/c++/4.1.2/x86_64-linux-gnu/bits/gthr-default.h <OLD>
1177057909 1167557354 libtut-dev /usr/include/tut_reporter.h <OLD>
1177057908 1171541560 linux-kernel-headers /usr/include/linux/limits.h <OLD>
1177057891 1166527570 doxygen /usr/bin/doxygen <OLD>
1177057884 1177057756 libxml++2.6-dev /usr/include/libxml++-2.6/libxml++/noncopyable.h <OLD>
1177057830 1166526982 pkg-config /usr/bin/pkg-config <OLD>
1177057829 1169039177 gfortran-4.1 /usr/bin/x86_64-linux-gnu-gfortran-4.1 <OLD>
1177057829 1169039177 gfortran /usr/bin/gfortran <OLD>
1177057829 1169039177 libgfortran1-dev /usr/lib/libgfortranbegin.a <OLD>
1177056234 1177056236 adept-installer /usr/bin/adept_installer <OLD>
1177056234 1177056235 adept-manager /usr/bin/adept_manager <OLD>
1177056234 1177056236 adept-notifier /usr/bin/adept_notifier <OLD>
1177056234 1177056236 adept-updater /usr/bin/adept_updater <OLD>
1177055863 1177055753 synaptic /usr/sbin/synaptic <OLD>
1177055757 1171977196 scrollkeeper /usr/bin/scrollkeeper-config <OLD>
1177053904 1166190407 gimp /usr/bin/gimp <OLD>
1177053791 1166542134 an /usr/games/an <OLD>
1177053745 1166545003 sl /usr/bin/sl <OLD>
1177053465 1177053414 xjokes /usr/games/yasiti <OLD>
1177048429 1166542775 pwgen /usr/bin/pwgen <OLD>
1177009159 1166491974 bash /usr/bin/clear_console <OLD>
1176987113 1168510531 ocaml-base-nox /usr/bin/ocamlrun <OLD>
1176987113 1166493270 polygen /usr/bin/polygen <OLD>
1176987113 1166493278 polygen-data /usr/bin/polyfind <OLD>
1176986681 1172076603 byzanz /usr/bin/byzanz-record <OLD>
1176986340 1173870371 gnome-utils /usr/bin/gnome-panel-screenshot <OLD>
1176985997 1166541760 vcdimager /usr/bin/vcdxrip <OLD>
1176985121 1172822391 metacity /usr/bin/metacity <OLD>
1176978320 1166544993 qalc /usr/bin/qalc <OLD>
1176969527 1166190405 pmount /usr/bin/pumount <OLD>
1176969171 1170794019 sysvinit-utils /usr/bin/mesg <OLD>
1176928025 1166372773 libio-digest-perl /usr/share/perl5/IO/Digest.pm <OLD>
1176893896 1166190401 vlock /usr/bin/vlock <OLD>
1176893459 1166190404 zip /usr/bin/zip <OLD>
1176886834 1166190403 gdb /usr/bin/gdb <OLD>
1176886361 1166190409 gnome-system-monitor /usr/bin/gnome-system-monitor <OLD>
1176879727 1174236295 cvs /usr/bin/cvs <OLD>
1176838154 1166526994 dctrl-tools /usr/bin/grep-aptavail <OLD>
1176833972 1173474025 yelp /usr/bin/gnome-help <OLD>
1176814275 1166493281 bogosort /usr/bin/bogosort <OLD>
1176813444 1176208146 filters /usr/games/chef <OLD>
1176813444 1166526993 cowsay /usr/bin/cowthink <OLD>
1176810639 1169026305 qgis /usr/bin/qgis <OLD>
1176804771 1176804745 vigor /usr/bin/vigor <OLD>
1176793976 1168364125 bsdmainutils /usr/bin/col <OLD>
1176726238 1173553208 login /usr/bin/sg <OLD>
1176669692 1166190411 gucharmap /usr/bin/charmap <OLD>
1176564336 1174236322 libgnomevfs2-bin /usr/bin/gnomevfs-copy <OLD>
1176563873 1174389116 postgresql-contrib-7.4 /usr/lib/postgresql/7.4/bin/pg_autovacuum <OLD>
1176468989 1175699053 msat /usr/bin/msat <OLD>
1176468157 1166526994 debtags-edit /usr/bin/debtags-edit <OLD>
1176462129 1176462102 qtparted /usr/sbin/qtparted <OLD>
1176455120 1174312930 arping /usr/sbin/arping <OLD>
1176452788 1167120719 dvb-utils /usr/bin/scan <OLD>
1176452788 1170892774 ruby-prof /usr/bin/ruby-prof <OLD>
1176452788 1166545116 libglade2-ruby /usr/bin/ruby-glade-create-template <OLD>
1176452781 1166527235 libjpeg-progs /usr/bin/rdjpgcom <OLD>
1176452781 1166372529 gettext /usr/bin/recode-sr-latin <OLD>
1176452781 1168365726 libgcj-common /usr/bin/rebuild-gcj-db <OLD>
1176452781 1173647376 rar /usr/bin/rar <OLD>
1176452781 1166190407 sharutils /usr/bin/remsync <OLD>
1176452781 1167285834 rcs /usr/bin/rcsmerge <OLD>
1176452781 1173000171 installation-report /usr/bin/report-hw <OLD>
1176452780 1166542752 xapian-tools /usr/bin/quest <OLD>
1176452779 1170011132 pychecker /usr/bin/pychecker <OLD>
1176452779 1166544994 qemuctl /usr/bin/qemuctl <OLD>
1176452779 1168429414 qemu-launcher /usr/bin/qemu-launcher <OLD>
1176452778 1167406185 debian-goodies /usr/bin/popbugs <OLD>
1176452778 1166527249 psutils /usr/bin/psnup <OLD>
1176452778 1166527247 perl-tk /usr/bin/ptked <OLD>
1176452778 1175633785 pinentry-qt /usr/bin/pinentry-qt <OLD>
1176452778 1167289228 po-debconf /usr/bin/podebconf-display-po <OLD>
1176452778 1166190410 pinentry-curses /usr/bin/pinentry-curses <OLD>
1176452778 1166542133 a2ps /usr/bin/psmandup <OLD>
1176452777 1169039187 pcmanfm /usr/bin/pcmanfm <OLD>
1176452777 1166370937 pbuilder /usr/bin/pdebuild <OLD>
1176452777 1166527235 libparse-debianchangelog-perl /usr/bin/parsechangelog <OLD>
1176452777 1169582960 packagesearch /usr/bin/packagesearch <OLD>
1176452777 1166190412 patch /usr/bin/patch <OLD>
1176452777 1166980537 perl-doc /usr/bin/perldoc <OLD>
1176452777 1166190405 libpcre3 /usr/bin/pcretest <OLD>
1176452777 1171977060 libpango1.0-dev /usr/bin/pango-view <OLD>
1176452777 1166544984 libpaper-utils /usr/bin/paperconf <OLD>
1176452776 1166527004 sp /usr/bin/nsgmls <OLD>
1176452776 1173452014 unixodbc-bin /usr/bin/ODBCConfig <OLD>
1176452776 1171415994 gdal-bin /usr/bin/ogrtindex <OLD>
1176452776 1166527245 octave2.1 /usr/bin/octave2.1 <OLD>
1176452776 1166372906 odbcinst1debian1 /usr/bin/odbcinst <OLD>
1176452776 1172692921 liboil0.3 /usr/bin/oil-bugreport <OLD>
1176452776 1166190411 bin86 /usr/bin/objdump86 <OLD>
1176452775 1166190411 ftp /usr/bin/pftp <OLD>
1176452775 1166190402 gettext-base /usr/bin/ngettext <OLD>
1176452775 1173553215 policycoreutils /usr/bin/newrole <OLD>
1176452774 1166527253 mtr /usr/bin/mtr <OLD>
1176452774 1168601034 netcdf-bin /usr/bin/ncdump <OLD>
1176452774 1166190412 mpack /usr/bin/munpack <OLD>
1176452774 1173805996 nautilus-cd-burner /usr/bin/nautilus-cd-burner <OLD>
1176452774 1166190411 mtools /usr/bin/mxtar <OLD>
1176452773 1175768483 grub /usr/bin/mkbimage <OLD>
1176452773 1166493277 mixxx /usr/bin/mixxx <OLD>
1176452773 1166190407 mcrypt /usr/bin/mdecrypt <OLD>
1176452773 1166492130 mmv /usr/bin/mad <OLD>
1176452772 1176450674 lwatch /usr/bin/lwatch <OLD>
1176452772 1166853121 m17n-db /usr/bin/m17n-db <OLD>
1176452772 1166190412 mailx /usr/bin/mailx <OLD>
1176452772 1166190402 libnss-db /usr/bin/makedb <OLD>
1176452772 1171415965 libmagick9-dev /usr/bin/Magick-config <OLD>
1176452772 1170794026 cupsys-client /usr/bin/lpstat <OLD>
1176452772 1166527580 libwww-perl /usr/bin/GET <OLD>
1176452772 1166527244 memtest86+ /usr/bin/make-memtest86+-boot-floppy <OLD>
1176452772 1171415964 libmagick++9-dev /usr/bin/Magick++-config <OLD>
1176452771 1166372775 libtool /usr/bin/libtool <OLD>
1176452771 1166527230 libgnutls-dev /usr/bin/libgnutls-config <OLD>
1176452771 1168444996 link-grammar /usr/bin/link-grammar <OLD>
1176452771 1166527242 linda /usr/bin/linda <OLD>
1176452771 1167557338 libnet1-dev /usr/bin/libnet-config <OLD>
1176452771 1171415976 kdebase-bin /usr/bin/kxkb <OLD>
1176452771 1167896485 libglade2-dev /usr/bin/libglade-convert <OLD>
1176452771 1173870377 ldap-utils /usr/bin/ldapadd <OLD>
1176452770 1175633689 kwin /usr/bin/kwin <OLD>
1176452770 1171415975 kcontrol /usr/bin/krdb <OLD>
1176452770 1171415980 kdebase-kio-plugins /usr/bin/ktrash <OLD>
1176452770 1171415976 kdesktop /usr/bin/kwebdesktop <OLD>
1176452769 1175633742 kpdf /usr/bin/kpdf <OLD>
1176452769 1175633688 konsole /usr/bin/konsole <OLD>
1176452768 1175633741 kghostview /usr/bin/kghostview <OLD>
1176452768 1174603739 python-kid /usr/bin/kid <OLD>
1176452768 1175633686 kfind /usr/bin/kfind <OLD>
1176452768 1172692925 kino /usr/bin/kino <OLD>
1176452768 1171415974 kicker /usr/bin/kicker <OLD>
1176452768 1175633762 kdict /usr/bin/kdict <OLD>
1176452767 1169371501 console-common /usr/bin/kbd-config <OLD>
1176452767 1167188509 kaffeine /usr/bin/kaffeine <OLD>
1176452767 1169667653 kcachegrind /usr/bin/kcachegrind <OLD>
1176452766 1166527203 inkscape /usr/bin/inkview <OLD>
1176452766 1173553668 irssi /usr/bin/irssi <OLD>
1176452766 1166493272 jackd /usr/bin/jack_connect <OLD>
1176452766 1168510530 im-switch /usr/bin/im-switch <OLD>
1176452766 1166372906 unixodbc /usr/bin/iusql <OLD>
1176452766 1169982581 autoconf /usr/bin/ifnames <OLD>
1176452765 1166544983 libgstreamer0.8-0 /usr/bin/gst-register-0.8 <OLD>
1176452765 1169039183 gij /usr/bin/grmiregistry <OLD>
1176452765 1169026304 grass /usr/bin/grass <OLD>
1176452765 1175426291 apache2-utils /usr/bin/htpasswd <OLD>
1176452765 1168522526 help2man /usr/bin/help2man <OLD>
1176452765 1166541751 hanzim /usr/bin/hanzim <OLD>
1176452765 1169039183 gij-4.1 /usr/bin/grmiregistry-4.1 <OLD>
1176452765 1167557334 hdf5-tools /usr/bin/h5debug <OLD>
1176452765 1166372529 html2text /usr/bin/html2text <OLD>
1176452765 1166527581 gromit /usr/bin/gromit <OLD>
1176452765 1167896567 gnome-media /usr/bin/gstreamer-properties <OLD>
1176452764 1174287091 gobby /usr/bin/gobby <OLD>
1176452764 1166545029 gnuplot-nox /usr/bin/gnuplot <OLD>
1176452764 1166372952 gperf /usr/bin/gperf <OLD>
1176452763 1166527580 glademm /usr/bin/glademm-embed <OLD>
1176452763 1166190406 gnome-nettool /usr/bin/gnome-nettool <OLD>
1176452763 1173697180 git-core /usr/bin/git-pack-refs <OLD>
1176452763 1167557320 glade-gnome /usr/bin/glade-2 <OLD>
1176452763 1170283746 gmt /usr/bin/GMT <OLD>
1176452763 1172692908 gnome-about /usr/bin/gnome-about <OLD>
1176452763 1166190408 gnome-keyring-manager /usr/bin/gnome-keyring-manager <OLD>
1176452763 1172692910 gnome-menus /usr/bin/gnome-menu-spec-test <OLD>
1176452762 1173474008 libgtk2.0-dev /usr/bin/gdk-pixbuf-csource <OLD>
1176452762 1169252735 libgeos-dev /usr/bin/geos-config <OLD>
1176452761 1166853121 libfribidi0 /usr/bin/fribidi <OLD>
1176452761 1166190410 gcalctool /usr/bin/gnome-calculator <OLD>
1176452761 1175126572 ffmpeg /usr/bin/ffplay <OLD>
1176452761 1171415993 libgdal1-1.3.2-dev /usr/bin/gdal-config <OLD>
1176452761 1166190407 gconf-editor /usr/bin/gconf-editor <OLD>
1176452761 1171977059 libgda2-bin /usr/bin/gda-test <OLD>
1176452760 1167197446 ffmpeg2theora /usr/bin/ffmpeg2theora <OLD>
1176452760 1168883513 exiftran /usr/bin/exiftran <OLD>
1176452760 1174638054 evolution /usr/bin/evolution <OLD>
1176452760 1173697172 eog /usr/bin/eog <OLD>
1176452760 1169987090 libenchant1c2a /usr/bin/enchant <OLD>
1176452760 1166527569 festival /usr/bin/festival_client <OLD>
1176452760 1166527229 libesd0-dev /usr/bin/esd-config <OLD>
1176452760 1168883513 exif /usr/bin/exif <OLD>
1176452760 1166190411 esound /usr/bin/esd <OLD>
1176452759 1167185763 dvbsnoop /usr/bin/dvbsnoop <OLD>
1176452759 1166527023 emma /usr/bin/Emma <OLD>
1176452758 1166527001 diffstat /usr/bin/diffstat <OLD>
1176452758 1169982582 dictzip /usr/bin/dictzcat <OLD>
1176452758 1170968117 dialog /usr/bin/dialog <OLD>
1176452758 1166541750 dh-buildinfo /usr/bin/dh_buildinfo <OLD>
1176452758 1166526998 dia-gnome /usr/bin/dia-gnome <OLD>
1176452758 1168364125 dselect /usr/bin/dselect <OLD>
1176452758 1166526998 dia /usr/bin/dia-normal <OLD>
1176452758 1166190405 liblockfile1 /usr/bin/dotlockfile <OLD>
1176452757 1166526993 dadadodo /usr/bin/dadadodo <OLD>
1176452757 1166190408 dc /usr/bin/dc <OLD>
1176452757 1166526994 dbus-1-utils /usr/bin/dbus-monitor <OLD>
1176452757 1166526994 debtags /usr/bin/debtags <OLD>
1176452757 1166526993 darcs /usr/bin/darcs <OLD>
1176452757 1166541745 libdbi-perl /usr/bin/dbiproxy <OLD>
1176452757 1166526993 darcs-buildpackage /usr/bin/dbp-markdeb <OLD>
1176452756 1166526993 curl /usr/bin/curl <OLD>
1176452756 1166190406 libcroco3 /usr/bin/csslint-0.6 <OLD>
1176452756 1173474001 comerr-dev /usr/bin/compile_et <OLD>
1176452756 1174593896 cmake /usr/bin/ctest <OLD>
1176452756 1166526992 conglomerate /usr/bin/conglomerate <OLD>
1176452756 1166526992 connect-proxy /usr/bin/connect <OLD>
1176452755 1166370937 cdebootstrap /usr/bin/cdebootstrap <OLD>
1176452755 1166493253 btscanner /usr/bin/btscanner <OLD>
1176452755 1166493268 cadaver /usr/bin/cadaver <OLD>
1176452755 1166194139 bsh /usr/bin/bsh <OLD>
1176452755 1173647366 python-cheetah /usr/bin/cheetah <OLD>
1176452755 1168682724 bug-buddy /usr/bin/bug-buddy <OLD>
1176452755 1166493270 cappuccino /usr/bin/cappuccino <OLD>
1176452754 1166541750 automake /usr/bin/automake-1.10 <OLD>
1176452754 1166527227 libaudiofile-dev /usr/bin/audiofile-config <OLD>
1176452754 1166190410 bc /usr/bin/bc <OLD>
1176452754 1166493247 autotrace /usr/bin/autotrace <OLD>
1176452754 1166190402 bison /usr/bin/bison <OLD>
1176452754 1166527209 libarts1c2a /usr/bin/artswrapper <OLD>
1176452754 1171620539 boa-constructor /usr/bin/boa-constructor <OLD>
1176452753 1166492351 libadns1-bin /usr/bin/adnsresfilter <OLD>
1176452753 1166493228 apt-rdepends /usr/bin/apt-rdepends <OLD>
1176452753 1166527226 libakode2 /usr/bin/akodeplay <OLD>
1176452753 1166493217 apt-file /usr/bin/apt-file <OLD>
1176381709 1167557335 libhdf5-serial-dev /usr/include/H5Ppublic.h <OLD>
1176381708 1168601033 netcdfg-dev /usr/include/ncvalues.h <OLD>
1176240161 1172331617 linux-image-2.6.20.1enrico /boot/System.map-2.6.20.1enrico <OLD>
1176187919 1173870388 totem-xine /usr/bin/totem-video-thumbnailer <OLD>
1176107897 1175877396 toilet /usr/bin/figlet-toilet <OLD>
1175968220 1169991072 tftp /usr/bin/tftp <OLD>
1175939042 1166372774 libpod-simple-perl /usr/share/perl5/Pod/Simple/BlackBox.pm <OLD>
1175939042 1166372774 libpod-escapes-perl /usr/share/perl5/Pod/Escapes.pm <OLD>
1175936595 1171977056 klibc-utils /usr/lib/klibc/bin/kill <OLD>
1175768425 1175768448 libx11-dev /usr/lib/libX11.a <OLD>
1175720113 1175720149 kdelibs-data /usr/share/apps/dcopidlng/kalyptusCxxToDcopIDL.pm <OLD>
1175701618 1175699053 libmsat-dev /usr/include/msat/Image.h <OLD>
1175701618 1166373018 libpopt-dev /usr/include/popt.h <OLD>
1175699060 1175699053 libhrit-dev /usr/include/hrit/MSG_machine.h <OLD>
1175699052 1175699052 libgrib-dev /usr/lib/libgrib.a <OLD>
1175633925 1166527580 libxml-parser-perl /usr/lib/perl5/XML/Parser/Expat.pm <OLD>
1175633925 1175633668 libxml-sax-expat-perl /usr/share/perl5/XML/SAX/Expat.pm <OLD>
1175633925 1166527241 libxml-sax-perl /usr/bin/update-perl-sax-parsers <OLD>
1175633925 1166527241 libxml-namespacesupport-perl /usr/share/perl5/XML/NamespaceSupport.pm <OLD>
1175633632 1175633862 xli /usr/bin/xli <OLD>
1175593578 1166603946 libcnf-dev /usr/lib/libcnf.a <OLD>
1175353646 1175353594 libsdl1.2-dev /usr/include/SDL/close_code.h <OLD>
1175353646 1172692918 libglu1-mesa-dev /usr/include/GL/glu.h <OLD>
1175353646 1175353597 libsdl-mixer1.2-dev /usr/include/SDL/SDL_mixer.h <OLD>
1175353646 1175353594 libsdl-image1.2-dev /usr/include/SDL/SDL_image.h <OLD>
1175353646 1172692916 mesa-common-dev /usr/include/GL/glext.h <OLD>
1175353574 1175353595 libvorbis-dev /usr/lib/libvorbisfile.a <OLD>
1175353574 1175353592 libogg-dev /usr/include/ogg/os_types.h <OLD>
1175353574 1175353597 libsmpeg-dev /usr/lib/libsmpeg.a <OLD>
1175212670 1171415989 shared-mime-info /usr/bin/update-mime-database <OLD>
1175163877 1173202538 xchm /usr/bin/xchm <OLD>
1175005453 1166372906 unixodbc-dev /usr/include/sqlucode.h <OLD>
1174947050 1167109785 liblogfile-rotate-perl /usr/share/perl5/Logfile/Rotate.pm <OLD>
1174947050 1167109785 libconfhelper-perl /usr/share/perl5/ConfHelper.pm <OLD>
1174639562 1166372530 libcompress-zlib-perl /usr/lib/perl5/Compress/Zlib.pm <OLD>
1174637980 1166372773 libclass-accessor-perl /usr/share/perl5/Class/Accessor.pm <OLD>
1174488555 1166190411 strace /usr/bin/strace <OLD>
1174387948 1174388018 sound-juicer /usr/bin/sound-juicer <OLD>
1174316026 1167557339 libpcap0.7-dev /usr/include/net/bpf.h <OLD>
1174314249 1171415962 libsqlite0-dev /usr/include/sqlite.h <OLD>
1174314249 1173127613 libfontconfig1-dev /usr/include/fontconfig/fcfreetype.h <OLD>
1174314249 1166190620 python-numeric /usr/include/python2.4/Numeric/ufuncobject.h <OLD>
1174314249 1166527233 libsigc++-2.0-dev /usr/include/sigc++-2.0/sigc++/sigc++.h <OLD>
1174314249 1174236298 libgnomevfs2-dev /usr/include/gnome-vfs-module-2.0/libgnomevfs/gnome-vfs-pty.h <OLD>
1174314249 1168804322 python-numeric-ext /usr/include/python2.4/Numeric/ranlib.h <OLD>
1174314249 1167557336 liblcms1-dev /usr/include/icc34.h <OLD>
1174314249 1171977032 libexpat1-dev /usr/include/expat_config.h <OLD>
1174314249 1167557336 libjasper-1.701-dev /usr/include/jasper/jas_malloc.h <OLD>
1174314249 1170794018 sysvinit /usr/include/initreq.h <OLD>
1174314249 1166372774 libltdl3-dev /usr/include/ltdl.h <OLD>
1174314249 1166526982 x11proto-xinerama-dev /usr/include/X11/extensions/panoramiXext.h <OLD>
1174314249 1166527229 libxml2-dev /usr/include/libxml2/libxml/globals.h <OLD>
1174314249 1169582337 libmng-dev /usr/include/libmng.h <OLD>
1174314249 1166980514 libgnome-keyring-dev /usr/include/gnome-keyring-1/gnome-keyring.h <OLD>
1174314249 1166542751 libxapian-dev /usr/include/xapian/valueiterator.h <OLD>
1174314249 1168076530 libtiff4-dev /usr/include/tiffvers.h <OLD>
1174314249 1166527234 libjpeg62-dev /usr/include/jpegint.h <OLD>
1174314249 1166526980 x11proto-xext-dev /usr/include/X11/extensions/dpms.h <OLD>
1174314249 1172691933 libapt-pkg-dev /usr/include/apt-pkg/extracttar.h <OLD>
1174314249 1166526980 x11proto-kb-dev /usr/include/X11/extensions/XKBstr.h <OLD>
1174314249 1166493207 python-pygame /usr/include/python2.4/pygame/font.h <OLD>
1174314249 1166527228 libgnomecanvas2-dev /usr/include/libgnomecanvas-2.0/libgnomecanvas/gnome-canvas-polygon.h <OLD>
1174314249 1166527229 liblzo-dev /usr/include/lzo2a.h <OLD>
1174314249 1166527227 libdbus-1-dev /usr/include/dbus-1.0/dbus/dbus-pending-call.h <OLD>
1174314249 1168445049 liblink-grammar4-dev /usr/include/link-grammar/link-features.h <OLD>
1174314249 1166527228 libcairo2-dev /usr/include/cairo/cairo.h <OLD>
1174314249 1167557334 libbz2-dev /usr/include/bzlib.h <OLD>
1174314249 1169371528 cryptsetup /usr/include/libcryptsetup.h <OLD>
1174314249 1166526981 x11proto-render-dev /usr/include/X11/extensions/render.h <OLD>
1174314249 1172692915 libgl1-mesa-dev /usr/include/GL/glx.h <OLD>
1174314249 1166526981 x11proto-fixes-dev /usr/include/X11/extensions/xfixeswire.h <OLD>
1174314249 1171415983 libpq-dev /usr/include/postgresql/mb/pg_wchar.h <OLD>
1174296996 1170426154 python-scipy /usr/share/pycentral/python-scipy/site-packages/scipy/weave/blitz/blitz/bench.h <OLD>
1173870868 1166527235 libmailtools-perl /usr/share/perl5/Mail/Mailer/sendmail.pm <OLD>
1173870819 1166544982 libclass-methodmaker-perl /usr/lib/perl5/Class/MethodMaker.pm <OLD>
1173870819 1172192955 libio-stringy-perl /usr/share/perl5/IO/WrapTie.pm <OLD>
1173870819 1166544983 libgnupg-interface-perl /usr/share/perl5/GnuPG/Options.pm <OLD>
1173870818 1166545119 libtext-template-perl /usr/share/perl5/Text/Template.pm <OLD>
1173870395 1173870361 ca-certificates /usr/sbin/update-ca-certificates <OLD>
1173866940 1166493253 bsdgames /usr/games/morse <OLD>
1173697155 1173697160 radeontool /usr/sbin/radeontool <OLD>
1173553227 1166190615 lvm-common /usr/sbin/lvm-bin-scan <OLD>
1173481316 1173474010 libgtk2.0-bin /usr/sbin/update-gdkpixbuf-loaders <OLD>
1173474004 1173474045 xvnc4viewer /usr/bin/xvnc4viewer <OLD>
1173374741 1173374759 libpg-perl /usr/share/perl5/Pg.pm <OLD>
1173374741 1173374759 libdbd-pg-perl /usr/lib/perl5/DBD/Pg.pm <OLD>
1173215667 1173044869 rrootage /usr/games/rrootage <OLD>
1173032743 1171415983 perlmagick /usr/lib/perl5/Image/Magick.pm <OLD>
1173000088 1173000089 mount /sbin/swapoff <OLD>
1172968089 1172967534 bygfoot /usr/games/bygfoot <OLD>
1172822444 1166190613 sgml-base /usr/sbin/install-sgmlcatalog <OLD>
1172692896 1172692912 hdparm /sbin/hdparm <OLD>
1172326759 1168621101 source-highlight /usr/bin/source-highlight <OLD>
1172326712 1172327116 ant /usr/bin/ant <OLD>
1172326712 1172326731 java-common /usr/sbin/update-java-alternatives <OLD>
1172192928 1172192954 portmap /sbin/pmap_set <OLD>
1171977263 1171977062 libpango1.0-common /usr/sbin/update-pangox-aliases <OLD>
1171977005 1171977213 ipw3945d /sbin/ipw3945d <OLD>
1171977005 1171977051 busybox /bin/busybox <OLD>
1171416038 1171415990 ssl-cert /usr/sbin/make-ssl-cert <OLD>
1170967425 1170084318 xsane /usr/bin/xsane <OLD>
1170892768 1170892769 dash /bin/dash <OLD>
1170877521 1170877544 ceferino /usr/games/ceferinoeditor <OLD>
1170794020 1170794021 initscripts /sbin/fsck.nfs <OLD>
1170637598 1170637641 xdelta /usr/bin/xdelta <OLD>
1170637598 1170637623 gnome-games /usr/games/iagno <OLD>
1169759887 1169667651 angrydd /usr/games/angrydd <OLD>
1169252753 1166527581 tk8.4 /usr/bin/wish8.4 <OLD>
1168896609 1168896624 libimage-base-bundle-perl /usr/share/perl5/Image/Xpm.pm <OLD>
1168608457 1168608460 xmms-shell /usr/bin/xmms-shell <OLD>
1168607980 1168607993 xmms-midi /usr/lib/xmms/Input/libmid.a <OLD>
1168377698 1168377699 libnet-ldap-perl /usr/share/perl5/LWP/Protocol/ldap.pm <OLD>
1168377698 1168377699 libconvert-asn1-perl /usr/share/perl5/Convert/ASN1/_encode.pm <OLD>
1168201952 1166190366 libgtk2-perl /usr/lib/perl5/Gtk2/SimpleMenu.pm <OLD>
1168201952 1168199689 tinyca /usr/bin/tinyca2 <OLD>
1168201951 1166190366 libcairo-perl /usr/lib/perl5/Cairo.pm <OLD>
1167557302 1167557318 glade-common /usr/share/doc/glade-common/examples/editor/acconfig.h <OLD>
1167291089 1167289232 frozen-bubble /usr/share/perl5/fb_stuff.pm <OLD>
1167285834 1167285834 liberror-perl /usr/share/perl5/Error.pm <OLD>
1166980509 1166980543 tesseract-ocr /usr/bin/tesseract <OLD>
1166545113 1166545116 libpango1-ruby /usr/lib/ruby/1.8/x86_64-linux/rbpangoversion.h <OLD>
1166545113 1166545116 libatk1-ruby /usr/lib/ruby/1.8/x86_64-linux/rbatk.h <OLD>
1166545113 1166545115 libglib2-ruby /usr/lib/ruby/1.8/x86_64-linux/rbgobject.h <OLD>
1166545113 1166545116 libgtk2-ruby /usr/lib/ruby/1.8/x86_64-linux/rbgtk.h <OLD>
1166545113 1166545115 libart2-ruby /usr/lib/ruby/1.8/x86_64-linux/rbart.h <OLD>
1166545113 1166545116 libcairo-ruby1.8 /usr/lib/ruby/1.8/x86_64-linux/rb_cairo.h <OLD>
1166544981 1166544990 python-wxglade /usr/bin/wxglade <OLD>
1166544981 1166545007 stow /usr/bin/stow <OLD>
1166544981 1166545008 tzwatch /usr/bin/tzwatch <OLD>
1166544981 1166545008 trickle /usr/bin/trickle <OLD>
1166544981 1166545008 units /usr/bin/units <OLD>
1166544981 1166545007 swaks /usr/bin/swaks <OLD>
1166544981 1166544984 libmd5-perl /usr/share/perl5/MD5.pm <OLD>
1166544981 1166544983 libgtk2-gladexml-perl /usr/lib/perl5/Gtk2/GladeXML.pm <OLD>
1166541744 1166541750 tcl8.3 /usr/bin/tclsh8.3 <OLD>
1166541744 1166541744 libnet-daemon-perl /usr/share/perl5/Net/Daemon.pm <OLD>
1166541744 1166541760 dopewars /usr/games/dopewars <OLD>
1166541744 1166541745 libplrpc-perl /usr/share/perl5/Bundle/PlRPC.pm <OLD>
1166541744 1166541751 tk8.3 /usr/bin/wish8.3 <OLD>
1166527567 1166527570 doxygen-doc /usr/share/doc/doxygen/examples/structcmd.h <OLD>
1166527354 1166527241 libxml-libxml-common-perl /usr/lib/perl5/XML/LibXML/Common.pm <OLD>
1166527354 1166527241 libxml-libxml-perl /usr/lib/perl5/XML/LibXML/Number.pm <OLD>
1166526979 1166526982 libxi-dev /usr/lib/libXi.a <OLD>
1166526979 1166527249 stl-manual /usr/share/doc/stl-manual/html/vector.h <OLD>
1166526979 1166527235 libhtml-format-perl /usr/share/perl5/HTML/FormatPS.pm <OLD>
1166526979 1166527032 libhtml-tagset-perl /usr/share/perl5/HTML/Tagset.pm <OLD>
1166526979 1166527234 libfont-afm-perl /usr/share/perl5/Font/Metrics/Courier.pm <OLD>
1166526979 1166527250 tagcolledit /usr/bin/tagcolledit <OLD>
1166493179 1166493216 libconfig-file-perl /usr/share/perl5/Config/File.pm <OLD>
1166491978 1166491979 libsasl2-2 /usr/lib/sasl2/libsasldb.a <OLD>
1166491978 1166491979 libsasl2-modules /usr/lib/sasl2/liblogin.a <OLD>
1166372771 1166372772 libalgorithm-annotate-perl /usr/share/perl5/Algorithm/Annotate.pm <OLD>
1166372771 1166372773 libio-string-perl /usr/share/perl5/IO/String.pm <OLD>
1166372771 1166372777 subversion-tools /usr/bin/svn_apply_autoprops <OLD>
1166372771 1166372773 libfreezethaw-perl /usr/share/perl5/FreezeThaw.pm <OLD>
1166372771 1166372775 libtext-diff-perl /usr/share/perl5/Text/Diff/Table.pm <OLD>
1166372771 1166372772 libalgorithm-diff-perl /usr/share/perl5/Algorithm/Diff.pm <OLD>
1166372771 1166372777 python-subversion /usr/bin/svnshell <OLD>
1166372771 1166372773 libextutils-autoinstall-perl /usr/share/perl5/ExtUtils/AutoInstall.pm <OLD>
1166372522 1166372530 libmail-sendmail-perl /usr/share/perl5/Mail/Sendmail.pm <OLD>
1166370841 1166370849 resolvconf /sbin/resolvconf <OLD>
1166195126 1166195126 xfsdump /usr/sbin/xfsrestore <OLD>
1166191394 1166191399 dmsetup /sbin/dmsetup <OLD>
1166191159 1166190413 libconfig-inifiles-perl /usr/share/perl5/Config/IniFiles.pm <OLD>
1166190917 1166190542 libgnome2-canvas-perl /usr/share/doc/libgnome2-canvas-perl/examples/canvas-primitives.pm.gz <OLD>
1166190887 1166190615 libpam-runtime /usr/sbin/pam_getenv <OLD>
1166190887 1166190615 libpam-modules /usr/sbin/pam_tally <OLD>
1166190887 1166190615 base-passwd /usr/sbin/update-passwd <OLD>
1166190886 1166190615 libident /usr/sbin/in.identtestd <OLD>
1166190885 1166190615 net-tools /usr/sbin/arp <OLD>
1166190884 1166190366 libgnome2-perl /usr/lib/perl5/Gnome2.pm <OLD>
1166190884 1166190366 libgnome2-vfs-perl /usr/lib/perl5/Gnome2/VFS.pm <OLD>
1166190775 1166190411 type-handling /usr/bin/type-handling <OLD>
1166190775 1166190404 tcl8.4 /usr/bin/tclsh8.4 <OLD>
1166190775 1166190407 language-env /usr/bin/tklanguage <OLD>
1166190775 1166190406 libxml2-utils /usr/bin/xmllint <OLD>
1166190775 1166190399 tcsh /bin/tcsh <OLD>
1166190775 1166190401 time /usr/bin/time <OLD>
1166190775 1166190410 twm /usr/bin/twm <OLD>
1166111683 1166111796 pcmciautils /sbin/lspcmcia <OLD>
1166111683 1166111684 iptables /sbin/iptables-restore <OLD>
1166111669 1166111669 hostname /bin/dnsdomainname <OLD>
1166088950 1166088395 makedev /sbin/MAKEDEV <OLD>
1166088684 1166088872 wireless-tools /sbin/iwconfig <OLD>
1166088684 1166088719 bzip2 /bin/bzcmp <OLD>
1166088684 1166088703 powermgmt-base /usr/bin/on_ac_power <OLD>
1166088409 1166088411 ed /usr/bin/red <OLD>
1166088409 1166088411 ifupdown /sbin/ifup <OLD>
0 0 notification-daemon <NOFILES>
0 0 libslp1 <NOFILES>
0 0 python-rpy <NOFILES>
0 0 libgtksourceview-common <NOFILES>
0 0 compiz-gnome <NOFILES>
0 0 libvte-ruby <NOFILES>
0 0 libgphoto2-2 <NOFILES>
0 0 xserver-xorg-input-kbd <NOFILES>
0 0 libvorbis0a <NOFILES>
0 0 python-gnome2 <NOFILES>
0 0 python-dateutil <NOFILES>
0 0 libvorbisenc2 <NOFILES>
0 0 libgstreamer-plugins0.8-0 <NOFILES>
0 0 libgnome-media0 <NOFILES>
0 0 libxcursor1 <NOFILES>
0 0 libcln4 <NOFILES>
0 0 libsdl1.2debian <NOFILES>
0 0 libscim8c2a <NOFILES>
0 0 xserver-xorg-video-s3 <NOFILES>
0 0 python-sqlite <NOFILES>
0 0 gedit-common <NOFILES>
0 0 libdbus-glib-1-2 <NOFILES>
0 0 python-rpy-doc <NOFILES>
0 0 proj-ps-doc <NOFILES>
0 0 xsane-common <NOFILES>
0 0 libgl1-mesa-dri <NOFILES>
0 0 libx11-6 <NOFILES>
0 0 libwnck18 <NOFILES>
0 0 libxklavier10 <NOFILES>
0 0 sun-java5-jre <NOFILES>
0 0 libtasn1-3 <NOFILES>
0 0 bochsbios <NOFILES>
0 0 xmms-speex <NOFILES>
0 0 svgalibg1 <NOFILES>
0 0 sgml-data <NOFILES>
0 0 libgtkmm-2.4-1c2a <NOFILES>
0 0 libboost-regex1.33.1 <NOFILES>
0 0 texlive-doc-base <NOFILES>
0 0 libedataserverui1.2-6 <NOFILES>
0 0 gcj-4.1-base <NOFILES>
0 0 r-cran-kernsmooth <NOFILES>
0 0 libdballe-bufrex-doc <NOFILES>
0 0 python-gtk2-doc <NOFILES>
0 0 libwmf0.2-7 <NOFILES>
0 0 librsvg2-ruby <NOFILES>
0 0 libgnomecupsui1.0-1c2a <NOFILES>
0 0 proll <NOFILES>
0 0 libgcj7-0 <NOFILES>
0 0 libcfitsio2 <NOFILES>
0 0 xfonts-scalable <NOFILES>
0 0 xserver-xorg <NOFILES>
0 0 libxft2 <NOFILES>
0 0 libmagick++9c2a <NOFILES>
0 0 gnome-media-common <NOFILES>
0 0 libasound2 <NOFILES>
0 0 libnotify1 <NOFILES>
0 0 libcdio6 <NOFILES>
0 0 python-cherrypy <NOFILES>
0 0 libwpd8c2a <NOFILES>
0 0 libdb4.3 <NOFILES>
0 0 libgsf-1-common <NOFILES>
0 0 libxmu6 <NOFILES>
0 0 libnss3-0d <NOFILES>
0 0 libcupsys2 <NOFILES>
0 0 swig-doc <NOFILES>
0 0 debconf-i18n <NOFILES>
0 0 openoffice.org-l10n-en-gb <NOFILES>
0 0 libdballe-msg3 <NOFILES>
0 0 scim-chewing <NOFILES>
0 0 libdevmapper1.02 <NOFILES>
0 0 libfreetype6 <NOFILES>
0 0 texlive-pictures <NOFILES>
0 0 openbox-themes <NOFILES>
0 0 discover1-data <NOFILES>
0 0 libopal-2.2.0 <NOFILES>
0 0 libmagick9 <NOFILES>
0 0 gtk2-engines <NOFILES>
0 0 console-data <NOFILES>
0 0 libxv1 <NOFILES>
0 0 libufsparse <NOFILES>
0 0 libaprutil1 <NOFILES>
0 0 libfltk1.1 <NOFILES>
0 0 libmdbtools <NOFILES>
0 0 libjline-java <NOFILES>
0 0 libchewing3 <NOFILES>
0 0 python-ooolib <NOFILES>
0 0 cups-pdf <NOFILES>
0 0 libmcrypt4 <NOFILES>
0 0 openoffice.org-l10n-it <NOFILES>
0 0 openoffice.org-java-common <NOFILES>
0 0 gstreamer0.10-esd <NOFILES>
0 0 libslang2 <NOFILES>
0 0 docbook-xsl <NOFILES>
0 0 iceweasel-webdeveloper <NOFILES>
0 0 libportaudio0 <NOFILES>
0 0 libpci2 <NOFILES>
0 0 libgdal-doc <NOFILES>
0 0 libreadline-ruby1.8 <NOFILES>
0 0 gnome-applets-data <NOFILES>
0 0 python-syck <NOFILES>
0 0 python-gmenu <NOFILES>
0 0 libgnome32 <NOFILES>
0 0 fftw2 <NOFILES>
0 0 libgnome-window-settings1 <NOFILES>
0 0 libgnomecanvas2-ruby <NOFILES>
0 0 libpango1.0-0 <NOFILES>
0 0 libgeos-c1 <NOFILES>
0 0 libsdl-pango1 <NOFILES>
0 0 tesseract-ocr-data <NOFILES>
0 0 openhackware <NOFILES>
0 0 libnetcdf3 <NOFILES>
0 0 libtotem-plparser1 <NOFILES>
0 0 c++-annotations-txt <NOFILES>
0 0 python-paste <NOFILES>
0 0 xserver-xorg-video-voodoo <NOFILES>
0 0 gcc-3.3-base <NOFILES>
0 0 gimp-resynthesizer <NOFILES>
0 0 gstreamer0.10-ffmpeg <NOFILES>
0 0 tipa <NOFILES>
0 0 python-celementtree <NOFILES>
0 0 xserver-xorg-video-vga <NOFILES>
0 0 libdballepp3 <NOFILES>
0 0 myspell-en-us <NOFILES>
0 0 xserver-xorg-video-cirrus <NOFILES>
0 0 guile-1.6-libs <NOFILES>
0 0 developers-reference <NOFILES>
0 0 libkadm55 <NOFILES>
0 0 metacity-common <NOFILES>
0 0 libxul-common <NOFILES>
0 0 grass-doc <NOFILES>
0 0 python-gtk2 <NOFILES>
0 0 libtool-doc <NOFILES>
0 0 libapache2-mod-php5 <NOFILES>
0 0 libgda2-3 <NOFILES>
0 0 libdb4.4 <NOFILES>
0 0 libflac7 <NOFILES>
0 0 libldap2 <NOFILES>
0 0 libgnomemm1.2-9c2 <NOFILES>
0 0 libsexy2 <NOFILES>
0 0 libvisual-0.4-0 <NOFILES>
0 0 libglib2.0-0 <NOFILES>
0 0 libglu1-mesa <NOFILES>
0 0 libvte4 <NOFILES>
0 0 c++-annotations-latex <NOFILES>
0 0 libgnomesupport0 <NOFILES>
0 0 tomatoes-data <NOFILES>
0 0 compiz-plugins <NOFILES>
0 0 libgpgme11 <NOFILES>
0 0 libmng1 <NOFILES>
0 0 ttf-arphic-ukai <NOFILES>
0 0 libxosd2 <NOFILES>
0 0 python-uno <NOFILES>
0 0 libpaper1 <NOFILES>
0 0 ncurses-base <NOFILES>
0 0 libxul0d <NOFILES>
0 0 python-debian <NOFILES>
0 0 gstreamer0.10-plugins-good <NOFILES>
0 0 libgtksourceview1.0-0 <NOFILES>
0 0 libice6 <NOFILES>
0 0 glibc-doc-reference <NOFILES>
0 0 tzdata <NOFILES>
0 0 libattr1 <NOFILES>
0 0 freepats <NOFILES>
0 0 libgtkspell0 <NOFILES>
0 0 libgdal1-1.3.2 <NOFILES>
0 0 libgail-common <NOFILES>
0 0 gimp-python <NOFILES>
0 0 libgutenprint2 <NOFILES>
0 0 libntfs9 <NOFILES>
0 0 libexchange-storage1.2-1 <NOFILES>
0 0 libnetcdf++3 <NOFILES>
0 0 libdirectfb-0.9-25 <NOFILES>
0 0 libiso9660-4 <NOFILES>
0 0 iceweasel-l10n-it <NOFILES>
0 0 libxtst6 <NOFILES>
0 0 r-cran-sandwich <NOFILES>
0 0 postgresql-contrib <NOFILES>
0 0 libgnutls13 <NOFILES>
0 0 gimp-gap <NOFILES>
0 0 xserver-xorg-video-mga <NOFILES>
0 0 dia-common <NOFILES>
0 0 libxkbfile1 <NOFILES>
0 0 libogdi3.2 <NOFILES>
0 0 gimp-print <NOFILES>
0 0 autoconf-doc <NOFILES>
0 0 libgnomevfs2-common <NOFILES>
0 0 readline-common <NOFILES>
0 0 librsvg2-2 <NOFILES>
0 0 libscrollkeeper0 <NOFILES>
0 0 libotf0 <NOFILES>
0 0 libjasper-1.701-1 <NOFILES>
0 0 libdballe-msg-doc <NOFILES>
0 0 libvorbisfile3 <NOFILES>
0 0 libpoppler0c2-glib <NOFILES>
0 0 ibritish <NOFILES>
0 0 linux-doc-2.6.21 <NOFILES>
0 0 python-ctypes <NOFILES>
0 0 liba52-0.7.4 <NOFILES>
0 0 festvox-suopuhe-common <NOFILES>
0 0 python-webpy <NOFILES>
0 0 python-sip4 <NOFILES>
0 0 libgnomecanvas2-common <NOFILES>
0 0 python-vobject <NOFILES>
0 0 xserver-xorg-video-tseng <NOFILES>
0 0 gnome-mime-data <NOFILES>
0 0 festvox-italp16k <NOFILES>
0 0 libgnomeprint2.2-data <NOFILES>
0 0 toilet-fonts <NOFILES>
0 0 python-numpy-ext <NOFILES>
0 0 librsvg2-common <NOFILES>
0 0 libdm0 <NOFILES>
0 0 libmetacity0 <NOFILES>
0 0 libgnome2-common <NOFILES>
0 0 libdv4 <NOFILES>
0 0 libsmpeg0 <NOFILES>
0 0 libsane <NOFILES>
0 0 xapian-examples <NOFILES>
0 0 libsemanage1 <NOFILES>
0 0 libgnomecups1.0-1 <NOFILES>
0 0 xserver-xorg-video-ati <NOFILES>
0 0 gnome-core <NOFILES>
0 0 libsqliteodbc <NOFILES>
0 0 ant-optional <NOFILES>
0 0 python-flup <NOFILES>
0 0 lvm2 <NOFILES>
0 0 lapack3 <NOFILES>
0 0 libpostproc0d <NOFILES>
0 0 qalculate <NOFILES>
0 0 xserver-xorg-video-rendition <NOFILES>
0 0 freeglut3 <NOFILES>
0 0 libklibc <NOFILES>
0 0 manpages-it <NOFILES>
0 0 libsm6 <NOFILES>
0 0 cpp-4.1-doc <NOFILES>
0 0 libapm1 <NOFILES>
0 0 postfix-doc <NOFILES>
0 0 adept-common <NOFILES>
0 0 libpisock9 <NOFILES>
0 0 libshout3 <NOFILES>
0 0 libsdl1.2debian-alsa <NOFILES>
0 0 python-extractor <NOFILES>
0 0 libsdl-gfx1.2-4 <NOFILES>
0 0 libstdc++5 <NOFILES>
0 0 r-cran-abind <NOFILES>
0 0 libgnomeprintui2.2-common <NOFILES>
0 0 r-cran-rcmdr <NOFILES>
0 0 libt1-5 <NOFILES>
0 0 libglitz-glx1 <NOFILES>
0 0 festvox-itapc16k <NOFILES>
0 0 xorg <NOFILES>
0 0 libbeecrypt6 <NOFILES>
0 0 link-grammar-dictionaries-en <NOFILES>
0 0 libraw1394-8 <NOFILES>
0 0 lesstif2 <NOFILES>
0 0 libtiffxx0c2 <NOFILES>
0 0 libvformat1 <NOFILES>
0 0 python-crypto <NOFILES>
0 0 libchewing3-data <NOFILES>
0 0 gcc-3.4-base <NOFILES>
0 0 libgstreamer-plugins-base0.10-0 <NOFILES>
0 0 python-bluez <NOFILES>
0 0 evolution-data-server <NOFILES>
0 0 python-cairo <NOFILES>
0 0 base-files <NOFILES>
0 0 sqlite3-doc <NOFILES>
0 0 gnome-user-guide <NOFILES>
0 0 libkrb53 <NOFILES>
0 0 gnome-panel-data <NOFILES>
0 0 libhal1 <NOFILES>
0 0 libaudiofile0 <NOFILES>
0 0 libexif-ruby1.8 <NOFILES>
0 0 texlive-base <NOFILES>
0 0 r-cran-mvtnorm <NOFILES>
0 0 festvox-kallpc16k <NOFILES>
0 0 r-cran-strucchange <NOFILES>
0 0 libdebian-installer-extra4 <NOFILES>
0 0 libdc1394-13 <NOFILES>
0 0 libpq4 <NOFILES>
0 0 xserver-xorg-input-evdev <NOFILES>
0 0 r-cran-foreign <NOFILES>
0 0 libkonq4 <NOFILES>
0 0 vgabios <NOFILES>
0 0 python-all <NOFILES>
0 0 qgis-plugin-grass <NOFILES>
0 0 libmpfr1 <NOFILES>
0 0 lmodern <NOFILES>
0 0 python-at-spi <NOFILES>
0 0 gmt-tutorial <NOFILES>
0 0 libgnomevfs2-ruby <NOFILES>
0 0 libkcddb1 <NOFILES>
0 0 libaspell15 <NOFILES>
0 0 libmsat0 <NOFILES>
0 0 libxtrap6 <NOFILES>
0 0 libextractor-plugins <NOFILES>
0 0 libgtkhtml2-ruby <NOFILES>
0 0 python-mysqldb <NOFILES>
0 0 libaudio2 <NOFILES>
0 0 xmms-mad <NOFILES>
0 0 openoffice.org-evolution <NOFILES>
0 0 libevent1 <NOFILES>
0 0 postgresql-client <NOFILES>
0 0 librecode0 <NOFILES>
0 0 gcc-4.1-base <NOFILES>
0 0 libstartup-notification0 <NOFILES>
0 0 libxpm4 <NOFILES>
0 0 doc-linux-text <NOFILES>
0 0 gnome-desktop-data <NOFILES>
0 0 libpanel-applet2-0 <NOFILES>
0 0 libobby-0.4-0 <NOFILES>
0 0 libgnomeui-0 <NOFILES>
0 0 festvox-suopuhe-lj <NOFILES>
0 0 libnautilus-extension1 <NOFILES>
0 0 texlive-generic-recommended <NOFILES>
0 0 texlive-latex-recommended <NOFILES>
0 0 libcurl3 <NOFILES>
0 0 libnet1 <NOFILES>
0 0 libgtop2-7 <NOFILES>
0 0 wamerican <NOFILES>
0 0 r-cran-relimp <NOFILES>
0 0 xmms-xf86audio <NOFILES>
0 0 openoffice.org-core <NOFILES>
0 0 libbind9-30 <NOFILES>
0 0 libdmx1 <NOFILES>
0 0 gnome-netstatus-applet <NOFILES>
0 0 python-roman <NOFILES>
0 0 texpower <NOFILES>
0 0 libmagic1 <NOFILES>
0 0 libsvn1 <NOFILES>
0 0 libtiff4 <NOFILES>
0 0 python-profiler <NOFILES>
0 0 linux-image-2.6-amd64 <NOFILES>
0 0 ncurses-term <NOFILES>
0 0 libxau6 <NOFILES>
0 0 dict-bouvier <NOFILES>
0 0 libxcomposite1 <NOFILES>
0 0 libieee1284-3 <NOFILES>
0 0 python-semanage <NOFILES>
0 0 libqalculate3 <NOFILES>
0 0 libgconf2-4 <NOFILES>
0 0 libmpeg2-4 <NOFILES>
0 0 xserver-xorg-video-fbdev <NOFILES>
0 0 php5-common <NOFILES>
0 0 libgmp3c2 <NOFILES>
0 0 iceweasel-gnome-support <NOFILES>
0 0 prosper <NOFILES>
0 0 libsdl-console <NOFILES>
0 0 scim-modules-socket <NOFILES>
0 0 libgpmg1 <NOFILES>
0 0 libxfont1 <NOFILES>
0 0 netbase <NOFILES>
0 0 libdjvulibre15 <NOFILES>
0 0 xfonts-base <NOFILES>
0 0 autoconf-archive <NOFILES>
0 0 python-dev <NOFILES>
0 0 libebook1.2-5 <NOFILES>
0 0 festvox-suopuhe-mv <NOFILES>
0 0 libgnomevfs2-extra <NOFILES>
0 0 gnome-terminal-data <NOFILES>
0 0 xserver-xorg-input-all <NOFILES>
0 0 iceweasel-dom-inspector <NOFILES>
0 0 alsa-base <NOFILES>
0 0 libpth20 <NOFILES>
0 0 python-matplotlib-data <NOFILES>
0 0 libpcap0.7 <NOFILES>
0 0 postgresql-doc <NOFILES>
0 0 dia-libs <NOFILES>
0 0 libgnomevfs2-0 <NOFILES>
0 0 libcucul0 <NOFILES>
0 0 libstdc++6-4.1-doc <NOFILES>
0 0 libgphoto2-port0 <NOFILES>
0 0 debian-policy <NOFILES>
0 0 python-numpy-doc <NOFILES>
0 0 lsb-base <NOFILES>
0 0 libisccc0 <NOFILES>
0 0 gmt-coast-low <NOFILES>
0 0 python-apt <NOFILES>
0 0 xaw3dg <NOFILES>
0 0 c++-annotations-pdf <NOFILES>
0 0 docbook-xsl-doc <NOFILES>
0 0 libjaxp1.3-java <NOFILES>
0 0 gnome-cards-data <NOFILES>
0 0 libmpcdec3 <NOFILES>
0 0 gimp-data-extras <NOFILES>
0 0 ttf-dejavu <NOFILES>
0 0 evolution-data-server-common <NOFILES>
0 0 libbluetooth2 <NOFILES>
0 0 texlive-common <NOFILES>
0 0 libdballe-db3 <NOFILES>
0 0 libconsole <NOFILES>
0 0 libodbcinstq1c2 <NOFILES>
0 0 libavformat0d <NOFILES>
0 0 libgnome-menu2 <NOFILES>
0 0 xlibmesa-gl-dev <NOFILES>
0 0 libspeex1 <NOFILES>
0 0 libqt3-i18n <NOFILES>
0 0 libxalan2-java <NOFILES>
0 0 automake1.10-doc <NOFILES>
0 0 libgtkglext1-ruby <NOFILES>
0 0 libbonoboui2-common <NOFILES>
0 0 libvte-common <NOFILES>
0 0 libgsl0 <NOFILES>
0 0 libisc11 <NOFILES>
0 0 python-sqlalchemy <NOFILES>
0 0 libss2 <NOFILES>
0 0 libmad0 <NOFILES>
0 0 libsvga1 <NOFILES>
0 0 libncurses5 <NOFILES>
0 0 libept0 <NOFILES>
0 0 libsepol1 <NOFILES>
0 0 python-selinux <NOFILES>
0 0 libart-2.0-2 <NOFILES>
0 0 libplot2c2 <NOFILES>
0 0 iceweasel-greasemonkey <NOFILES>
0 0 libosp5 <NOFILES>
0 0 texlive-fonts-recommended <NOFILES>
0 0 odbc-postgresql <NOFILES>
0 0 libtheora0 <NOFILES>
0 0 libnfsidmap2 <NOFILES>
0 0 python-qtext <NOFILES>
0 0 xfonts-100dpi <NOFILES>
0 0 manpages <NOFILES>
0 0 libvolume-id0 <NOFILES>
0 0 libdballe-db-doc <NOFILES>
0 0 gcc-doc <NOFILES>
0 0 libqt4-gui <NOFILES>
0 0 libblkid1 <NOFILES>
0 0 libxss1 <NOFILES>
0 0 libruby1.8 <NOFILES>
0 0 libxine1 <NOFILES>
0 0 xserver-xorg-video-cyrix <NOFILES>
0 0 fast-user-switch-applet <NOFILES>
0 0 libmpich1.0c2 <NOFILES>
0 0 libgtop2-common <NOFILES>
0 0 mapserver-doc <NOFILES>
0 0 gnome-themes <NOFILES>
0 0 frozen-bubble-data <NOFILES>
0 0 intltool-debian <NOFILES>
0 0 libsdl-mixer1.2 <NOFILES>
0 0 libextractor1c2a <NOFILES>
0 0 python-pysqlite2 <NOFILES>
0 0 libgpg-error0 <NOFILES>
0 0 libgksuui1.0-1 <NOFILES>
0 0 libopengl-ruby <NOFILES>
0 0 python-gammu <NOFILES>
0 0 postgresql <NOFILES>
0 0 libarchive1 <NOFILES>
0 0 libflac++5 <NOFILES>
0 0 libxinerama1 <NOFILES>
0 0 libedataserver1.2-7 <NOFILES>
0 0 c++-annotations-ps <NOFILES>
0 0 eric-api-files <NOFILES>
0 0 python-gnome2-desktop <NOFILES>
0 0 graphviz-doc <NOFILES>
0 0 r-cran-lattice <NOFILES>
0 0 gconf2-common <NOFILES>
0 0 manpages-dev <NOFILES>
0 0 libgdk-pixbuf2-ruby <NOFILES>
0 0 libgnomecanvas2-0 <NOFILES>
0 0 xserver-xorg-video-sis <NOFILES>
0 0 r-doc-info <NOFILES>
0 0 libsmbclient <NOFILES>
0 0 gmt-examples <NOFILES>
0 0 libdrm2 <NOFILES>
0 0 libmusicbrainz4c2a <NOFILES>
0 0 python-pycurl <NOFILES>
0 0 libpcsclite1 <NOFILES>
0 0 libxaw6 <NOFILES>
0 0 bzr-svn <NOFILES>
0 0 gcc-doc-base <NOFILES>
0 0 libgtk1.2 <NOFILES>
0 0 python2.4-doc <NOFILES>
0 0 liferea-xulrunner <NOFILES>
0 0 liblwres30 <NOFILES>
0 0 libdvdread3 <NOFILES>
0 0 liblualib50 <NOFILES>
0 0 libldap-2.3-0 <NOFILES>
0 0 xmms-oggre <NOFILES>
0 0 libestools1.2 <NOFILES>
0 0 libavcodec0d <NOFILES>
0 0 python-qt3 <NOFILES>
0 0 fb-music-high <NOFILES>
0 0 bicyclerepair <NOFILES>
0 0 libgnome2-ruby <NOFILES>
0 0 industrial-cursor-theme <NOFILES>
0 0 python-pyorbit <NOFILES>
0 0 libgtk2.0-0 <NOFILES>
0 0 timidity-interfaces-extra <NOFILES>
0 0 e2fslibs <NOFILES>
0 0 octave <NOFILES>
0 0 xserver-xorg-video-glint <NOFILES>
0 0 libsndfile1 <NOFILES>
0 0 xbitmaps <NOFILES>
0 0 librexml-ruby <NOFILES>
0 0 libdballef3 <NOFILES>
0 0 grep-dctrl <NOFILES>
0 0 gcc-4.1-doc <NOFILES>
0 0 libpanel-applet2-ruby <NOFILES>
0 0 vim-gui-common <NOFILES>
0 0 liboggflac3 <NOFILES>
0 0 w3c-dtd-xhtml <NOFILES>
0 0 gnuplot-x11 <NOFILES>
0 0 ruby-gnome2 <NOFILES>
0 0 gimp-data <NOFILES>
0 0 libqgis0 <NOFILES>
0 0 xserver-xorg-video-all <NOFILES>
0 0 libgdl-1-0 <NOFILES>
0 0 python-sqlobject <NOFILES>
0 0 openoffice.org-thesaurus-en-us <NOFILES>
0 0 xserver-xorg-video-dummy <NOFILES>
0 0 libapr1 <NOFILES>
0 0 libxvmc1 <NOFILES>
0 0 libcurl3-gnutls <NOFILES>
0 0 libgcc1 <NOFILES>
0 0 kdebase-data <NOFILES>
0 0 xpdf <NOFILES>
0 0 libpng12-0 <NOFILES>
0 0 libgammu1 <NOFILES>
0 0 xkb-data <NOFILES>
0 0 libgnomeui32 <NOFILES>
0 0 r-cran-effects <NOFILES>
0 0 libbonoboui2-0 <NOFILES>
0 0 libcommons-cli-java <NOFILES>
0 0 python-protocols <NOFILES>
0 0 libxevie1 <NOFILES>
0 0 xapian-doc <NOFILES>
0 0 libxt-java <NOFILES>
0 0 libsasl2 <NOFILES>
0 0 gimp-svg <NOFILES>
0 0 python-tk <NOFILES>
0 0 xserver-xorg-video-trident <NOFILES>
0 0 x-ttcidfont-conf <NOFILES>
0 0 r-cran-vr <NOFILES>
0 0 python-magic <NOFILES>
0 0 libgnomeprint2.2-0 <NOFILES>
0 0 r-cran-cluster <NOFILES>
0 0 libavahi-common3 <NOFILES>
0 0 esound-common <NOFILES>
0 0 libgeos2c2a <NOFILES>
0 0 libkpathsea4 <NOFILES>
0 0 libxaw7 <NOFILES>
0 0 xplanet-images <NOFILES>
0 0 libmysqlclient15off <NOFILES>
0 0 libdb3 <NOFILES>
0 0 libfontenc1 <NOFILES>
0 0 xserver-xorg-video-savage <NOFILES>
0 0 libgssapi2 <NOFILES>
0 0 libpstoedit0c2a <NOFILES>
0 0 libgimp2.0 <NOFILES>
0 0 libwrap0 <NOFILES>
0 0 libpt-plugins-v4l <NOFILES>
0 0 glade-doc <NOFILES>
0 0 libxerces2-java <NOFILES>
0 0 libcupsimage2 <NOFILES>
0 0 docbook-xml <NOFILES>
0 0 dict-elements <NOFILES>
0 0 festlex-poslex <NOFILES>
0 0 python-glade2 <NOFILES>
0 0 libcomerr2 <NOFILES>
0 0 liblzo1 <NOFILES>
0 0 liblua50 <NOFILES>
0 0 selinux-policy-refpolicy-targeted <NOFILES>
0 0 libxt6 <NOFILES>
0 0 libboost-program-options1.33.1 <NOFILES>
0 0 libgksu1.2-0 <NOFILES>
0 0 openoffice.org-hyphenation-it <NOFILES>
0 0 python-markdown <NOFILES>
0 0 pgf <NOFILES>
0 0 python-libxml2 <NOFILES>
0 0 libguichan0 <NOFILES>
0 0 libhrit0 <NOFILES>
0 0 libdebian-installer4 <NOFILES>
0 0 libgtkhtml3.8-15 <NOFILES>
0 0 libgnorba27 <NOFILES>
0 0 xserver-xorg-video-v4l <NOFILES>
0 0 linux-sound-base <NOFILES>
0 0 libsoup2.2-8 <NOFILES>
0 0 libreadline5 <NOFILES>
0 0 libsysfs2 <NOFILES>
0 0 libgucharmap4 <NOFILES>
0 0 libsqlite3-0 <NOFILES>
0 0 libbonobo2-0 <NOFILES>
0 0 python-matplotlib-doc <NOFILES>
0 0 libncursesw5 <NOFILES>
0 0 python-gtk2-tutorial <NOFILES>
0 0 python-xapian <NOFILES>
0 0 nautilus-data <NOFILES>
0 0 xserver-xorg-video-neomagic <NOFILES>
0 0 libmikmod2 <NOFILES>
0 0 libmyodbc <NOFILES>
0 0 libxerces27 <NOFILES>
0 0 libecal1.2-6 <NOFILES>
0 0 libopenssl-ruby1.8 <NOFILES>
0 0 libgamin0 <NOFILES>
0 0 python-gnome2-extras <NOFILES>
0 0 python-doc <NOFILES>
0 0 xserver-xorg-input-wacom <NOFILES>
0 0 libgstreamer0.8-ruby <NOFILES>
0 0 bluetooth <NOFILES>
0 0 r-cran-nlme <NOFILES>
0 0 dict-vera <NOFILES>
0 0 libmozjs0d <NOFILES>
0 0 desktop-base <NOFILES>
0 0 libgcrypt11 <NOFILES>
0 0 libgsf-1-114 <NOFILES>
0 0 liblockdev1 <NOFILES>
0 0 libexpat1 <NOFILES>
0 0 mysql-common <NOFILES>
0 0 xserver-xorg-video-sisusb <NOFILES>
0 0 libcap1 <NOFILES>
0 0 libgda2-ruby <NOFILES>
0 0 scim-gtk2-immodule <NOFILES>
0 0 xserver-xorg-video-vesa <NOFILES>
0 0 libxfixes3 <NOFILES>
0 0 libneon26 <NOFILES>
0 0 python-dns <NOFILES>
0 0 mysql-server <NOFILES>
0 0 libg2c0 <NOFILES>
0 0 witalian <NOFILES>
0 0 libavahi-glib1 <NOFILES>
0 0 gtk2-engines-pixbuf <NOFILES>
0 0 libm17n-0 <NOFILES>
0 0 libstlport4.6c2 <NOFILES>
0 0 liblcms1 <NOFILES>
0 0 libedit2 <NOFILES>
0 0 liblog4j1.2-java <NOFILES>
0 0 gnome-icon-theme <NOFILES>
0 0 libxp6 <NOFILES>
0 0 libsamplerate0 <NOFILES>
0 0 libsdl-image1.2 <NOFILES>
0 0 mixxx-data <NOFILES>
0 0 gstreamer0.10-plugins-base <NOFILES>
0 0 libseda-java <NOFILES>
0 0 libxres1 <NOFILES>
0 0 kdemultimedia-kio-plugins <NOFILES>
0 0 libadns1 <NOFILES>
0 0 libgnorbagtk0 <NOFILES>
0 0 fontconfig-config <NOFILES>
0 0 xserver-xorg-video-nv <NOFILES>
0 0 libjack0.100.0-0 <NOFILES>
0 0 firmware-ipw3945 <NOFILES>
0 0 libdns22 <NOFILES>
0 0 gaim-data <NOFILES>
0 0 scim-m17n <NOFILES>
0 0 netcdf-doc <NOFILES>
0 0 libgconf2-ruby <NOFILES>
0 0 libhtree-ruby1.8 <NOFILES>
0 0 libusb-0.1-4 <NOFILES>
0 0 r-cran-sm <NOFILES>
0 0 libmhash2 <NOFILES>
0 0 libaa1 <NOFILES>
0 0 libnspr4-0d <NOFILES>
0 0 libgdbm3 <NOFILES>
0 0 python-configobj <NOFILES>
0 0 libwxbase2.6-0 <NOFILES>
0 0 python-dispatch <NOFILES>
0 0 libautotrace3 <NOFILES>
0 0 libiw28 <NOFILES>
0 0 libpt-plugins-alsa <NOFILES>
0 0 libnautilus-burn3 <NOFILES>
0 0 latex-xcolor <NOFILES>
0 0 xserver-xorg-video-s3virge <NOFILES>
0 0 python-elementtree <NOFILES>
0 0 postgresql-doc-7.4 <NOFILES>
0 0 conglomerate-common <NOFILES>
0 0 libhdf5-doc <NOFILES>
0 0 c++-annotations-contrib <NOFILES>
0 0 libtag1c2a <NOFILES>
0 0 libgtk-mozembed-ruby <NOFILES>
0 0 libxml2 <NOFILES>
0 0 gnome-libs-data <NOFILES>
0 0 paste-common <NOFILES>
0 0 freedroidrpg-data <NOFILES>
0 0 iitalian <NOFILES>
0 0 libltdl3 <NOFILES>
0 0 libavahi-client3 <NOFILES>
0 0 fftw3 <NOFILES>
0 0 libgfortran1 <NOFILES>
0 0 libmyspell3c2 <NOFILES>
0 0 xserver-xorg-video-tga <NOFILES>
0 0 r-cran-car <NOFILES>
0 0 python-newt <NOFILES>
0 0 xserver-xorg-video-ark <NOFILES>
0 0 libesd0 <NOFILES>
0 0 openoffice.org <NOFILES>
0 0 libsdl-net1.2 <NOFILES>
0 0 libsigc++-2.0-0c2a <NOFILES>
0 0 python-simplejson <NOFILES>
0 0 libcdparanoia0 <NOFILES>
0 0 libglib1.2 <NOFILES>
0 0 libpopt0 <NOFILES>
0 0 scribus-ng-doc <NOFILES>
0 0 libwnck-common <NOFILES>
0 0 mplayer-skin-blue <NOFILES>
0 0 libgail-gnome-module <NOFILES>
0 0 libopenexr2c2a <NOFILES>
0 0 libsp1c2 <NOFILES>
0 0 libvdeplug2 <NOFILES>
0 0 libmodplug0c2 <NOFILES>
0 0 ttf-opensymbol <NOFILES>
0 0 libwxgtk2.6-0 <NOFILES>
0 0 libqscintilla6 <NOFILES>
0 0 epiphany-extensions <NOFILES>
0 0 festlex-ifd <NOFILES>
0 0 libgle3 <NOFILES>
0 0 libartsc0 <NOFILES>
0 0 gmt-doc <NOFILES>
0 0 libdb4.2 <NOFILES>
0 0 libcairo-ruby <NOFILES>
0 0 libid3tag0 <NOFILES>
0 0 libogg0 <NOFILES>
0 0 libxdmcp6 <NOFILES>
0 0 python-turbojson <NOFILES>
0 0 gdb-doc <NOFILES>
0 0 python-opengl <NOFILES>
0 0 r-cran-rgl <NOFILES>
0 0 load-dirs-common <NOFILES>
0 0 rrootage-data <NOFILES>
0 0 latex-beamer <NOFILES>
0 0 r-cran-mgcv <NOFILES>
0 0 libfs6 <NOFILES>
0 0 libgtk2.0-common <NOFILES>
0 0 libxapian13 <NOFILES>
0 0 libgnome-pilot2 <NOFILES>
0 0 libx11-data <NOFILES>
0 0 libdballe-bufrex3 <NOFILES>
0 0 liblircclient0 <NOFILES>
0 0 libeel2-2.14 <NOFILES>
0 0 libxxf86dga1 <NOFILES>
0 0 linux-patch-gcov <NOFILES>
0 0 c++-annotations-html <NOFILES>
0 0 libqt4-qt3support <NOFILES>
0 0 libanthy0 <NOFILES>
0 0 python-matplotlib <NOFILES>
0 0 libxi6 <NOFILES>
0 0 docbook-doc <NOFILES>
0 0 liblzo2-2 <NOFILES>
0 0 r-cran-boot <NOFILES>
0 0 libiec61883-0 <NOFILES>
0 0 libisccc30 <NOFILES>
0 0 libtextwrap1 <NOFILES>
0 0 libssp0 <NOFILES>
0 0 libgstreamer0.10-0 <NOFILES>
0 0 gdm-themes <NOFILES>
0 0 balder2d-data <NOFILES>
0 0 libpam0g <NOFILES>
0 0 debian-archive-keyring <NOFILES>
0 0 libgdal1-1.3.2-grass <NOFILES>
0 0 linux-doc-2.6.18 <NOFILES>
0 0 libgnomeprint2-ruby <NOFILES>
0 0 hal-info <NOFILES>
0 0 python-paramiko <NOFILES>
0 0 linux-manual-2.6.21 <NOFILES>
0 0 evolution-common <NOFILES>
0 0 gnome-games-data <NOFILES>
0 0 xserver-xorg-video-i128 <NOFILES>
0 0 libqt3-mt <NOFILES>
0 0 libnids1.21 <NOFILES>
0 0 festlex-cmu <NOFILES>
0 0 gdk-imlib11 <NOFILES>
0 0 python-formencode <NOFILES>
0 0 at-spi <NOFILES>
0 0 libpcap0.8 <NOFILES>
0 0 imlib11 <NOFILES>
0 0 xserver-xorg-input-mouse <NOFILES>
0 0 libxdamage1 <NOFILES>
0 0 bison-doc <NOFILES>
0 0 libgsm1 <NOFILES>
0 0 xmms-osd-plugin <NOFILES>
0 0 compiz <NOFILES>
0 0 debian-cd <NOFILES>
0 0 gimp-texturize <NOFILES>
0 0 ttf-bitstream-vera <NOFILES>
0 0 libxdelta2 <NOFILES>
0 0 libgda2-common <NOFILES>
0 0 libinstrudeo0 <NOFILES>
0 0 xserver-xorg-video-via <NOFILES>
0 0 libxrender1 <NOFILES>
0 0 libavahi-qt3-1 <NOFILES>
0 0 libloudmouth1-0 <NOFILES>
0 0 ttf-freefont <NOFILES>
0 0 c++-annotations-dvi <NOFILES>
0 0 gstreamer0.10-gnomevfs <NOFILES>
0 0 libisccfg1 <NOFILES>
0 0 libuuid1 <NOFILES>
0 0 libcpufreq0 <NOFILES>
0 0 libgcj7-jar <NOFILES>
0 0 xserver-xorg-video-tdfx <NOFILES>
0 0 iceweasel-l10n-en-gb <NOFILES>
0 0 libxext6 <NOFILES>
0 0 libselinux1 <NOFILES>
0 0 libvcdinfo0 <NOFILES>
0 0 ipw3945-source <NOFILES>
0 0 libparted1.7-1 <NOFILES>
0 0 recode-doc <NOFILES>
0 0 libcamel1.2-8 <NOFILES>
0 0 preview-latex-style <NOFILES>
0 0 iso-codes <NOFILES>
0 0 apache2 <NOFILES>
0 0 xfonts-encodings <NOFILES>
0 0 menu-xdg <NOFILES>
0 0 cpp-doc <NOFILES>
0 0 libeel2-data <NOFILES>
0 0 libgtkmm1.2-0c2a <NOFILES>
0 0 libgcj-bc <NOFILES>
0 0 libexif12 <NOFILES>
0 0 libgsmme1c2a <NOFILES>
0 0 gnuplot <NOFILES>
0 0 libglitz1 <NOFILES>
0 0 liblink-grammar4 <NOFILES>
0 0 libxmuu1 <NOFILES>
0 0 libflash0c2 <NOFILES>
0 0 python-pastedeploy <NOFILES>
0 0 libgtk1.2-common <NOFILES>
0 0 libpt-1.10.0 <NOFILES>
0 0 libneon25 <NOFILES>
0 0 gfortran-doc <NOFILES>
0 0 python-tz <NOFILES>
0 0 libatk1.0-0 <NOFILES>
0 0 liborbit0 <NOFILES>
0 0 kamera <NOFILES>
0 0 libxml++2.6-2 <NOFILES>
0 0 libidl0 <NOFILES>
0 0 build-essential <NOFILES>
0 0 libxrandr2 <NOFILES>
0 0 libxslt1.1 <NOFILES>
0 0 libdns32 <NOFILES>
0 0 libgnome-keyring0 <NOFILES>
0 0 libsigc++-1.2-5c2 <NOFILES>
0 0 libguile-ltdl-1 <NOFILES>
0 0 gamin <NOFILES>
0 0 bzrtools <NOFILES>
0 0 python-wxgtk2.6 <NOFILES>
0 0 apache2-doc <NOFILES>
0 0 libnm-glib0 <NOFILES>
0 0 xserver-xorg-video-apm <NOFILES>
0 0 texlive-pstricks <NOFILES>
0 0 libgail17 <NOFILES>
0 0 libk3b2 <NOFILES>
0 0 python-all-dev <NOFILES>
0 0 libksba8 <NOFILES>
0 0 libsdl-ttf2.0-0 <NOFILES>
0 0 libboost-filesystem1.33.1 <NOFILES>
0 0 libpisync0 <NOFILES>
0 0 python2.4-examples <NOFILES>
0 0 libgnomeui-common <NOFILES>
0 0 libexif-ruby <NOFILES>
0 0 libgnomeprintui2.2-0 <NOFILES>
0 0 libstdc++6 <NOFILES>
0 0 gnome-backgrounds <NOFILES>
0 0 libxxf86misc1 <NOFILES>
0 0 libedata-cal1.2-5 <NOFILES>
0 0 libdiscover1 <NOFILES>
0 0 libbind9-0 <NOFILES>
0 0 libquicktime0 <NOFILES>
0 0 totem <NOFILES>
0 0 iceweasel-torbutton <NOFILES>
0 0 r-cran-zoo <NOFILES>
0 0 iamerican <NOFILES>
0 0 libisc32 <NOFILES>
0 0 dict-jargon <NOFILES>
0 0 python-turbokid <NOFILES>
0 0 libpoppler0c2 <NOFILES>
0 0 app-install-data <NOFILES>
0 0 r-cran-survival <NOFILES>
0 0 libhdf5-serial-1.6.5-0 <NOFILES>
0 0 libqt4-sql <NOFILES>
0 0 gstreamer0.10-alsa <NOFILES>
0 0 zlib1g <NOFILES>
0 0 python-mapscript <NOFILES>
0 0 libatspi1.0-0 <NOFILES>
0 0 libcairo2 <NOFILES>
0 0 libungif4g <NOFILES>
0 0 gnome-desktop-environment <NOFILES>
0 0 libgtkhtml2-0 <NOFILES>
0 0 libglibmm-2.4-1c2a <NOFILES>
0 0 libswt-gtk-3.2-jni <NOFILES>
0 0 libgtkglext1 <NOFILES>
0 0 libjpeg62 <NOFILES>
0 0 gtkhtml3.8 <NOFILES>
0 0 xfonts-75dpi <NOFILES>
0 0 python-pyrss2gen <NOFILES>
0 0 r-cran-multcomp <NOFILES>
0 0 php5-mapscript <NOFILES>
0 0 libdballe-core-doc <NOFILES>
0 0 libfontconfig1 <NOFILES>
0 0 php5-gd <NOFILES>
0 0 libidn11 <NOFILES>
0 0 libgdl-1-common <NOFILES>
0 0 libavahi-compat-howl0 <NOFILES>
0 0 xulrunner-gnome-support <NOFILES>
0 0 libgnomeprintui2-ruby <NOFILES>
0 0 cupsys-common <NOFILES>
0 0 libgdk-pixbuf2 <NOFILES>
0 0 libhal-storage1 <NOFILES>
0 0 libisccfg30 <NOFILES>
0 0 libnewt0.52 <NOFILES>
0 0 libchm1 <NOFILES>
0 0 libao2 <NOFILES>
0 0 libacl1 <NOFILES>
0 0 libhdf4g <NOFILES>
0 0 doc-debian <NOFILES>
0 0 libedata-book1.2-2 <NOFILES>
0 0 blt <NOFILES>
0 0 emacsen-common <NOFILES>
0 0 libdbus-qt-1-1c2 <NOFILES>
0 0 libnetpbm10 <NOFILES>
0 0 python-deb822 <NOFILES>
0 0 hicolor-icon-theme <NOFILES>
0 0 libboost-dev <NOFILES>
0 0 libc6-i386 <NOFILES>
0 0 wormux-data <NOFILES>
0 0 libservlet2.4-java <NOFILES>
0 0 libgc1c2 <NOFILES>
0 0 libswt-gtk-3.2-java <NOFILES>
0 0 dict-gcide <NOFILES>
0 0 libdballe-core3 <NOFILES>
0 0 dict-moby-thesaurus <NOFILES>
0 0 libxerces27-dev <NOFILES>
0 0 libavahi-common-data <NOFILES>
0 0 libgtksourceview1-ruby <NOFILES>
0 0 libbz2-1.0 <NOFILES>
0 0 grub-doc <NOFILES>
0 0 xserver-xorg-video-i810 <NOFILES>
0 0 gsfonts <NOFILES>
0 0 libgd2-xpm <NOFILES>
0 0 libgutenprintui2-1 <NOFILES>
0 0 libegroupwise1.2-10 <NOFILES>
0 0 refblas3 <NOFILES>
0 0 autotools-dev <NOFILES>
0 0 libart2 <NOFILES>
0 0 docbook <NOFILES>
0 0 r-cran-rpart <NOFILES>
0 0 texpower-manual <NOFILES>
0 0 python-pexpect <NOFILES>
0 0 liborbit2 <NOFILES>
0 0 librpcsecgss3 <NOFILES>
0 0 libnet6-1.3-0 <NOFILES>
0 0 rubybook <NOFILES>
0 0 python-soappy <NOFILES>
0 0 make-doc <NOFILES>
0 0 libssl0.9.8 <NOFILES>
0 0 libdbus-1-3 <NOFILES>
0 0 adept <NOFILES>
0 0 libgl1-mesa-glx <NOFILES>
0 0 ttf-arphic-uming <NOFILES>
0 0 ceferino-data <NOFILES>
0 0 libglade2-0 <NOFILES>
0 0 texlive-generic-extra <NOFILES>
0 0 libicu36 <NOFILES>
0 0 myspell-it <NOFILES>
0 0 vim-doc <NOFILES>
0 0 libglu1-xorg-dev <NOFILES>
0 0 libtdb1 <NOFILES>
0 0 libarts1-akode <NOFILES>
0 0 xserver-xorg-video-siliconmotion <NOFILES>
0 0 openoffice.org-thesaurus-it <NOFILES>
0 0 capplets-data <NOFILES>
0 0 gsfonts-x11 <NOFILES>
0 0 python-wxversion <NOFILES>
0 0 dballe-common <NOFILES>
0 0 ipw3945-modules-2.6.20.1enrico <NOFILES>
0 0 r-recommended <NOFILES>
0 0 libgrib0 <NOFILES>
0 0 libxxf86vm1 <NOFILES>
0 0 libavc1394-0 <NOFILES>
0 0 gfortran-4.1-doc <NOFILES>
0 0 libgnome-desktop-2 <NOFILES>
0 0 system-tools-backends <NOFILES>
0 0 libpcap-dev <NOFILES>
0 0 mplayer-doc <NOFILES>
0 0 libsqlite0 <NOFILES>
0 0 gutenprint-locales <NOFILES>
0 0 r-cran-lmtest <NOFILES>
0 0 librpm4 <NOFILES>
0 0 libopencdk8 <NOFILES>
0 0 xserver-xorg-video-chips <NOFILES>
0 0 dict-foldoc <NOFILES>
0 0 cgi-mapserver <NOFILES>
0 0 libperl5.8 <NOFILES>
END-POPULARITY-CONTEST-0 TIME:1181000000