File: THANKS

package info (click to toggle)
ace 6.0.3%2Bdfsg-0.1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 49,368 kB
  • sloc: cpp: 341,826; perl: 30,850; ansic: 20,952; makefile: 10,144; sh: 4,744; python: 828; exp: 787; yacc: 511; xml: 330; lex: 158; lisp: 116; csh: 48; tcl: 5
file content (2383 lines) | stat: -rw-r--r-- 113,031 bytes parent folder | download
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
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
ACKNOWLEDGEMENTS

ACE and TAO have been deeply influenced and improved by the following
members of my research group at Washington University in St. Louis, the
University of California at Irvine, and Vanderbilt University in Nashville.

Everett Anderson <eea1 at cec dot wustl dot edu>
Alexander Babu Arulanthu <alex at cs dot wustl dot edu>
Shawn Atkins <sma1 at cs dot wustl dot edu>
Jaiganesh Balasubramanian <jai at dre dot vanderbilt dot edu>
Krishnakumar Balasubramanian <kitty at dre dot vanderbilt dot edu>
Matt Braun <mjb2 at cs dot wustl dot edu>
Darrell Brunsch <brunsch at uci dot edu>
Dante J. Cannarozzi <djc2 at cs dot wustl dot edu>
Sharath R. Cholleti  <sharath at cs dot wustl dot edu>
Chris Cleeland <cleeland at cs dot wustl dot edu>
Angelo Corsaro <corsaro at cs dot wustl dot edu>
Gan Deng <dengg at dre dot vanderbilt dot edu>
Mayur Deshpande <mayur at ics dot uci dot edu>
Eric Ding <qnd1 at cs dot wustl dot edu>
George Edwards <g dot edwards at vanderbilt dot edu>
Sergio Flores-Gaitan <sergio at cs dot wustl dot edu>
Chris Gill <cdgill at cs dot wustl dot edu>
Andrew G. Gilpin  <agg1 at cs dot wustl dot edu>
Aniruddha Gokhale <a dot gokhale at vanderbilt dot edu>
Priyanka Gontla <pgontla at ociweb dot com>
Pradeep Gore <pradeep at cs dot wustl dot edu>
Matthew P. Hampton <mph2 at cs dot wustl dot edu>
Tim Harrison <harrison at cs dot wustl dot edu>
John Heitmann <jwh1 at cs dot wustl dot edu>
James Hill <jhill at isis dot vanderbilt dot edu>
Shawn Hannan <hannan at cs dot wustl dot edu>
Don Hinton <dhinton at dre dot vanderbilt dot edu>
Joe Hoffert <joeh at tango dot cs dot wustl dot edu>
James Hu <jxh at cs dot wustl dot edu>
Huang-Ming Huang <hh1 at cs dot wustl dot edu>
Frank A. Hunleth <fhunleth at cs dot wustl dot edu>
Prashant Jain <pjain at cs dot wustl dot edu>
Shanshan Jiang <shanshan dot jiang at vanderbilt dot edu>
Vishal Kachroo <vishal at cs dot wustl dot edu>
Michael Kircher <Michael dot Kircher at mchp dot siemens dot de>
Boris Kolpackov <boris at dre dot isis dot vanderbilt dot edu>
Arvind S. Krishna <arvindk at dre dot vanderbilt dot edu>
Yamuna Krishnamurthy <yamuna at cs dot wustl dot edu>
Fred Kuhns <fredk at cs dot wustl dot edu>
David Levine <levine at cs dot wustl dot edu>
Tao Lu <tao dot lu at vanderbilt dot edu>
Mike Moran <mm4 at cs dot wustl dot edu>
Sumedh Mungee <sumedh at cs dot wustl dot edu>
Balachandran Natarajan <bala at dre dot vanderbilt dot edu>
Will Otte <wotte at dre dot vanderbilt dot edu>
Kirthika Parameswaran <kirthika at cs dot wustl dot edu>
Krishnakumar Pathayapura <krish at cs dot wustl dot edu>
Stoyan Paunov <spaunov at isis dot vanderbilt dot edu>
Carlos O'Ryan <coryan at uci dot edu>
Ossama Othman <ossama at dre dot vanderbilt dot edu>
Jeff Parsons <j dot parsons at vanderbilt dot edu>
Irfan Pyarali <irfan at cs dot wustl dot edu>
Nilabja Roy <nilabjar at dre dot vanderbilt dot edu>
Lucas Seibert <heynonynony at yahoo dot com>
Diego Sevilla Ruiz <dsevilla at ditec dot um dot es>
Nishanth Shankaran <nshankar at dre dot vanderbilt dot edu>
Marina Spivak <marina at cs dot wustl dot edu>
Venkita Subramonian  <venkita at cs dot wustl dot edu>
Nagarajan Surendran <naga at cs dot wustl dot edu>
Cassia Tatibana  <cassia@lindy.dre.vanderbilt.edu>
Sumant Tambe <sutambe at dre dot vanderbilt dot edu>
Gabriele Trombetti <gabtromb at isis dot vanderbilt dot edu>
Emre Turkay <turkaye at dre dot vanderbilt dot edu>
Nanbor Wang <nanbor at cs dot wustl dot edu>
Seth Widoff <sbw1 at cs dot wustl dot edu>
Jules White <jules at dre dot vanderbilt dot edu>
Friedhelm Wolf <fwolf at dre dot vanderbilt dot edu>
Torben Worm <tworm at cs dot wustl dot edu>
Ming Xiong <xiongm at isis dot vanderbilt dot edu>

I would also like to thank all the following people who have also
contributed to ACE and TAO over the years:

Paul Stephenson <pstephenson at objectspace dot com>
Olaf Kruger <okruger at cssc-melb dot tansu dot com dot au>
Ed Brown <eebrown at netcom dot com>
Lee Baker <baker at ctis dot af dot mil>
Alex Ranous <ranous at nsa dot hp dot com>
Mark Patton <mark_patton at tx72 dot mot dot com>
Steffen Winther Sorensen <sts at siimnet dot dk>
Troy Warner <tnw1 at core01 dot osi dot com>
Stacy Mahlon <mcs at contour dot mayo dot edu>
Charles Eads <eads at synoptics dot com>
Mark Frutig <mfrutig at fnbc dot com>
Todd Hoff <thm at ictv dot com>
George <george at truffula dot fp dot trw dot com>
Brad Needham <bneedham at ix dot netcom dot com>
Leslee Xu <lxu at ics dot uci dot edu>
Detlef Becker <Detlef dot Becker at med dot siemens dot de>
Bruce Worden <bruce at betsy dot gps dot caltech dot edu>
Chris Tarr <ctarr at objectspace dot co>
Bill Sears <wsears at world dot std dot com>
Greg Lavender <g dot lavender at isode dot com>
Steve Warwick <sjw at aesthetic dot com>
Mats Sundvall <sundvall at perrier dot embnet dot se>
Andreas Ueltschi <Andreas dot Ueltschi at ska dot com>
Nigel Hooke <n dot hooke at trl dot oz dot au>
Medhi Tabatabai <Mehdi dot Tabatabai at ed dot nce dot sita dot int>
Stuart Powell <stuartp at ot dot com dot au>
Bin Mu <mubin at wfg dot com>
Andrew McGowan <mcgowan at wg2 dot waii dot com>
Ken Konecki <kenk at wfg dot com>
John P. Hearn <jph at ccrl dot nj dot nec dot com>
Giang Hoang Nguyen <yang at titan dot com>
Carlos Garcia Braschi <cgarcia at caramba dot tid dot es>
Jam Hamidi <jh1 at osi dot com>
Eric Vaughan <evaughan at arinc dot com>
Karlheinz Dorn <Karlheinz dot Dorn at med dot siemens dot de>
Gerhard Lenzer <Gerhard dot Lenzer at med dot siemens dot de>
Steve Ritter <ritter at titan dot com>
Chandra Venkatapathy <cvenkat at develop dot bsis dot com>
Matt Stevens <mstevens at kirk dot softeng dot infonautics dot com>
Bob Vistica <robertv at ims dot com>
David Trumble <trumble at cvg dot enet dot dec dot com>
George Reynolds <george at dvcorp dot com>
Hans Rohnert <hans dot rohnert at mchp dot siemens dot de>
Alex V. Maclinovsky <alexm at teltrunk1 dot tait dot co dot nz>
Todd Blanchard <tblancha at evolving dot com>
Rob Clairmont <rclairmo at bnr dot ca>
Christian Millour <chris at etca dot fr>
Neil B. Cohen <nbc at cisco dot com>
Dieter Quehl <Dieter dot Quehl at med dot siemens dot de>
Reginald S. Perry <perry at zso dot dec dot com>
James Morris <jmorris at aurora dot apana dot org dot au>
Mark Seaborn <mseaborn at itthp1 dot comm dot mot dot com>
Phil Brooks <phil_brooks at mentorg dot com>
E. Jason Scheck <jasons at ims dot com>
Daniel Proulx <daproulx at qc dot bell dot ca>
Bill Tang <tang at tekats dot com>
John Huchinson <hutchiso at epi dot syr dot ge dot com>
Jack Erickson <JErickson at exchange dot ml dot com>
Byron Walton <bwalton at hughes dot scg dot hac dot com>
Bill Lear <rael at anarchy dot cybercom dot net>
Mark Zusman <marklz at topaz dot technion dot ac dot il>
Aurelio Nocerino <aurelio at irsipcs2-27-le0 dot irsip dot na dot cnr dot it>
Walt Akers <akers at cebaf dot gov>
Greg Baker <GBaker at p01 dot az15m dot iac dot honeywell dot com>
Alexandre Karev <karev at vxcern dot cern dot ch>
Pramod Kumar Singh <pramod at saturn dot miel dot mot dot com>
Bryon Rigg <bryon_rigg at mail dot telecorpsys dot com>
Brad Brown <Brad dot A dot Brown at usa dot alcatel dot com>
Patty Genualdi <genualdp at agcs dot com>
Eshel Liran <liran at bimacs dot cs dot biu dot ac dot il>
Mick Adams <eeimas at eei dot ericsson dot se>
Chris Eich <Chris_Eich at optilink dot optilink dot dsccc dot com>
Mike Flinn <mike dot flinn at smtpgate dot aws dot waii dot com>
Audun Tornquist <Audun dot Tornquist at iu dot hioslo dot no>
Sandeep Joshi <sandeepj at emailbox dot att dot com>
Bernd Hofner <hofner at pd dot et-inf dot uni-siegen dot de>
Craig Perras <cperras at watchguard dot com>
Kirk Sinnard <kirk dot sinnard at lawson dot com>
Matthew Newhook <matthew at ooc dot com>
Gerolf Wendland <wendland at hpp015 dot mch2 dot scn dot de>
Phil Mesnier <mesnier_p at ociweb dot com>
Ross Dargahi <rossd at krinfo dot com>
Richard Orr <rorr at costello dot den dot csci dot csc dot com>
Rich Ryan <rryan at mseng dot kla dot com>
Jan Rychter <jwr at icm dot edu dot pl>
Tom Marrs <0002104588 at mcimail dot com>
Bob Olson <olson at mcs dot anl dot gov>
Jean-Francois Ripouteau <Jean-Francois dot Ripouteau at netsurf dot org>
Ajit Sagar <asagar at spdmail dot spd dot dsccc dot com>
Ashish Singhai <singhai at delirius dot cs dot uiuc dot edu>
David Sames <David dot L dot Sames dot 1 at gsfc dot nasa dot gov>
Gonzalo Diethelm <gdiethelm at dcv dot cl>
Raj <raj at itd dot ssb dot com>
Darrin Edelman <darrin at aetherworks dot com>
Steve Weismuller <spweismu at rsoc dot rockwell dot com>
Eric C. Newton <ecn at fault-tolerant dot org>
Andres Kruse <andres dot kruse at creaturelabs dot com>
Ramesh Nagabushnam <rcn at nynexst dot com>
Antonio Tortorici <antonio at rh0011 dot roma dot tlsoft dot it>
Nigel Lowe <nigel at nt dot com>
Tom Leith <trl at icon-stl dot net>
Michael Fortinsky <mike at vocaltec dot com>
Marco Sommerau <sommerau at matisse dot informatik dot uni-stuttgart dot de>
Gary Salsbery <gsalsber at simsun dot atsc dot allied dot com>
Eric Beser <beser at simsun dot atsc dot allied dot com>
Alfred Keller <kellera at pop dot eunet dot ch>
John Lu <johnlu at f1 dot telekurs dot ch>
James Mansion <james at wgold dot demon dot co dot uk>
Jesper S. M|ller <Jesper dot Moller at ameridata dot dk>
Chris Lahey <clahey at cccis dot com>
Michael R"uger <m_rueger at syscomp dot de>
Istvan Buki <istvan dot buki at euronet dot be>
Greg Wilson <gvwilson at vnet dot ibm dot com>
Garrett Conaty <gconaty at outbackinc dot com>
Brad Flood <BFLOOD at slc dot unisysgsg dot com>
Marius Kjeldahl <marius at funcom dot com>
Steve Huston <shuston at riverace dot com>
Eugene K. Plaude <jec at r-style dot msk dot su>
Joseph DeAngelis <bytor at faxint dot com>
Kim Gillies <gillies at noao dot edu>
Luca Priorelli <lucapri at mbox dot vol dot it>
Alan Stewart <axs2 at osi dot com>
Hani Yakan <hani at i-online dot com>
William L. Gerecke <gerecke at rayva dot org>
Craig Johnston <johnston at tortilla dot ds dot boeing dot com>
Pierre-Yves Duval <duval at cppm dot in2p3 dot fr>
Rochi Febo Dommarco <rocky at alter dot it>
Jonathan Biggar <jon at biggar dot org>
Scott Shupe <shupes at mitre dot org>
Chuck Gehr <gehr at sweng dot stortek dot com>
Avi Nash <anash at RedBrick dot COM>
Padhu Ramalingam <padhu at magicnet dot net>
Jay Denkberg <jay_denkberg at comverse dot com>
Ayman Farahat <afarahat at CCGATE dot HAC dot COM>
Tilo Christ <christ at swl dot fh-heilbronn dot de>
rev <Ari_Erev at icomverse dot com>
Hamutal Yanay <Hamutal_Yanay at icomverse dot com>
Vital Aza <va3 at cs dot wustl dot edu>
Alex Villazon <villazon at cui dot unige dot ch>
David Artus <david dot artus at sbil dot co dot uk>
Todd Barkalow <todd_barkalow at stortek dot com>
Alexander Smundak <sasha at migration dot com>
Thilo Kielmann <kielmann at informatik dot uni-siegen dot de>
Matthias Kerkhoff <make at cs dot tu-berlin dot de>
Fred LaBar <flabar at fallschurch dot esys dot com>
Hanan Herzog <hanan at wallenda dot stanford dot edu>
Eric Parker <eparker at credence dot com>
James Michael Dwyer <jdwyer at knox dot edu>
Arun Katkere <katkere at praja dot com>
Bob Dunmire <bobd at titan dot com>
Sandro Doro <sandro at dorogroup dot com>
Robert Lyng <rlyng at synertech dot highmark dot com>
Phil Logan <phill at in dot ot dot com dot au>
John Cosby <John dot D dot Cosby at cpmx dot saic dot com>
Wayne Vucenic <wvucenic at netgate dot net>
Harry Gunnarsson <hg at carmenta dot se>
James CE Johnson <JamesJohnson at tragus dot org>
Samuel_Bercovici <Samuel_Bercovici_at_EFT__AD2 at mail dot icomverse dot com>
Per Andersson <Per dot Andersson at hfera dot ericsson dot se>
Anthony McConnell <Tonym at datel dot demon dot co dot uk>
Mark Rabotnikov <mark at usp dot elscintcorp dot co dot il>
John Bossom <John dot Bossom at Cognos dot COM>
Rino Simioni <sir at necsy dot it>
Slawomir Kuzniar <kuzniar at Bear dot COM>
Rob Jordan <jordan at hursley dot ibm dot com>
Michael Maxie <maxie at acm dot org>
John Cosby <John dot D dot Cosby at cpmx dot saic dot com>
Nigel Owen <Nigel at voicelink dot co dot nz>
Jorn Jensen <jornj at funcom dot com>
Paul Roman <proman at npac dot syr dot edu>
Dave Mayerhoefer <davem at lynx dot com>
Bert Craytor  <Bert_Craytor at peoplesoft dot com>
Joey Zhu <joey dot zhu at wcom dot com>
Arthur J. Lewis <hfdh99a at prodigy dot com>
Michael R. MacFaden <mrm at yagosys dot com>
Paul Han <phan at CCGATE dot HAC dot COM>
Jeff Morgan <jeff at audioactive dot com>
Arturo Montes <mitosys at colomsat dot net dot co>
Elliot Lau <eeklau at post1 dot com>
Mark Wright <markw at odi dot com dot au>
Michael Newton <michaeln at in dot ot dot com dot au>
Kumar Neelakantan <kneelaka at painewebber dot com>
Scott Halstead <scott dot halstead at gs dot com>
Jean-Marc Strauss <jms97 at club-internet dot fr>
Adam Porter <aporter at cs dot umd dot edu>
Hakan Kallberg <hk at simulina dot se>
Eric Dean Russell <edrusse at somnet dot sandia dot gov>
Daniel Montalibet <daniel_montalibet at stortek dot com>
Norbert Rapp <norbert dot rapp at nexus-informatics dot de>
Ganesh Pai <GPai at sonusnet dot com>
Berni Merkle <merkle at io dot freinet dot de>
Tom Wright <twright at gem-net dot demon dot co dot uk>
Torbjorn Lindgren <tl at funcom dot no>
Mike Bernat <sagmb at sagus dot com>
Brian Mendel <brian dot r dot mendel at boeing dot com>
Jeremy Buch <davinci at nortel dot ca>
Kevin Boyle <kboyle at sanwafp dot com>
Kevin Martindale <kevin_martindale at stortek dot com>
Luis Lopes <llopes at tick dot rcc dot Ryerson dot CA>
Adrian Salt <acsalt at magi dot com>
Hongbo Xu <hxu at mas dot co dot nz>
Michael Hartman <c62nt57 at ibx dot com>
Tom Dobridge <dobridge at persimmon dot com>
Rich Christy <rchristy at cccis dot com>
Satoshi Ueno <satoshi dot ueno at gs dot com>
Eugene R. Somdahl <gene at endo dot com>
Robert Head <rhead at mail dot virtc dot com>
Ivan Murphy <Ivan dot Murphy at med dot siemens dot de>
Jan Perman <jan dot perman at osd dot uab dot ericsson dot se>
Shankar Krishnamoorthy <kshankar at lucent dot com>
Reza Roodsari <reza at sprynet dot com>
Jim Crossley <jim at lads dot com>
Johannes Gutleber <Johannes dot Gutleber at cern dot ch>
Yigong Liu <ygl at emailbox dot lucent dot com>
Erik Urdang <erik at bhi dot com>
Mike Schweiger <mikes at bmo dot com>
Anthony Mutiso <amutiso at hughes dot cg dot hac dot com>
Jeff R. Hayes <Jeff dot Hayes at osi dot com>
David Brackman <dbrackman at OhioEE dot com>
Dave Moore <dave dot moore at gecm dot com>
Joseph Cross <joseph dot k dot cross at lmco dot com>
Cherif Sleiman <sleiman at research dot moore dot com>
Stefan Ericsson <Stefan dot Ericsson at osd dot uab dot ericsson dot se>
Thanh Ma <tma at encore dot com>
Oleg Krivosheev <kriol at fnal dot gov>
Stephen Coy <stevec at wsa dot com dot au>
Bob Laferriere <laferrie at gsao dot med dot ge dot com>
Satheesh Kumar MG <satheesh at india dot aspectdv dot com>
Karen Amestoy <kamestoy at CCGATE dot HAC dot COM>
Jeff Richard <jrichard at OhioEE dot com>
Samuel Melamed <sam at vdo dot net>
Vladimir Schipunov <vlad at staff dot prodigy dot com>
Felix Popp <fxpopp at immd9 dot informatik dot uni-erlangen dot de>
Billy Quinn <bquinn at lads dot com>
Michael McKnight <mcknight at signalsoftcorp dot com>
Huiying Shen <shen at environ dot org>
Alex Chan <Alex dot Chan at Aspect dot com>
Aaron Valdivia <avaldivia at hns dot com>
Edan Ayal <edanayal at yahoo dot com>
Jeffrey Peterson <jpeterson at fallschurch dot esys dot com>
Neil Lavelle <nlavelle at imcl dot com>
Steven Wohlever <wohlever at mitre dot org>
Manojkumar Acharya <mja at cvsf325 dot gpt dot co dot uk>
Evgeny Beskrovny <evgeny_beskrovny at icomverse dot com>
Kirill Rybaltchenko <Kirill dot Rybaltchenko at cern dot ch>
Laura Paterno <lpaterno at d0chb dot fnal dot gov>
Ben Eng <ben at jetpen dot com>
Mike Kamrad <J dot M dot KAMRAD dot II at cdev dot com>
Marios Zikos <zikos at csi dot forth dot gr>
Mark L Boriack <mboriack at dctc dot saic dot com>
Mark Hyett <mhyett at dctd dot saic dot com>
Valik Solrzano Barboza <valik at xs4all dot nl>
John Connett <jrc at skylon dot demon dot co dot uk>
Tom Arbuckle <arbuckle at uran dot informatik dot uni-bonn dot de>
Stephen Henry <shenry at mdc dot com>
Dani Flexer <danif at ivory-sw dot com>
Michael Hoffman <Hoffman_Michael at mac-mailserver dot atc dot ll dot mit dot edu>
John Lindal <jafl at cheshire-cat dot caltech dot edu>
Dustin Laurence <laurence at alice dot wonderland dot caltech dot edu>
Ernie Makris <emakris at ziplink dot net>
Timothy A. Brown <tabrown at montana dot com>
Pat McNerthney <ace at mcnerthney dot com>
Lori Anderson <lori at probita dot com>
Erik Margraf <erik at asgard dot gud dot siemens dot co dot at>
Bryan Doerr <Bryan dot S dot Doerr at boeing dot com>
Adam Miller <adam at royalblueny dot com>
Thomas Jordan <ace at programmer dot net>
Keith Nicewarner <Keith.Nicewarner at SpaceDev dot com>
Frederic Andres <andres at rd dot nacsis dot ac dot jp>
Achint Sandhu <sandhu at nortelnetworks dot com>
Mitch Kuninsky <Mitch_Kuninsky at avid dot com>
Alex Chan <Alex dot Chan at Aspect dot com>
Jeff Hellzen <JHellzen at hwdcsaws dot cahwnet dot gov>
Thomas Venturella <thomas dot e dot venturella at boeing dot com>
Philippe O'Reilly <philippe at robot dot ireq dot ca>
Stan Leeson <STANLEY dot D dot LEESON at cdev dot com>
Richard Keizer <RICHARD dot L dot KEIZER at cdev dot com>
Edgar Villanueva <edgarvil at ix dot netcom dot com>
Oliver Kellogg <Oliver dot Kellogg at vs dot dasa dot de>
Dave Meyer <dmeyer at std dot saic dot com>
Thomas Hampson <thomas dot hampson at lmco dot com>
Jay Kistler <jjk at pa dot dec dot com>
Scott Snyder <snyder at d0sgif dot fnal dot gov>
Mark Evans <mark dot evans at tandem dot com>
Todd Pack <todd at rwii dot com>
Mark Maris <maris at scgp dot com>
Jason Katz <Jason at email dot rts-inc dot com>
Jim Penny <jpenny at universal-fasteners dot com>
Chris Ryan <cryan at qualcomm dot com>
J dot  Russell Noseworthy <rnosewor at objectsciences dot com>
Carol Sanders <Carol dot Sanders at Boeing dot com>
Jerry Bickle <glbick at most dot fw dot hac dot com>
Paul von Behren <Paul_von_Behren at stortek dot com>
Sudish Joseph <sj at eng dot mindspring dot net>
Loren Rittle <rittle at comm dot mot dot com>
Alexander Ovsiankin <sasha at technologist dot com>
Ravi Nagabhyru <ravi at future-minds dot com>
Tom Brusehaver <tgb at cozy dot netco dot com>
Dave Tallman <tallman at acsys dot com>
Monish Rajpal <monish at cs dot jhu dot edu>
Garry Brother <gmbroth at romulus dot ncsc dot mil>
Andreas Schuelke <Andreas dot Schuelke at med dot siemens dot de>
Ganapathi <guns at fs dot IConNet dot NET>
James Garrison <jhg at austx dot tandem dot com>
Brad Walton <brad dot walton at transnexus dot com>
Paul Motuzenko <p_motuzenko at hotmail dot com>
Kurt Sussman <kls at best dot com>
Rob Thornton <ret1 at cec dot wustl dot edu>
Chanaka Liyanaarachchi <chanaka at ociweb dot com>
Saneyasu <sane at sail dot t dot u-tokyo dot ac dot jp>
Steve Kay <slk1 at icore dot ih dot lucent dot com>
Greg White <gwhite at northlink dot com>
Ki-hyun Yoon <abird at nextware dot co dot kr>
Umar Syyid <usyyid at hotmail dot com>
Bill Fulton <Bill_A_Fulton at raytheon dot com>
Amancio Hasty <hasty at rah dot star-gate dot com>
Zoran Ivanovic <Zoran_Ivanovic at i2 dot com>
Sree Oggu <dharani at sutmyn dot com>
James Risinger <jrisinger at SignalSoftCorp dot com>
Leo Modica <lmodica at lucent dot com>
Bob Scott <bob_scott at broder dot com>
Mark Kettner <m dot kettner at elsevier dot nl>
Kent Watsen <kent at watsen dot net>
Chris Healey <chealey at entera dot com>
Philippe Klein <Philippe_Klein at vocaltec dot com>
William S. Lear <rael at dejanews dot com>
John Geiss <John_T_Geiss at raytheon dot com>
Ernesto Guisado <eguisado at saincotrafico dot com>
Stuart Myles <smyles at wsj dot dowjones dot com>
Lothar Werzinger <lothar at tradescape dot biz>
Andrew Harbick <aharbick at opentext dot com>
Pavel Motuzenko <p_motuzenko at hotmail dot com>
Ross J. Lillie <lillie at rsch dot comm dot mot dot com>
Sam Hauer <shauer at nmo dot gtegsc dot com>
Frank J. Hodum <FRANK.J.HODUM at saic dot com>
David Miron <dxm at crapper dot dsto dot defence dot gov dot au>
Anton van Straaten <anton at appsolutions dot com>
Joe Covalesky <joe at nowsol dot com>
Bill Backstrom <backstr at anubis dot network dot com>
Jeff Franks <Jeffrey_Franks at i-o dot com>
John Mulhern <9107 at mn3 dot lawson dot lawson dot com>
Johan Lundin <johan at lundin dot com>
Eric Powers <powerg at deltanet dot com>
Gabriel Lima <gali at enea dot se>
Doug Anderson <dla at home dot com>
Hongyin Quan <hq1 at arl dot wustl dot edu>
Maximilian Hoferer <mhoferer at krones dot de>
Kevin Stanley <kstanley1 at mdc dot com>
Jeff Greif <jmg at trivida dot com>
Jeff McDaniel <jsmpcdani at gte dot net>
Andreas Geisler <Andreas dot Geisler at erl9 dot siemens dot de>
Bob McWhirter <bob at werken dot com>
Daniel Winder <Daniel dot Winder at cern dot ch>
Zheng Han <zhan at glenvan dot glenayre dot com>
Christa Schwanninger <christa dot schwanninger at mchp dot siemens dot de>
Byron Harris <harris_b at ociweb dot com>
Barney Dalton <barneyd at cyllene dot uwa dot edu dot au>
Peter Gorgia <Peter dot Gorgia at libnet dot com>
Dirk Broer <Dirk dot Broer at gsfc dot nasa dot gov>
Joseph E. LaPrade <laprade at engw dot ana dot bna dot boeing dot com>
Goran Lowkrantz <Goran dot Lowkrantz at infologigruppen dot se>
Susan Liebeskind <susan dot liebeskind at gtri dot gatech dot edu>
Dana Hackman <upboms at network-one dot com>
Margherita Vittone Wiersma <vittone at fndaub dot fnal dot gov>
Priya Narasimhan <priya at cs dot cmu dot edu>
Jeff Hopper <jhopper at nosc dot mil>
Mats Nilsson <mats dot nilsson at xware dot se>
Dongwook Kim <baksoo at dbserver dot kaist dot ac dot kr>
Don Davis <ded at heart dot jhuapl dot edu>
Alberto Villarica <Alberto dot Villarica dot rav at nt dot com>
XuYifeng <xuyf at pop dot zg169 dot net>
Tom Shields <Shields at MarsHotel dot CMPU dot NET>
Krishna Padmasola <pkrishna at cybercash dot co dot in>
Andre Folkers <folkers at informatik dot mu-luebeck dot de>
Paul Sexton <pauls at ENTERPRISE dot bt dot co dot uk>
Marc Lehmann <pcg at goof dot com>
Anne Blankert <anne at geodan dot nl>
Raja Ati <rati at montereynets dot com>
Clinton Carr <ccarr at websocket dot com>
Peter Liqun Na <liqunna at cs dot sunysb dot edu>
Frank Adcock <frank at bushlife dot com dot au>
Xu Yifeng <xuyifeng at www dot kali dot com dot cn>
Valery Arkhangorodsky <valerya at servicesoft dot com>
Alan Scheinine <scheinin at crs4 dot it>
Andrew G. Harvey <agh at cisco dot com>
Dann Corbit <DCorbit at SolutionsIQ dot com>
James <james at tsunami dot com>
Jason Milley <Jason dot Milley dot jcmilley at nt dot com>
Ulf Jaehrig <jaehrig at desys dot com>
Peter Nordlund <petern at nada dot kth dot se>
Mark Weel <weel at lucent dot com>
Tres Seaver <tseaver at palladion dot com>
Erik Koerber <erik dot koerber at siemens dot at>
Eric R. Medley <palantir at net56 dot net>
David O'Farrell <dave at virgo dot aersoft dot ie>
Amir Bahmanyari <amir at peakstone dot com>
Ian Wright <I dot Wright at elsevier dot co dot uk>
David Janello <David dot Janello at abnamro dot com>
Rich Wellner <rw2 at wellner dot org>
Fernando D. Mato Mira <matomira at acm dot org>
Jonathan Reis <reis at stentor dot com>
Seung-Lee Hoon <tarjan at lgsoft dot com>
Russell L. Carter <rcarter at pinyon dot org>
Bill Hall <hts at gte dot net>
Brian Gilstrap <gilstrap_b at ociweb dot com>
Balaji Srinivasan <balaji at cplane dot com>
Anders W. Tell <anderst at toolsmiths dot se>
Larry Lachman <larry at paradigmsim dot com>
Terry Rosenbaum <Terry dot Rosenbaum at Radiology dot MSU dot edu>
Rainer Blome <rainer_blome at de dot ibm dot com>
Kirk Ellett <kellett at mdc dot com>
Sunil Kumar <skumar at sutmyn dot com>
T Stach <t dot stach at inobis dot de>
Ron Barack <r dot barack at inobis dot de>
Daniel Nieten <dnieten at bellsouth dot net>
Paul K. Fisher <pfisher at plexware dot com>
Jim Buck <jim at nowsol dot com>
Olivier Lau <olivier_lau at srtelecom dot com>
Achim Stindt <stindt at conbis dot de>
Fredrik Lindahl <fredrik dot lindahl at ausys dot se>
Joseph Weihs <joseph-w at Orbotech dot Co dot IL>
Serge Kolgan <skolgan at trigraph dot com>
James Megquier <jmegquier at gmail dot com>
Martin Krumpolec <krumpolec at asset dot sk>
Michael Thomas <Michael dot Thomas at Australia dot Boeing dot com>
Vicentini Emanuele <arena dot sci dot univr dot it>
Bob Price <Bob_Price at tssdc dot saic dot com>
Ramiro Penataro Blanco <ramiro dot penataro at iac dot es>
Sigg Pascal <pascal dot sigg at zkb dot ch>
Ivan Leong <ivanl at pacific dot net dot sg>
Virginie Amar<vamar at amadeus dot net>
Tom Ziomek <tomz at cc dot comm dot mot dot com>
Hamish Friedlander <hamishf at usa dot net>
Mark De Jong <mdj at intervu dot net>
Knut Johannessen <knutj at funcom dot com>
Leif Jakobsmeier <leif at informatik dot uni-frankfurt dot de>
Jon Lindgren <jlindgren at SLK dot com>
Steve Vinoski <vinoski at gmail dot com>
Christian Mueffling <cvm at aiss dot de>
Victor Yu <victor dot yu at computechnics dot com dot au>
Jeff Donner <JDonner at schedsys dot com>
Joe Loyall <jloyall at bbn dot com>
Stanislav Meduna <stanom at etm dot co dot at>
Christian Korn <korn at gate dot qaqa dot com>
Ron Barack <rab at terminal dot cz>
Steve Totten <totten_s at ociweb dot com>
Faron Dutton <fdutton at avxus dot com>
Gary York <gfyork at ix dot netcom dot com>
Patty Hair <patty at Lynx dot COM>
Ivan Pascal <pascal at info dot tsu dot ru>
William A. Hoffman <hoffman at crd dot ge dot com>
Mark Lucovsky <markl at microsoft dot com>
Greg Holtmeyer <greg dot holtmeyer at windriver dot com>
Jody Hagins <jody at atdesk dot com>
Patrice Bensoussan <pbensoussan at amadeus dot net>
Keith Brown <kalbrown at ix dot netcom dot com>
Barry Hoggard <hoggard at cfx dot com>
Peter J. Mason <peter dot mason at retriever dot com dot au>
Jerry D. De Master <jdemaste at rite-solutions dot com>
Greg Gallant <gcg at micrografx dot com>
wym <wym at dekang dot com>
Karel Zuiderveld <kzuiderveld at vitalimages dot com>
Mike Goldman <whig at by dot net>
Peter Gross <pgross at signalsoftcorp dot com>
Greg Ross <gwross at west dot raytheon dot com>
Stanford S. Guillory <sguillory at vignette dot com>
Peter Weat <weatp at syntron dot com>
Magnus Karlsson <magnus dot karlsson at syncom dot se>
Andreas Tobler <toa at pop dot agri dot ch>
John Aughey <jha at FreeBSD dot ORG>
Knut-Havard Aksnes <knut at orion dot no>
Eric Mitchell <emitchell at altaira dot com>
Tommy Andreasen <tommy dot andreasen at radiometer dot dk>
Slava Galperin <galperin at teknowledge dot com>
Jeff Olszewski <jolszewski at std dot saic dot com>
Sudhanshu Garg <sg2 at ladybug dot cec dot wustl dot edu>
Mike Preradovic <michael_preradovic at epicdata dot com>
Greg Harrison <harrisog at erinet dot com>
Sangwoo Jin <swjinjin at sei dot co dot kr>
Jacques Salerian <Jacques dot Salerian at era dot ericsson dot se>
Steve Coleman <Steve dot Coleman at jhuapl dot edu>
Diethard Ohrt <Diethard dot Ohrt at siemens dot at>
Jacob Jones <Jacob dot J dot Jones at notesmta dot gd-is dot com>
Phil Ruelle <Phil dot Ruelle at adv dot sonybpe dot com>
Sush Bankapura <Sush dot Bankapura at sylantro dot com>
Eric Covington <eric at nowsol dot com>
Darren Whobrey <whobrey at fecit dot co dot uk>
Mason Taube <taube at westcon dot prc dot com>
Rod Joseph <rodjoseph at adt dot com>
Hans Horsmann <Hans dot Horsmann at icn dot siemens dot de>
Kevin Royalty <kevin dot l dot royalty at boeing dot com>
Souhad Mcheik <mcheiks at inrs-telecom dot uquebec dot ca>
Mark Little <M dot C dot Little at ncl dot ac dot uk>
Tim Stack <stack at cs dot utah dot edu>
Marc Engel <engelm at tlse dot sofreavia dot fr>
Uma Markandu <umam at nortelnetworks dot com>
Henrik Nordberg <hnordberg at lbl dot gov>
Tad Jarosinski <tadj at qualcomm dot com>
Andy Marchewka <AndyM at who dot net>
Neal Norwitz <nnorwitz at arinc dot com>
Frederic Maria <fmaria at lucent dot com>
David Hooker <DHooker at uniview dot net>
Christian Destor <Christian dot Destor at alcatel dot fr>
Andrew Hobson <ahobson at eng dot mindspring dot net>
Andre Folkers <folkers at informatik dot mu-leubeck dot de>
Torsten Kuepper <torsten dot kuepper at nokia dot com>
Hao Ruan <hruan at lucent dot com>
Alexander Davidovich <sasha at ms dot com>
Cristian Ferretti <cristian_ferretti at yahoo dot com>
N Becker <nbecker at fred dot net>
Yaolong Lan <lyaolong at cs dot sunysb dot edu>
Elias Sreih <sealstd1 at nortelnetworks dot com>
Liang Chen <chenl at nortelnetworks dot com>
Mark Laffoon <mark dot laffoon at burning-glass dot com>
Ti Z <tiz at cisco dot com>
Brian Dance <Brian_Dance at UECCS dot co dot uk>
Alexey Gadzhiev <alg at null dot ru>
Francois Bernier <fbernier at gel dot ulaval dot ca>
Bill Rizzi <rizzi at softserv dot com>
Peter Windle <peterw at ugsolutions dot com>
Jaepil Kim <jpkim at lgsoft dot com>
Dmitry Goldshtain <goldstein at arcormail dot de>
Carl Grinstead <grinstea at tsunami dot com>
Henric Jungheim <junghelh at pe-nelson dot com>
Michael Preobrazhensky <mikep at xpedite dot com>
Gregory D. Fee <gdf2 at cec dot wustl dot edu>
Roland Gigler <roland at mch dot pn dot siemens dot de>
Frank Buschmann <Frank dot Buschmann at mchp dot siemens dot de>
Eric Eide <eeide at cs dot utah dot edu>
Don Busch <busch_d at ociweb dot com>
Thomas Lockhart <Thomas dot G dot Lockhart at jpl dot nasa dot gov>
David Hauck <davidh at netacquire dot com>
Keith Rohrer <KRohrer at hnv dot com>
Tim Rose <trose at bridgewatersys dot com>
Sam Rhine <rmsolution20 at earchlink dot net>
Chris Schleicher <chrissch at cnd dot hp dot com>
Margaret Reitz <margaret at veritas dot com>
Thomas Mehrkam <Thomas_Mehrkam at i-o dot com>
Erik Ivanenko <erik dot ivanenko at utoronto dot ca>
Sarmeesha Reddy <sarmeesha at bigfoot dot com>
Steven Tine <stevent at tr dot comm dot mot dot com>
Dave Steele <Dave_Steele at Mitel dot COM>
Simeon Simeonov <simeons at allaire dot com>
David H. Whittington <david dot h dot whittington at boeing dot com>
Ian MacDonald <ianmacd at bg dot com>
Hans Ridder <ridder at veritas dot com>
Todd Mullanix <Todd dot Mullanix at sylantro dot com>
Hai Vu <Hai_Vu at Mitel dot Com>
Paul Francis <francip at navcanada dot ca>
Kristopher Johnson <kjohnson at gardnersys dot com>
Dave Butenhof <butenhof at zko dot dec dot com>
Dominic Williams <dom at connected-place dot co dot uk>
Srikumar Kareti <skareti at htc dot honeywell dot com>
Ian Pepper <ian at aptest dot ie>
Kevin Lyda <kevin dot lyda at trintech dot com>
James D. Rucker <jdrucker at huey dot jpl dot nasa dot gov>
Brian Wallis <Brian dot Wallis at sr dot com dot au>
Sandeep Goyal <sagoyal at hss dot hns dot com>
English Malc <englishmalc at my-dejanew dot com>
Frank O'Dwyer <fod at brd dot ie>
Long Hoang <LHoang at hwdcsaws dot cahwnet dot gov>
Steven D. Chen <sdc2951 at aw101 dot iasl dot ca dot boeing dot com>
Alain Magloire <alain at qnx dot com>
Jim Rogers <jrogers at viasoft dot com>
Nick Sawadsky <Nick_Sawadsky at BrooksSoftware dot com>
David Brownell <david-b at pacbell dot net>
Richard Stallman <rms at gnu dot org>
Casey Lucas <clucas at sabre dot com>
Brian C. Olson <bolson at rtlogic dot com>
Joseph A. Condlin <jac at slpmbo dot ed dot ray dot com>
Serge Du <du at lal dot in2p3 dot fr>
Mike Mazurek <mmazurek at std dot saic dot com>
Christian Schuderer <Christian dot Schuderer at erl9 dot siemens dot de>
John R. Taylor <jrtaylor at george dot lbl dot gov>
Bill Tovrea <gwtovrea at west dot raytheon dot com>
Wallace Owen <owen at visicom dot com>
Vyacheslav A. Batenin <slavikb at iname dot com>
Edwin D. Windes <ewindes at usa dot net>
Christopher Kohlhoff <chris at kohlhoff dot com>
Andreas Terstegge <andreas dot terstegge at nokia dot com>
Stefaan Kiebooms <stefaan at ghs dot com>
Keith Nichol <knichol at syscorp dot com dot au>
Rebecca Sanford <Rebecca dot A dot Sanford at gd-is dot com>
Ram Vishnuvajjala <rvishnuvajjala at lucent dot com>
Tom Bradley <thomas dot bradley at maisel-gw dot enst-bretagne dot fr>
Shaun Ohagan <jk13 at dial dot pipex dot com>
Dale Wood <dale_wood at Mitel dot com>
Robert Flanders <rdfa at eci dot esys dot com>
Gul Onural <Gul_Onural at Mitel dot COM>
Stephen E Blake <stephen_e_blake at email dot moore dot com>
Eric S Rosenthal <esr at netcom dot com>
Sridevi Subramanian <subrams at erols dot com>
Bruce Trask <brucetrask at aol dot com>
Jake Hamby <jehamby at anobject dot com>
Rick Weisner <Rick dot Weisner at East dot Sun dot COM>
Dennis C. De Mars <demars at mminternet dot com>
V dot  Lakshmanan <lakshman at doplight dot nssl dot noaa dot gov>
Hata Yoshiaki <hatay at alpha dot co dot jp>
Vidya Narayanan <CVN065 at lmpsil02 dot comm dot mot dot com>
Sean Landis <seanl at rsch dot comm dot mot dot com>
Youzhong Liu <yoliu at cise dot ufl dot edu>
John Weald <John dot Weald at sylantro dot com>
Gilbert Roulot <gilbert dot roulot at tts dot thomson-csf dot com>
Gildo Medeiros Junior <gildo at siemens dot com dot br>
Brian Peterson <bpeterson at globalmt dot com>
Fabrice Podlyski <podlyski at clrhp04 dot in2p3 dot fr>
Darren DeRidder <darren dot deridder at bridgewatersys dot com>
John Tucker <johnny_tucker at yahoo dot com>
Oleg Orlov <orlov at diasoft dot ru>
Timothy Canham <Timothy dot Canham at jpl dot nasa dot gov>
Randy Heiland <heiland at ncsa dot uiuc dot edu>
Joyce Fu <fu at gsao dot med dot ge dot com>
Surender Kumar <csk037 at lmpsil02 dot comm dot mot dot com>
Pradeep Avasthi <Pradeep dot Avasthi at motorola dot com>
Guicheney Christophe <guichene at clrhp04 dot in2p3 dot fr>
Madhu Konety <madhu dot konety at stdc dot com>
Isaac Stoddard <i_stoddard at hso dot link dot com>
Alvarez <alvarez at nagra-kudelski dot ch>
Peter Brandstrom <peter dot brandstrom at ericsson dot com>
Eugene Surovegin <ebs at glasnet dot ru>
Thaddeus Olczyk <olczyk at interaccess dot com>
John Chludzinski <john_chludzinski at jsims dot com>
Pedro Alves Ferreira <pedro dot ferreira at inescn dot pt>
Bruce Edge <bedge at sattel dot com>
Dan Butler <daniel dot g dot butler at boeing dot com>
Ron MacKenzie <ronm at SLAC dot Stanford dot EDU>
Craig Rodrigues <rodrigc at crodrigues dot org>
Phil Y. Wang <yhwang at cs dot columbia dot edu>
David Brock <dbrock at momsdesk dot com>
John Morey <jmorey at mmintl dot com>
Dwayne Burns <dburns at isrglobal dot com>
Denis Ouellet <douellet at gel dot ulaval dot ca>
Stefan Ullrich <SUllrich at Heimannsystems dot com>
Brian Raven <brianr at liffe dot com>
Gheorghe Aprotosoaie <gaprotosoaie at paragonms dot com>
Carsten Zerbst <zerbst at tu-harburg dot de>
Paul Calabrese <calabrese_p at ociweb dot com>
Stephane Chatre <schatre at oresis dot com>
James Whitledge <jwhitledge at spyglass dot com>
Erik Johannes <erik_johannes at teseda dot com>
Alex Hornby <alex at anvil dot co dot uk>
Riaz Syed <syed at Lynx dot COM>
Clarence M. Weaver <clarence_m_weaver at md dot northgrum dot com>
Roger Egbers <regbers at isrglobal dot com>
Ralf Kluthe <kluthe at iti dot mu-luebeck dot de>
Ruud Diterwich<R dot M dot L dot Diterwich at marin dot nl>
Bill Nesbitt <bnesbitt at magellan dot com>
Will Skunk <willskunk at homemail dot com>
David Digby <DWD15274 at glaxowellcome dot co dot uk>
Timothy Schimke <Schimke dot Timothy at LittonDSD dot com>
Jim Robinson <robinson at wdg dot mot dot com>
Peter Mueller <pmueller at decrc dot abb dot de>
Raghu Nambiath <raghun at wipinfo dot soft dot net>
Mike Gingell <mike dot gingell at drdc-rddc dot gc dot ca>
David McCann <david dot mccann at alcatel dot at>
Ruediger Franke <Ruediger dot Franke at decrc dot abb dot de>
Brian Jones <bjones at edgemail dot com>
Michael Garvin <mgarvin at nortelnetworks dot com>
Mike Vitalo <mvitalo at sprynet dot com>
Kirk Davies <Kirk dot Davies at pobox dot com>
Arno Pernozzoli <pernozzoli at bigfoot dot com>
Trey Grubbs <t-grubbs1 at raytheon dot com>
Matthias Schumann <matthias dot schumann at xcc dot de>
John Gathright <johng at keck dot hawaii dot edu>
Alexander Villatora <alex at cfx dot com>
Hoang Duong <hduong at lycosmail dot com>
Michael Roth <ombelico at gmx dot net>
Craig Anderson <chanders at timing dot com>
Mitsuhiko Hara <Mitsuhiko dot Hara at gemsa dot med dot ge dot com>
Weihai Yu <weihai at cs dot uit dot no>
Tal Lev-Ami <tla at tici dot co dot il>
Chris Zimman <chris at ishiboo dot com>
Rick Wesson <wessorh at ar dot com>
Sridhara Rao Dasu <dasu at slac dot stanford dot edu>
Walter Welzel <Walter dot Welzel at med dot siemens dot de>
Anthony Shipman <als at aaii dot oz dot au>
Tobin Bergen-Hill <tbhill at dctd dot saic dot com>
Toshio Hori <toshi at etl dot go dot jp>
John Mink <John dot Mink at nl dot origin-it dot com>
Duane Binder <duane dot binder at veritas dot com>
Randall Sharo <rasb at eci dot esys dot com>
Dave Madden <dhm at mersenne dot com>
Cliff_H_Campbell <Cliff_H_Campbell at res dot raytheon dot com>
Narendra Ravi <naren at cs dot ualberta dot ca>
Krishnakumar B. <kitty at neo dot shinko dot co dot jp>
David Sunwall <das at planet8 dot tds-eagan dot lmco dot com>
Brian Wright <bwright at paladyne dot com>
Yosi Sarusi <yosi at appstream dot com>
Robert Shewan <rshew at peri dot com>
Skye Sweeney <ssweeney at sanders dot com>
Lars Immisch <lars at ibp dot de>
Stefan Wendt <wendts at stud dot fh-luebeck dot de>
Herbert <herbert at shym dot com>
Clarence Bishop <clarence dot bishop at na dot marconicomms dot com>
Giga Giguashvili <gregoryg at ParadigmGeo dot com>
Philipp Slusallek <slusallek at graphics dot stanford dot edu>
Matthew Davis <matthew dot davis at solers dot com>
Janusz Stopa <jstopa at bear dot com>
Rusty Conover <rconover at zootweb dot com>
Phillippe Merle <Philippe dot Merle at lifl dot fr>
Mark Winrock <mwinrock at nortelnetworks dot com>
Boris Kaminer <boris_kaminer at mail dot ru>
Martin Botzler <martin dot botzler at mchp dot siemens dot de>
Lorin Hochstein <lmh at xiphos dot ca>
Wenli Bai <bai at gsao dot med dot ge dot com>
Harry Forry <harry_l_forry at res dot raytheon dot com>
Jose Rubio <jrubio at tr dot comm dot mot dot com>
Joerg Pommnitz <pommnitz at darmstadt dot gmd dot de>
Mogens Hansen <mogens_h at dk-online dot dk>
Shafiek Savahl <shafiek dot savahl at ericsson dot com dot au>
Pierre Grondin <pierre_grondin at srtelecom dot com>
John Masiyowski <jmasiyowski at fallschurch dot esys dot com>
Uwe Landrock <Uwe dot Landrock at med dot siemens dot de>
Klaus Banzer <klaus dot banzer at mchp dot siemens dot de>
Probal Bhattacharjya <probal at lucent dot com>
Dmitri Katchalov <Dmitri dot Katchalov at computershare dot com dot au>
Alok Gupta <alokg at ssind dot stpn dot soft dot net>
Chien Yueh <cyueh at viasoft dot com>
John K. Black <jblack at s22ct dot npt dot nuwc dot navy dot mil>
Kamen Penev <penev at earthlink dot net>
Gregory Yarmit <Gregory dot Yarmit at hboc dot com>
Jarek Tomaszewski <jarek-tomaszewski at vertel dot de>
Siegurd Weber <siegurdw at hotmail dot com>
Fabrizio Giannotti <fabrizio dot giannotti at alephinfo dot it>
Harald Finster <finster at ave dot ac dot agit dot de>
Fritz Bosch <FBosch at alcatel dot de>
Charles Frasch <cfrasch at spawar dot navy dot mil>
Chris Hafey <chafey at stentor dot com>
Rick Hess <rick dot hess at lmco dot com>
David Dunn <dunn at tripos dot com>
Jaymes Galvin <galvinj at agcs dot com>
Marat <c_marat at mypad dot com>
Sergey Nemanov <sergey dot nemanov at intel dot com>
Vladimir Kondratiev <vladimir dot kondratiev at intel dot com>
John Glynn <jglynn at bjc dot org>
Raymond Wiker <raymond at orion dot no>
Michael Pitman <mcp at mira dot net>
Joseph Jefferson <jjefferson at relinc dot com>
Engelbert Staller <engelbert dot staller at siemens dot at>
George Ball <george at jgserv dot co dot uk>
Dennis Noll <Dennis dot Noll at MW dot Boeing dot com>
Ronald Fischer <ronald dot fischer at icn dot siemens dot de>
Marvin Allen Wolfthal <maw at weichi dot com>
Dan Gilboa <dgilboa at qualcomm dot com>
Sean Boudreau <seanb at qnx dot com>
Shalini Yajnik <shalini at research dot bell-labs dot com>
Matt Thompson <thompsom at stoner dot com>
Peter C Chien <peter at nowsol dot com>
Bruce Alderson <balderso at triant dot com>
Christoph Poggemann <Christoph dot Poggemann at ptv dot de>
Travis Shirk <travis at pobox dot com>
Alain Sauron <sauron at syseca dot thomson-csf dot com>
David Delano <delanod at agcs dot com>
Boris Sukholitko <boriss at richfx dot com>
Brian Mason <bmason at oresis dot com>
Thomas Groth <groth dot th at nord-com dot net>
Damien Dufour <damien dot dufour at horanet dot com>
Paulo Breda Vieira <breda at inesca dot pt>
Samuel Stickland <sps196 at hotmail dot com>
Bryan Van de Ven <bryanv at arlut dot utexas dot edu>
Greg Siebers <gsiebers at vignette dot com>
Rob Gabbot <rgabbot at sandia dot gov>
Paul Carreiro <pcarreir at genuity dot com>
Jovan Kilibarda <jovank at realtimeint dot com>
Derek Dominish <Derek dot Dominish at Australia dot Boeing dot com>
Devesh Kothari <dkothari at atdsprint dot com>
Stephen Moon <smoon at oxmol dot co dot uk>
Hani Mawlawi <hmawlawi at wecan dot com>
Benedikt Eric Heinen <beh at icemark dot ch>
Jason Topaz <topaz at panix dot com>
Alexander Dergatch <dergy at websci dot ru>
Airat A. Sadreev <airat at hq dot tatenergo dot ru>
Klaus Hofmann <Klaus dot Hofmann at astrum dot de>
Miroslav Koncar <mkoncar at mail dot com>
Extern Chatterji <Extern dot Chatterji at kmweg dot de>
Zach Frey <zfrey at bright dot net>
Ruibiao Qiu <ruibiao at arl dot wustl dot edu>
Marcelo Matus <mmatus at atdesk dot com>
R Seshardi <rseshadri at lucent dot com>
Stephan Kulow <coolo at kde dot org>
Alexander Belopolsky <belopolsky at my-deja dot com>
Ben Bourner <ben at orion dot no>
Lalitha Chinthamani <lchinthamani at oresis dot com>
Thomas Huang <Thomas dot Huang at jpl dot nasa dot gov>
Sankaranarayanan K. V <sankar at miel dot mot dot com>
Ephraim Vider <eff at allot dot com>
Reid Spencer <reid at unique2u dot com>
Kevin Dalley <kevind at rahul dot net>
Jan Nielsen <jnielsen at campuspipeline dot com>
Jochen Linkohr <Jochen dot Linkohr at stz-rechnereinsatz dot de>
Mirko Brandner <mbrandner at yahoo dot com>
Yuval Yosef <yuvi at isdn dot net dot il>
Chad Elliott <elliott_c at ociweb dot com>
David X. Callaway <david dot x dot callaway at intel dot com>
Soren Ilsoe <soren dot ilsoe at tellabs dot com>
Eric Hopper <ehopper at globalmt dot com>
Martin Johnson <mjhn at bigpond dot net dot au>
Pierre Oberson <oberson at nagra-kudelski dot ch>
Chris Uzdavinis <chris at atdesk dot com>
Ishay Green <ishaygreen at hotmail dot com>
Andrey Nechypurenko <andreynech at yahoo dot com>
Charlie Duke <cduke at fvc dot com>
Jonathan Luellen <jluellen at scires dot com>
Andrew Psaltis <apsaltis at mho dot net>
Erik Jones <ej at pcslink dot com>
Ted Burghart <burghart at quoininc dot com>
Mike Winter <Mike dot Winter at Schwab dot com>
Judy Ward <ptr_corp at ptrsv1 dot pko dot dec dot com>
Ken Block <ptr_corp at ptrsv1 dot pko dot dec dot com>
Jamshid Afshar <jafshar at vignette dot com>
Jerry Jiang <javalist at 21cn dot com>
Rob Ruff <rruff at scires dot com>
Hugh Arnold <harnold at itginc dot com>
Hessel Idzenga <idzenga at lucent dot com>
Mark C. Barnes <marcus at muse3d dot com>
Suresh Kannan <kannan at uav dot ae dot gatech dot edu>
Alex Scholte <Alex dot Scholte at getronics dot com>
Greg Jansen <plaidriver at msn dot com>
Raj Narayanaswamy <rnarayanaswamy at hologic dot com>
Iain Melville <Iain dot Melville at opentrade dot co dot uk>
Daniel Lang <dl at leo dot org>
Chris Leishman <chris_leishman at freeonline dot com dot au>
Klemen Zagar <klemen dot zagar at irj dot si>
Rick Ohnemus <rjohnemus at systemware dot com>
Adamo, Vince <adamo at vignette dot com>
Defang Zhou <dzhou at inktomi dot com>
Dave Zumbro <zumbro_d at ociweb dot com>
Ted Nolan <ted at ags dot ga dot erg dot sri dot com>
Jianfei Xu <jxu at yahoo dot com>
Alvin C. Shih <acs at ml dot com>
J dot  Scott Evans <evans at cpi dot com>
Alex Luk <fluk7 at ie dot cuhk dot edu dot hk>
Kenneth Osenbroch <kennetho at stud dot cs dot uit dot no>
Jason Czavislak <jczavislak at osprey dot smcm dot edu>
Alex Chachanashvili <achacha at panix dot com>
Gilbert Grosdidier <Gilbert dot Grosdidier at in2p3 dot fr>
James Briggs <James dot Briggs at dsto dot defence dot gov dot au>
Herbert Wang <herb at nowsol dot com>
Anders Olsson <epkanol at s1 dot epk dot ericsson dot se>
Sergey Gnilitsky <SGnilitsky at telesens dot com dot ua>
David Wicks <wicks at swbell dot net>
Girish Birajdar <birajdar at lucent dot com>
Hajdukiewicz Markus <MHajdukiewic at heyde dot de>
Gerwin Robert <RGerwin at heyde dot de>
Alia Atlas <akatlas at bbn dot com>
David Hall <David dot Hall at grc dot nasa dot gov>
Todd Gruhn <tgruhn2 at mail dot com>
John Hickin <hickin at nortelnetworks dot com>
Alex Brown <abrown at 3com-ne dot com>
Rich Seibel <seibel_r at ociweb dot com>
Jim Scheller <csoftware at iname dot com>
Bob Bouterse <BBouterse at escient dot com>
Sandeep Adwankar <adwankar at rsch dot comm dot mot dot com>
W Craig Trader <ct7 at vitelinc dot com>
Bruce McIntosh <Bruce dot McIntosh at boeing dot com>
Natarajan Kalpathy <Natarajan_Kalpathy at mw dot 3com dot com>
David O'Farrell <eeidofl at eei dot ericsson dot se>
Bob Bouterse <BBouterse at escient dot com>
Malcolm Spence <spence_m at ociweb dot com>
Dong-Yueh Liu <dyliu at ms1 dot hinet dot net>
Craig Ball <Craig dot Ball at megasys dot com>
Norbert Krain <krain at lineone dot net>
Adrian Miranda <ade at psg dot com>
Cody Dean <cody dot dean at mindspring dot com>
Hans Scharkowitz <hanssch at my-deja dot com>
Charles Meier <cmeier at concentus-tech dot com>
Tim Sim <tim_sim at optusnet dot com dot au>
Shalabh Bhatnagar <shalabh_b at hotmail dot com>
Charles Scott <Charles dot P dot Scott at jpl dot nasa dot gov>
Espen Harlinn <espen at harlinn dot no>
mulder <mul at iitb dot fhg dot de>
Richard L. Johnson <rich at huey dot jpl dot nasa dot gov>
Tam Nguyen <tnguyen at viasat dot com>
Jeff Graham <jgraham at lincom-asg dot com>
Ralph Loader <suckfish at ihug dot co dot nz>
Ji Wuliu <jiwuliu0952_cn at sina dot com>
Wada Hiroshi <syu- at yhb dot att dot ne dot jp>
Sal Amander <virgis at megagis dot lt>
Torsten Pfuetzenreuter <torsten_pf at geocities dot com>
John M. Mills <jmills at tga dot com>
David McWeeny <davemcw at tr dot comm dot mot dot com>
Florian Lackerbauer <florian dot lackerbauer at mchp dot siemens dot de>
Manuel Benche <mbenche at jazz dot cs dot utsa dot edu>
Steve Luoma <stevel at dvc400 dot com>
Roger Tragin <r dot tragin at computer dot org>
Alex Bangs <bangs at entelos dot com>
Yangfen Qiu <yqiu at thomas dot com>
Johnny Chen <jchen at informatica dot com>
John Foresteire <John_J_Foresteire at res dot raytheon dot com>
Larry Peacock <larry at appsmiths dot com>
Francisco Bravo <emefjbm at madrid dot es dot eu dot ericsson dot se>
Antti Valtokari <Antti dot Valtokari at iocore dot fi>
John Smyder <jsmyder at salient dot com>
Mathew Samuel <Mathew dot Samuel at msdw dot com>
Conrad Hughes <conrad at baltimore dot ie>
John Rodgers <jrrodgers at acm dot org>
Charles Taurines <ctaurines at amadeus dot net>
James Lacey <James dot Lacey at motorola dot com>
Nick Pratt <npratt at microstrategy dot com>
Xiaojun Wu <depender at yahoo dot com>
George Lafortune <lafortg at res dot raytheon dot com>
Aoxiang Xu <axu at cim dot mcgill dot ca>
Dima Skvortsov <dskvortsov at mediasite dot com>
Moore Y. Cao <yilincao at lucent dot com>
Wai Keung Fung <wkfung at maews69 dot mae dot cuhk dot edu dot hk>
Michael Laing <mpl at flni dot com>
Benoit Viaud <benoit dot viaud at artal dot fr>
Ken Weinert <kenw at ihs dot com>
Ferran Boladeres Salvad <salvadof at iis dot fhg dot de>
Steve Vranyes <steve dot vranyes at veritas dot com>
Jim Melton <Jim dot Melton at lmco dot com>
Ron Klein <rklein at west dot raytheon dot com>
Anuj Singhal <ASinghal at mediasite dot com>
Henrik Kai <hka at ddk dot de>
Dominic Hughes <dominic at aersoft dot ie>
Lior Shalev <lior at bandwiz dot com>
Charlie Duke <cduke at www dot cuseemeworld dot com>
William Horn <whorn1984 at my-deja dot com>
Greg Hall <Greg dot Hall at Australia dot Boeing dot com>
Aviad Eden <Aviad_Eden at icomverse dot com>
Vianney Lecroart <acegsm at itineris dot net>
Russell Mora <russell dot mora at veritas dot com>
Samir Shaikh <SamirShaikh at bigfoot dot com>
Eric Yee <eyee at authentica dot com>
Matt Emerson <memerson at escient dot com>
Yiu L. Lee <yiulee at crosskeys dot com>
Pedro Brandao <pbrandao at inescn dot pt>
Hakon Innerdal <hakoni at funcom dot com>
Sami Aario <saempylae at hotmail dot com>
Ingo Dahm <ingo dot dahm at sun dot com>
Vijay Aswadhati <wyseman at planetbazaar dot com>
Xiaowen Wang <swangken at cfdlab dot ae dot utexas dot edu>
<vsg at ivl dot kiev dot ua>
Warren Miller <wmiller at stsci dot edu>
Youngkwan Cho <ykcho at ece dot arizona dot edu>
Dorr H. Clark <dhclark at Lynx dot COM>
Dave McNeely <Dave_McNeely at md dot northgrum dot com>
Eric Malenfant <EMalenfant at interstarinc dot com>
Roland Fischer <roli at gugus dot com>
Alexander Libman <alexl at aurema dot com>
Roger Larsson <larssoro at hotmail dot com>
Martin Stack <mstack at cambertx dot com>
Michael Ravits <miquel at bitsmart dot com>
Derek Viljoen <derek at viljoen dot com>
Hamed Azizadah <Azizadah at ix dot netcom dot com>
Keo Kelly <kkelly at fallschurch dot esys dot com>
Joachim Achtzehnter <joachima at netacquire dot com>
Tomer Amiaz <Tomer at bandwiz dot com>
Sergey Osokin <osa at freebsd dot org dot ru>
Nick Logvinov <nl at rpb dot ru>
Viatcheslav Batenine <slavikb at infra2000 dot com>
Shashi Bhushan <Shashi dot Bhushan at lmco dot com>
Javier Corrales <jcorrales at tcpsi dot es>
J dot  Randy Pitz <james dot r dot pitz at boeing dot com>
Richard Reitmeyer <richard at verecomm dot com>
Xavier Montet <montet at cena dot fr>
Letha Etzkorn <letzkorn at cs dot uah dot edu>
James Dabbs <jdabbs_home at mindspring dot com>
Matej Sekoranja <matej dot sekoranja at ijs dot si>
Mattias Eriksson <snaggen at acc dot umu dot se>
Nicoletta Viale <nicoletta dot viale at sodalia dot it>
George Reid <greid at entrenet dot com>
Kim Lester <Kim_R_Lester at rta dot nsw dot gov dot au>
Wilson Chan <wilson at i-finance dot com dot hk>
William Rucklidge <wjr at imarkets dot com>
Victor Krebss <lopik at delfi dot lv>
Chander P. Thareja <cthareja at ssind dot stpn dot soft dot net>
John Mills <jmills at tga dot com>
Haifeng Lee <haifeng at dset dot com dot cn>
Hans Utz <hans dot utz at informatik dot uni-ulm dot de>
Askok Kumar Kalanithi <k_ashok_kumar at yahoo dot com>
Chris Able <cable at scires dot com>
John Hiltenbrand <jhiltenb at uiuc dot edu>
Steve Hespelt <shespelt at bear dot com>
Peter Fischer <fischer at softec dot de>
Madhu Ramachandran <mramacha at atdsprint dot com>
Caleb Epstein <cae at home dot com>
Bruno Marconi <bmarconi at jetstream dot com>
Ken Childress <kchildre at uccs dot jpl dot nasa dot gov>
Michael Kramer <kramer at ave dot ac dot agit dot de>
Johnny Willemsen <jwillemsen at remedy dot nl>
Jonathan Astle <JNASTLE at dera dot gov dot uk>
Javier Lopez Sanchez <jlopez at uida dot es>
Nir Drang <Nir at bandwiz dot com>
Albert Wijnja <Albert dot Wijnja at meco dot nl>
Marcel Van Der Weert <mvdweert at aweta dot nl>
Mervyn Quah <mquah at guoco dot com>
Giovanni Zito <gzito at mbox dot thunder dot it>
Matthew Adams <madams at bexusa dot com>
Sameer Schabungbam <schabungbam at hss dot hns dot com>
Jeff Butler <jeff at panasas dot com>
Roland R�denauer <roland dot ruedenauer at freenet dot de>
John Buckman <john at lyris dot com>
Guy Rosen <grosen at bigfoot dot com>
<amoderni at viasoft dot com>
Bennett R. Stabile <bstabile at home dot com>
Paul Caffrey <denginere at hotmail dot com>
Low Aik long <aiklong at softhome dot net>
Michael Rinne <Michael dot Rinne at ZN-AG dot de>
Jaffar Shaikh <Jaffar_Shaikh at Mitel dot com>
Roger Beck <roger_beck at royalsun dot com dot au>
Trueman Bill <truemanbill at yahoo dot com>
Harold Bien <harold_bien at yahoo dot com>
Mateu Batle <mbatle at iname dot com>
Philip Miller <pwmiller at sarnoff dot com>
Base V Paul <basev at wiproge dot med dot ge dot com>
Evghenii Filippov <evghenii dot filippov at ngcan dot com>
Mike Curtis <mccurry at my-deja dot com>
Jessie Ragsdale <jessie dot ragsdale at latuslw dot com>
Shourya Sarcar <Shourya dot Sarcar at geind dot ge dot com>
Eric Crampton <EricCrampton at worldnet dot att dot net>
Sandip Patel <spatel at gigabitwireless dot com>
ChenXu <chenxu_xjtu at 263 dot net>
Vsevolod Novikov <novikov at df dot nnov dot rfnet dot ru>
Brendan Corcoran <brendan at jenisys dot com dot au>
Steve Sivier <Steven dot Sivier at Eng dot Sun dot COM>
Rick Schneeman <rschneeman at nist dot gov>
Klaus H. Wolf <hw at cyland dot com>
Jean-Christophe Dubois <jcd at one dot com>
Michael Hampel <michael dot hampel at fhs-hagenberg dot ac dot at>
Wei Zheng <weizheng at uiuc dot edu>
Bernd Annamaier <bernd dot annamaier at de dot adtranz dot com>
Joachim Tremouroux <joachim dot tremouroux at microresearch dot be>
Momchil Velikov <velco at fadata dot bg>
Munagala Ramanath <amberarrow at yahoo dot com>
Kevin Marshall <KCMarshall at att dot net>
David Channon <djc at uq dot net dot au>
Andy Guy <andy at emory dot demon dot co dot uk>
Oscar Rodriquez <Oscar dot Rodriquez at eln dot ericsson dot se>
Jonathan Cano <jcano at mmcnet dot com>
Alain Decamps <Alain dot Decamps at PIDPA dot be>
Paul Rubel <prubel at bbn dot com>
Jon Loeliger <jloeliger at chiaro dot com>
Ricardo Chan <ricchan at nortelnetworks dot com>
Sarabjeet Duhra <sarabjeet_duhra at hp dot com>
Michael Rushton <miker at mbmnz dot co dot nz>
Arno Pernozzoli <a dot bernicchia at tiscalinet dot it>
Calum Mitchell <calum dot mitchell at cp dot net>
Jerry Odenwelder <jerry dot o at mindspring dot com>
Kent Stewart <kbstew99 at hotmail dot com>
Alexander Kogan <jk at kogan dot nnov dot ru>
Michael Lindner <mikel at att dot net>
Arnaud Compan <compan at ipanematech dot com>
Michael Searles <msearles at base16 dot com>
Bogdan Jeram <bjeram at eso dot org>
Sebastian Schubert <sschuber at et dot htwk-leipzig dot de>
Li Zhou <lizhou at doc dot ece dot uci dot edu>
Shivakumar Patil <shivakumar dot patil at stdc dot com>
Steve Olson <Steve_Olson at illinova dot com>
Allen Broadman <broadmana at plural dot com>
Yuriy Zaporozhets <zaz at internet-zahav dot net>
Joe Guan <jguan at mistwireless dot com>
Attilio Dona <dona at sodalia dot it>
McGanahan Skjellifetti <cmeier at concentus-tech dot com>
Matthias Wittig <m dot wittig at com-on dot de>
David Allen <dallen at storm dot com>
Edwin McKay <mckayea at betalasermike dot com>
Scott Bolin <scott dot bolin at pgs dot com>
Mike Anderson <manderson at sonusnet dot com>
David Singer <David_P_Singer at res dot raytheon dot com>
Nick Lin <nicklin at vantech dot com dot tw>
Ron Hashimshony <Ron at bandwiz dot com>
Max Khon <mkhon at parallels dot com>
Jonas Nordin <jonas dot nordin at syncom dot se>
Jonathan Stockdale <Jonathan dot Stockdale at locusdialogue dot com>
Jean-Francois Daune <Daune at IBA dot be>
Wei Chiang <wei dot chiang at kolumbus dot fi>
Rick Stille  <stille_r at ociweb dot com>
Kirill Kuolechov <Kirill dot Koulechov at gmx dot net>
Edwin Wrench <Edwin dot Wrench at itt dot com>
Yung Trinh <ytrinh at email dot com>
Richard Eperjesi <reperjesi at yahoo dot com>
Ben Strong <bstrong at bluelark dot com>
David Karr <dkarr at bbn dot com>
Sathish Tiptur <Sathish dot Tiptur at geind dot ge dot com>
Lu Yunhai <luyunhai at huawei dot com>
Christian Ewald <christian dot ewald at zuehlke dot com>
Samuel Qi Luo <Samuel dot QiLuo at ericsson dot com dot au>
Sergey Logvin <S dot Logvin at telesens dot com dot ua>
Orlando Ribeiro <oribeiro at inescporto dot pt>
Doug Warner <dougwarner at micron dot com>
Kevin Regan <kregan at infoglide dot com>
Andy Olson <andrew dot olson at lmco dot com>
Max Voronoy <m dot voronoy at telesens dot com dot ua>
Alexandr Gavrilov <gavr at trustworks dot com>
Scott Gunn <gunns at tvratings dot com>
Mason Deaver <mason dot deaver at tripointglobal dot com>
Richard Huber <rhuber at amadeus dot net>
Glen Osterhout <gosterho at elronsw dot com>
YingLi <taoace at sina dot com>
Haka <newhaka at 21cn dot com>
Sam Chong <sam at i2i-inc dot com>
Virgilijus Globis <virgis at megagis dot lt>
Stefan Scherer <stefan_scherer at sepp dot de>
Pim Philipse <ppm at rogan-medical dot com>
Michael Grove <snowymike at aol dot com>
John Mackenzie <John dot Mackenzie dot extern at icn dot siemens dot de>
Ricky Marek <ricky at waveip dot com>
Patrick Maassen <patrick dot maassen at meco dot nl>
Christian Schuhegger <Christian dot Schuhegger at cern dot ch>
David L Smith  <david dot l dot smith at larc dot nasa dot gov>
Rainer Doerntge <doerntge at kiwilogic dot com>
Tompa <safdsfd at adsffda dot com>
Derek Horton <trohed at yahoo dot com>
Shameek Basu <sbasu at ivast dot com>
Dipti Jain <dijain at hss dot hns dot com>
Eric Zuur <Eric dot Zuur at meco dot nl>
Jeffrey J. Persch <hyperslug at yahoo dot com>
Rahul Shukla <rshukla at ggn dot aithent dot com>
Pierre Fayolle <fayolle at enseirb dot fr>
Greg McCain <greg dot mccain at veritas dot com>
Matt Cheers <matt dot cheers at boeing dot com>
Benjamin Fry <ben at thrownet dot com>
Ram Ben-Yakir <Ram at bandwiz dot com>
Eric Desamore <Eric dot Desamore at idtv dot bull dot net>
John Ashmun <John dot ASHMUN at esca dot com>
Przemyslaw Marciniak <pmarciniak at lucent dot com>
Carsten Madsen <com at navicon dot dk>
David Sperry <sperryd at res dot raytheon dot com>
Ted Horst <Ted dot Horst at ubsw dot com>
Diana Arroyo <darroyo at infoglide dot com>
Benny Prijono <bennylp at switchlab dot net>
Roland Ziegler <zi at ave-web dot de>
Stelios Sfakianakis <ssfak at ics dot forth dot gr>
Mike Letchworth <mletchwo at cisco dot com>
Brian Gilmer <Brian dot Gilmer at jhuapl dot edu>
James Dunham <James dot Dunham at esecurityinc dot com>
Juergen Pfreundt <Juergen dot Pfreundt at gft dot com>
Joel Sherrill <joel at OARcorp dot com>
Jules Colding <colding at 42tools dot com>
Stephane Pion <PION_Stephane at stna dot dgac dot fr>
Raghu Narayan <raghu_narayan at non dot hp dot com>
Richard Goold <rgoold at inexum dot com>
Nathalie D'Amours <nathalie at stentor dot com>
Albert Pariante <Albert dot Pariante at axcelis dot com>
Stephen Torri <s dot torri at lancaster dot ac dot uk>
Philippe Perrin <perrin at enseirb dot fr>
Gunnar Buason <a98gunbu at student dot his dot se>
David Hanvey <d dot hanvey at qub dot ac dot uk>
Jeff McNiel <Jeff_McNiel at VitalCom dot com>
Georg Lohrer <news at tropezien dot de>
Rachel G Smith <Rachel_G_Smith at raytheon dot com>
Tom Lake <Tom dot Lake at glossa dot co dot uk>
Logan Modahala <lmodahal at cisco dot com>
Jean Malenfant <jean dot malenfant at locusdialog dot com>
Victor Poznyak <VictorP at Webley dot COM>
Juan Jose Comellas <jcomellas at novamens dot com>
James Dorsey <James dot Dorsey at acxiom dot com>
Benot Desmeules <bdesmeules at eurekium dot com>
Tom Moog <tmoog at polhode dot com>
Stan Pinte <spinte at latinia dot com>
Dayisi <dayisi at 163 dot com>
Peter Georgakakis <peterg at gdc dot ca>
Richard Hardgrave <hardgrav at ttd dot teradyne dot com>
Mark Drijver <mdrijver at remedy dot nl>
Guy Bolton King <guy_bolton_king at non dot agilent dot com>
Carlton Teel <teel at signal-analysis dot com>
Alexandre Cervieri <alexandre dot cervieri at terra dot com dot br>
Darren Griffith <darren dot griffith at esecurityinc dot com>
Sam Mok <sam dot mok at westwave dot com>
Josh Curry <Josh dot Curry at lipper dot reuters dot com>
Norman Wilson <Norman dot Wilson at liffe dot com>
Itzhak Briskman <ibriskman at ndsisrael dot com>
James Kanyok <james dot kanyok at lmco dot com>
Corey Trager <corey dot trager at tradingtechnologies dot com>
Kirat Singh <kirat dot singh at gs dot com>
Oleg Pavliv <oleg_pavliv at yahoo dot com>
Frederick Niemi <fniemi at cisco dot com>
Andrew Munro <Andrew dot Munro at Australia dot Boeing dot com>
Nicolas Huynh <HUYNH_Nicolas at cena dot fr>
Kevin Burge <kcburge at systemware-inc dot com>
Wayne Erchak <wayne at stentor dot com>
Yew Khong See <seeyk at yahoo dot com>
Greg Thompson <gregt at ot dot com dot au>
Mike Pyle <mike dot pyle at burning-glass dot com>
Kobi Cohen-Arazi <kobi.cohenarazi at gmail dot com>
Israel Illescas Gomez <illescas at dycsa dot es>
Brodie Thiesfield <brodie dot thiesfield at activesky dot com>
Erik Toubro Nielsen <enielsen at mdsproteomics dot dk>
Masaoud T. Moonim <masaoud at mailandnews dot com>
Steve Witten <steve_witten at hp dot com>
Gil Rapaport <grapaport at comgates dot co dot il>
Boris Temkin <borist at allcharge dot com>
Steve Perkins <steve at steveperkins dot net>
Jerry Thomas <jto at consegna dot co dot uk>
cuma <cuma at dslab dot csie dot ncu dot edu dot tw>
Ron Heald <rheald at nrao dot edu>
Andrew Finnell <andrew at activesol dot net>
Dan Levi <DanL at webmap dot com>
Rob Andzik <andzik at rtlogic dot com>
James Maynard <James dot Maynard at ot dot com dot au>
Francois Rioux <rioux01 at gel dot ulaval dot ca>
Ophir Bleiberg <ophir at personeta dot com>
Allen Kelly <akelly at postx dot com>
Victor Pitchouc <pitchouc at tlsoft dot ru>
Srikanth Vedire <srvedire at yahoo dot com>
J Shane Culpepper <pepper at channelogics dot com>
Steffen Hieber <Steffen dot Hieber at erl9 dot siemens dot de>
Craig L. Ching <cching at mqsoftware dot com>
Ben Howard <Ben_Howard at raytheon dot com>
Rich Newman <RNewman at directv dot com>
Kelly F. Hickel <kfh at mqsoftware dot com>
David Trusty <david dot trusty at westwave dot com>
Burkhard Neppert <b dot neppert at dr-staedtler dot de>
Crawford Lodge <crawford dot lodge at xmlglobal dot com>
Scott Gaa <scott_a_gaa at md dot northgrum dot com>
Jenny Kowald <jkowald at oz dot agile dot tv>
Oren Zeev-Ben-Mordehai <oren at phonedo dot com>
Holger P. Krekel <krekel at merlinux dot de>
Glenn Popelka <gpp at gpopelka dot com>
Tibor Kiss <tkiss at mindmaker dot hu>
Robert Davidson <robert at rdavidson dot freeserve dot co dot uk>
Peter Crowther <peter dot crowther at networkinference dot com>
Mouna Seri <seri at crhc dot uiuc dot edu>
Vladimir Chovanec <Vladimir dot CHOVANEC at asset dot sk>
Alexander Rieger <Alexander dot Rieger at inka dot de>
Glen Coakley <gcoakley at mqsoftware dot com>
Scott Plant <splant at softhome dot net>
Wilfried Reinoehl <Wilfried dot Reinoehl at WiredMinds dot de>
Sangeetha Ramadurai <Sangeetha dot Ramadurai at geind dot ge dot com>
Victor Chernenko <v_chernenko at hotmail dot com>
Frank Wolf <fwolf at gum dot de>
Christophe Galerne <christophgalerne at earthlink dot net>
Scott Harris <harris_s at ociweb dot com>
Stefan Kluehspies <Stefan dot Kluehspies at gmx dot net>
Egon Wuchner <Egon dot Wuchner at mchp dot siemens dot de>
Ugendreshwar Kudupudi <ugenderk at rediffmail dot com>
Ekkehard Hoffmann <ehoffman at fzi dot de>
Ted Krovetz <ted at digitalfountain dot com>
Grzegorz Sikora <GSikora1 at era dot pl>
Fabris <fabris65 at my-deja dot com>
Christina Junru <junruli at lucent dot com>
Patrick Rabau <Patrick dot Rabau at htc dot com> <pr2345 at gmail dot com>
Hyman Rosen <hyrosen at mail dot com>
Torbjorn Backstrom <torbjorn dot k dot backstrom at volvo dot com>
Robert Burke <rburke2002 at yahoo dot com>
Olivier Brunet <o dot brunet at free dot fr>
Bret Clark <clarkbt at tvratings dot com>
Steve Rahn <SRahn at rim dot net>
Bertrand Motuelle <bertrand dot motuelle at effix dot fr>
Blair Zajac <blair at gps dot caltech dot edu>
Gary Duzan <gduzan at bbn dot com>
Garry Shamis <gshamis at yahoo dot com>
Eamonn Saunders <Esaunders at softricity dot com>
Yev Omenzel <omenzel at yahoo dot com>
John E Hein <jhein at timing dot com>
Tino Schwarze <tino dot schwarze at informatik dot tu-chemnitz dot de>
Gergely Timar <timarok at elender dot hu>
Peter Phillips <pphillip at home dot com>
Yury Kuznesov <yury at newst dot net>
Daniel Manfis <dany_100 at yahoo dot com>
Massimo Pichini <massimo at webbridges dot it>
Eyal Neuman <eyal at tradertools dot com>
Dave Hale <d dot hale at rane dot net>
Giulio Agostini <giulio dot agostini at db dot com>
Werner Buchert <w dot buchert at medat dot de>
Kevin Cline <krc at one dot com>
Mahesh Varadarajan <mahesh dot varadarajan at divatv dot com>
Olof Lindfors <olof dot lindfors at protegrity dot com>
Tom Wagner <TomW at CoManage dot net>
Kyle Brost <Kyle dot Brost at quest dot com>
Vincent Nicolas <Vincent dot Nicolas at Radiometer dot dk>
Jonathan Wackley <jwackley at mountaincable dot com>
Jan Kalin <jan dot kalin at zag dot si>
Andreas Huggel <huggel_andreas at isoftel dot com>
Alain Totouom <atotouom at gmx dot de>
Tushar Nair <ntushar at yahoo dot com>
Sunny Leung <sleung at opentext dot com>
Bonifides Bautista <earlboy at my-deja dot com>
Brad Hoskins <BHoskins at slo dot newport dot com>
Donald Acton <acton at opentext dot com>
Hagen Ulrich <ulrich dot hagen at siemens dot com>
Adrian Mercieca <adrian at anvilmalta dot com>
Lars Steubesand <lars dot steubesand at philips dot com>
Heping He <heping dot he at riskmetrics dot com>
Leo Kov <leo_kov at hotmail dot com>
Suresh N <suresh dot n at vergiltech dot com>
David Arndt <darndt at oresis dot com>
Tad Hetke <thetke at oresis dot com>
Graeme Clark <gclark at opentext dot com>
Gu Song <gusong_m at yahoo dot com>
Chris Hughes <chughes at stentor dot com>
Fikri Pribadi <fikri at ugotacall dot com>
Ioulia Passynkova <ioulia dot passynkova at nettest dot com>
Steve Osselton <steve at prismtechnologies dot com>
Doron Rajwan <doron at BANDWIZ dot COM>
Stuart Jones <sjones at clcsmail dot ksc dot nasa dot gov>
Guillaume Renaud <guillaume dot renaud at valtech dot fr>
Tommy Svensson <tommysvensson at yahoo dot com>
Jstwo <jstwo at writeme dot com>
Hartmut Quast <HartmutQuast at t-online dot de>
Ulrich Voigt <Ulrich dot Voigt at ddg dot de>
Syed Wasim Ali <syed dot ali at neustar dot com>
Bo Balder <bba at post dot utfors dot se>
Michael Sawczyn <msawczyn at columbus dot rr dot com>
Ildar Gabdulline <ildar_gabdullin at mailru dot com>
David Yongqiang Wang <davidyw at avaya dot com>
Shahzad Aslam-Mir <s786am at hotmail dot com>
Andrew Foster <awf at prismtechnologies dot com>
C Chan <CChan at md dot aacisd dot com>
Alexey Chalimov <alexey at allcharge dot com>
Andrea Bernicchia <a dot bernicchia at acsys dot it>
Praphul Menon <praphulm at yahoo dot com>
Patrick N <pn at milhouse dot co dot uk>
Garth Watney <Garth dot J dot Watney at jpl dot nasa dot gov>
Jim Connelly <jim dot connelly at neustar dot com>
Eyal Lubetzky <eyall at BANDWIZ dot COM>
Gaoyan Xie <gxie at eecs dot wsu dot edu>
Michael Brinkmann <michael dot brinkmann at materna dot de>
Chatchai Khumboa <ckhumboa at gmu dot edu>
Andrey Shkinev <andreyshkinev at rogers dot com>
Michael Graf <mg at leutek dot de>
Justin Michel <michel_j at ociweb dot com>
Robert Martin <martin_r at ociweb dot com>
Charles Meidinger <Charles dot Meidinger at MSFC dot NASA dot GOV>
Petr Tuma <petr dot tuma at mff dot cuni dot cz>
Greg Burley  <Burley at tabq dot com dot au>
Marvin Greenberg <mgreenberg at dctd dot saic dot com>
Mike Connors <mike dot connors at ghs dot com>
Ben Flight <ben dot flight at wanadoo dot fr>
Bob Jolliffe <bjolliffe at cs dot up dot ac dot za>
Jesse <jesse at thrownet dot com>
Robert Handl <Robert dot Handl at era dot ericsson dot se>
Keith Snively <ksnively at d-a-s dot com>
Ahmed Riza <Ahmed dot Riza at ubsw dot com>
Miljenko Norsic <Miljenko dot Norsic at etk dot ericsson dot se>
David Robison <drrobison at openroadsconsulting dot com>
Preston Elder <prez at srealm dot net dot au>
Eric Peters <egpeters at u dot washington dot edu>
Edward A Thompson <ed4becky_2000 at yahoo dot com>
Eugene Alterman <eugalt at myrealbox dot com>
Patrick Cosmo <Patrick at incognito dot com>
Ran Kohavi <ran at kashya dot con>
Harvinder Sawhney <harvinder_sawhney at agilent dot com>
Sorin Iordachescu <sorin dot iordachescu at am-beo dot com>
Mahesh Vedantam <mahesh at ociweb dot com>
Brian Olson <bolson at rtlogic dot com>
Roy Sharon <roysharon at hotmail dot com>
Charlie Grames <charlie dot grames at windriver dot com>
Tom Howard <tom_howard at yahoo dot com>
Michael Gillmann <michael dot gillmann at infor dot de>
Yaniv Ben Ari <yanivb at bis dot co dot il>
Victor Terber <vterber at csksoftware dot de>
David Sanders <dsanders at chaincast dot com>
Yoram Zini <yoram dot zini at emblaze dot com>
Sean McCauliff <seanm at Narus dot com>
Shmulik Regev <shmul at vself dot com>
Andrew L. Shwaika <als at solvo dot ru>
Gerhard Voss <Gerhard_Voss at t-online dot de>
Gregor Bruce <gregorb at clear dot net dot nz>
Ian Cahoon <icahoon at cisco dot com>
Alexei I. Adamovich <lexa at adam dot botik dot ru>
Sohail Husain <chulbulla at yahoo dot com>
Jerome Julius <julius at erols dot com>
William R Volz <WRVO at chevrontexaco dot com>
Koushik Banerjee <koushik dot banerjee at icmg dot nu>
Zoran Cetusic <ZoranC at inter-intelli dot com>
Patrick Bennett <Patrick dot Bennett at inin dot com>
Felix Wyss <Felix dot Wyss at inin dot com>
Tim Rydell <tim dot rydell at gd-ais dot com>
Petr Shelomovsky <pedrodon at trustworks dot com>
Juliana Diniz <jrbd at cin dot ufpe dot br>
Yuval Cohen <ycohen at itgil dot com>
Timothy Kilbourn <kilbourn at sep dot com>
Marc Walrave <marc dot walrave at meco dot nl>
Petru Marginean <petrum at ilx dot com>
Paresh Raote <p_raote at yahoo dot com>
Donna Maskell <Donna dot Maskell at udlp dot com>
Steve Ige <steve dot ige at reuters dot com>
Marco Kranawetter <Marco dot Kranawetter at icn dot siemens dot de>
Christian Veleba <christian dot veleba at porsche dot co dot at>
Olli Savia <ops at iki dot fi>
Bhaskara Rao G <bhaskar at mihy dot mot dot com>
M Schulze <m2 dot schulze at gmx dot net>
John Michael Zorko <jmzorko at mac dot com>
Ami Bar <amib at rit dot co dot il>
David Smith <smithdav at tycoelectronics dot com>
Peter van Merkerk <Peter dot van dot Merkerk at meco dot nl>
Bill Dyer <bill dot dyer at visogent dot com>
Rodney Morris <rodyland at hotmail dot com>
Mark Hoffmann <Mark dot Hoffmann at Axcelis dot com>
Markus Wild <markus dot wild at homag dot de>
Joe Hayes <Joe dot Hayes at lmco dot com>
Chip Jones <jones_c at ociweb dot com>
Patrick J Lardieri <plardier at atl dot lmco dot com>
Ken O'Brien <kmobrien at fedex dot com>
Daniel Troesser <troesser_d at ociweb dot com>
Ivan Pazymenko <pia at octet dot spb dot ru>
Dan Green <dan dot c dot green at lmco dot com>
Cyrille Chepelov <cyrille at softek dot fr>
Peter Heitman <pheitman at cisco dot com>
Paxton Mason <PMason at wolve dot com>
Yan Dai <dai_y at ociweb dot com>
Sean I. Luzader <sean dot i dot luzader at lmco dot com>
Renjie Tang <rtang at informatica dot com>
Max V. Zinal <Zlat0 at mail dot ru>
Stan Sosnovsky <sosnovsky_stan at emc dot com>
Ariel Peltz <Arielp at bigbandnet dot com>
Carsten Prescher <carsten dot prescher at sysde dot eads dot net>
Raghuram Shetty <Raghuram dot Shetty at comverse dot com>
Val Dumiterscu <val dot dumitrescu at am-beo dot com>
Oleg Kraynov <olegvkr at yahoo dot com>
Stephan Gudmundson <stephang at netacquire dot com>
Frank Kuhlman <kuhlmann at materna dot de>
Denis Otchenashko <oko at bank dot gov dot ua>
Marc M Adkins <Marc dot M dot Adkins at doorways dot org>
Jon Lambert <jlsysinc at ix dot netcom dot com>
Rainer Lucas <rainer dot lucas at fun dot de>
Allan S Iverson <allaniverson at sprynet dot com>
Jeffrey Shaffer <jeffs at integ dot com>
Oleg Burlachenko <ua_fireball at yahoo dot com>
Jian Chen <jchen at huawei dot com>
Jeff Paciga <jmpaciga at uwaterloo dot ca>
Laurent Sabourin <lsabourin at interstarinc dot com>
Frank Rybak <rybak at ll dot mit dot edu>
Tim Iskander <timothy dot j dot iskander at lmco dot com>
Michele Amoretti <amoretti at CE dot UniPR dot IT>
Ido Yellin <Ido dot Yellin at Focusengine dot com>
Eric Page <Eric_S_Page at raytheon dot com>
Kevin Heifner <heifner_k at ociweb dot com>
James Haiar <haiar at ll dot mit dot edu>
Pavel Repin <pavel at repin dot com>
Whitney Kew <Whitney dot Kew at Invensys dot com>
Tom Phan <tomp at telhub dot com>
Andrew Guy <andrew dot guy at monis dot com>
Bharathi Kangatharan <bharathi dot kangatharan at baesystems dot com>
Jean Quinsat <jean dot quinsat at airbus dot com>
Ma Ting Chong <ma_ting_chong at hotmail dot com>
Andrew Sutton <ansutton at scottcare dot com>
Ansgar Konermann <ansgar dot konermann at inf dot tu-dresden dot de>
Amir Kunst <amir at fats dot co dot il>
Daniel Garrido <dgarrido at lcc dot uma dot es>
Andy Alvarez <andy_alvarez at baxter dot com>
Soeren Gerlach <soeren dot gerlach at gmx dot de>
Vitaly Prapirny <marl at mebius dot net>
Sasha Agranov <sagranov at COMGATES dot co dot il>
Ruwanganie Gunatilleke  <ru at ociweb dot com>
Peter Kullmann <P dot Kullmann at rog dot de>
Lyn Headley <headley at wolve dot com>
Jeff Adams <Jeff dot Adams at gd-ais dot com>
Alexander Maack <Alexander dot Maack at MaaTec dot com>
Timothy Culp <timothy dot culp at computer dot org>
Oleg Terletsky <oterletsky at comcast dot net>
Bill Tonseth <wtonseth at yahoo dot com>
Frank Pilhofer <fpilhofe at mc dot com>
Eric Quere <Eric dot Quere at med dot ge dot com>
Keith Thornton <keith dot thornton dot kt at germany dot agfa dot com>
Nathan Krasney <natan-k at actcom dot co dot il>
Marek Maleta <marek_maleta at agilent dot com>
David Smith <dts at prismtechnologies dot com>
Dimitrije Jankovic <djankov99 at yahoo dot com>
Frank O. Flemisch <f dot o dot flemisch at larc dot nasa dot gov>
Cary Steinmetz <cary dot s dot steinmetz at boeing dot com>
Ty Tenait <tytenait at yahoo dot com>
Nitin Mallya <Nitin dot Mallya at med dot ge dot com>
Nick Cross <nick dot cross at prismtechnologies dot com>
Christopher W. Midgley <cmidgley at livevault dot com>
Wanjia <jiawan at huawei dot com>
Shanliang Cheng <shanliang at huawei dot com>
Andy Ling <Andy dot Ling at Quantel dot Com>
Stephen Howard <stephen dot e dot howard at lmco dot com>
Carsten T. Nielsen <ctn at maerskdatadefence dot dk>
Adee Ran <adeeran at yahoo dot com>
<rjgebis at hotmailer dot com>
Davide Pasetto <dipo at sis dot it>
Michael Hornok <Michael dot Hornok at alcatel dot com>
Wim van den Boogaard <wim dot van dot den dot boogaard at varianinc dot com>
Carol Hunsicker <carol dot hunsicker at lmco dot com>
Joseph Sarbak <joseph dot sarbak at csfb dot com>
Ruslan Zasukhin <sunshine at public dot kherson dot ua>
Colin Weaver <colin dot weaver at invensys dot com>
Kew Whitney <Whitney dot Kew at Invensys dot com>
Sean Ogle <sean dot ogle at syslog dot at>
Tim Bradley <bradley_t at ociweb dot com>
Kier Schmitt <SchmittKC at kpt dot nuwc dot navy dot mil>
George Varsamis <gv at prismtechnologies dot com>
Alan Tanga <stang1 at lucent dot com>
Bertin Colpron <BColpron at interstarinc dot com>
Jeff Wilson <wilsonj at cs dot ecs dot baylor dot edu>
Dmitry Khrapov <yavannadil at yahoo dot com>
Francois <francois at vibes dot net>
Laxmikant Bopalkar <LBopalkar at protrader dot com>
Steven Gardner <sjgardn at sandia dot gov>
Ronald Berger <ronald dot berger at wpafb dot af dot mil>
Jeremy Altavilla <jeremya at artifact-entertainment dot com>
Brian Appel <bappel at integ dot com>
Lan Zhineng <lanzn at huawei dot com>
Leen Van Kampen <leen dot van dot kampen at nl dot vanderlande dot com>
James Beale <JAMES dot H dot BEALE at saic dot com>
Mark Xu <ltxd at 371 dot net>
Umberto Mascia <u dot mascia at pxl dot it>
Marcel Loose <loose at astron dot nl>
Christian Klutz <cklutz at gmx dot net>
Ville Lehtiniemi <guderian at ees2 dot oulu dot fi>
Chumsu Kim <chskim at add dot re dot kr>
Schone Mullerin <smullerin at deutsches dot lieder dot net>
Cemal Yimaz <cyilmaz at cs dot umd dot edu>
Newton Aird <naird at ix dot netcom dot com>
Frederic Motte <frederic dot motte at fr dot thalesgroup dot com>
Roger Weeks <rogerw at firstlogic dot com>
Gautam Thaker <gthaker at atl dot lmco dot com>
Christophe Juniet <cjuniet at entreview dot com>
Jeff W <jeffw_1234 at yahoo dot com>
Geir Berset <geirber at ifi dot uio dot no>
Ken Sedgwick <ken at bonsai dot com>
Vince Mounts <vince at mounts dot cc>
Vladislav Zverev <vladislav at gtss dot spb dot ru>
Erich Hochmuth <erich_hochmuth at hotmail dot com>
Nick S. Petrov <nicksp at ci dot nnov dot ru>
Dmitry Botcharnikov <dimab at garant dot ru>
Philippe Haussy <p dot haussy at xpedite dot com>
K2 <k2 at biogate dot com>
Eric Frias <efrias at syncad dot com>
Antonio Saraiva <Antonio_Saraiva at csgsystems dot com>
Sean M. Paus <spaus at dctd dot saic dot com>
Yuanfang Zhang <yfzhang at cse dot wustl dot edu>
Jonathan Franklin <jfranklin at dctd dot saic dot com>
Cristian Ungureanu <cristian dot ungureanu at amdocs dot com>
Tommy Persson <tpe at ida dot lie dot se>
Christian Barheine <cbarheine at sympatec dot com>
Ole Husgaard <osh at sparre dot dk>
Victor Kirk <vkirk at technology dot serco dot com>
Sandeep Neema <neemask at corvette dot vuse dot vanderbilt dot edu>
Mike Curtis <mcurtis at wt dot net>
Artashes Ghazaryan <arty at unicad dot am>
Ashok Sadasivan <ashok_sadasivan at hotmail dot com>
Andreas Koehler <andreas dot koehler at sysde dot eads dot net>
Thomas Devanneaux <tdevanne at akamai dot com>
Paul Marquis <pmarquis at pobox dot com>
Ed Skees <eskees at dctd dot saic dot com>
Marc Alter <marc dot alter at fr dot thalesgroup dot com>
Martin Geliot <martin dot geliot at baesystems dot com>
Simon McQueen <sm at prismtechnologies dot com>
Jason Pasion <J dot Pasion at motorola dot com>
Philipp Leibfried <pleibfried at speech-design dot de>
Erwin Rol <erwin at muffin dot org>
Dirk Moermans <dirk dot moermans at brutele dot be>
Huseyin Calgin <calgin at yahoo dot com>
Jaroslaw Nozderko <jaroslaw dot nozderko at polkomtel dot com dot pl>
Sharon Caspi <sharonc at scopus dot net>
Thomas Natterer <Thomas dot Natterer at de dot thalesatm dot com>
Wilbur Lang <wilbur at szonline dot net>
Rick Marlborough <RMarlborough at LIO dot AACISD dot com>
David-A O-Brien <david-a dot o-brien at db dot com>
Shelton Tang <stang at altigen dot com>
Frederic Langlet <Frederic dot Langlet at alcatel dot com>
Antonio Leonforte <a dot leonforte at mclink dot it>
Pablo d'Angelo <pablo at mathematik dot uni-ulm dot de>
Christophe Vedel <cv at validy dot com>
Uwe Jaeger <jaeger at varial dot de>
Viktor Ransmayr <viktor dot ransmayr at t-online dot de>
Daniel Bell <Daniel dot Bell at colorbus dot com dot au>
Mathias Waack <mathias dot waack at schlund dot de>
Mike Nordell <tamlin at algonet dot se>
Tufan Oruk <toruk at usa dot net>
Tim Smith <timsmith_s at hotmail dot com>
Andy King <andyking at vernon dot com>
Eric Strennen <estrennen at imago dot com>
Abhay Kulkarni <Abhay dot Kulkarni at veritas dot com>
Ron Muck <rlm at sdiusa dot com>
Ma Weida <weida at flyingdonkey dot com>
Terry Lao <terry at ec-tone dot com>
Volker Boerchers <vboerchers at tecon dot de>
Tim Pullen <tim at timpullen dot co dot uk>
Marc Tardif <marc at sitepak dot com>
Guan Joe <guan dot zhaohui at datawire dot net>
Petr Ferschmann <pferschmann at kerio dot com>
Greg Mulyar <greg_mu at yahoo dot com>
Max F. Bilyk <mbilyk at europe dot com>
Danile White <ygor at comcast dot net>
Andrew Marlow <apm35 at student dot open dot ac dot uk>
Michael F"olsl <michael dot foelsl at gmx dot net>
Vincent Chau <vincent dot chau at fr dot thalesgroup dot com>
Theo Landman <tlandman at justcroft dot com>
Igor Pisarenko <Igor dot Pisarenko at computershare dot com dot au>
Dima Scub <dima_scub at sniip dot ru>
Volodymyr Orlenko <vorlenko at jaalam dot com>
Grigory <grig at plesk dot com>
Michael Soden <soden at ikv dot de>
Dennis Sporcic <dennis at hsa dot com dot au>
Emmanuel Thevenot Beaufort <emmanuel dot thevenot-beaufort at jci dot com>
Denis Parnaland <denis dot parnaland at tde dot alstom dot com>
Matthias Blankenhaus <matthias at ingrian dot com>
Wolfgang Schroeder <cpp_kurs at arcor dot de>
Mario Hofmann <Mario dot Hofmann at SystemaGmbH dot de>
Bruce MacDonald <brucemac at netcomuk dot co dot uk>
Jeffrey Graham <jgraham at titan dot com>
Otis Nyandoro <o dot nyandoro at ee dot wits dot ac dot za>
Ray Limpus <ray dot limpus at boeing dot com>
Dmitri Belogaj <belogaj at nentec dot de>
Will Christof <Will dot Christof at krones dot de>
Ferran Boladeres Salvad <bds at iis dot fhg dot de>
Juan Carlos Montes Costa <jcmontes at saincotrafico dot com>
Edward Scott  <eas at prismtechnologies dot com>
Steve Spencer <sdssoftware at btopenworld dot com>
Fukasawa Mitsuo <fukasawa_mitsuo at nifty dot com>
Martin Brown <mpatalberta at yahoo dot com>
Terry Mihm <terrym at firstlogic dot com>
Jeff Gray <gray at cis dot uab dot edu>
Rob Eger <reger at txcorp dot com>
Leonid Kvetnyi <leonidk at nice dot com>
Rudolf Weber <rfweber at tesionmail dot de>
Sergei Pimenov <sergei dot pimenov at intel dot com>
David Kinder <david dot kinder at sophos dot com>
Sebastien Lalonde <SLalonde at interstarinc dot com>
Jia Wan <jiawan at huawei dot com>
Bertin Colpron <BColpron at interstarinc dot com>
Weston Markham <wmarkham at tissueinformatics dot com>
Bryan Thrall <thrall at cs dot wustl dot edu>
Subhabrata Biswas <Subhabrata dot Biswas at roamware dot com>
Dave Ryan <djryan at raytheon dot com>
Zsolt Zsoldos <zsolt dot zsoldos at rogers dot com>
Tongzhe Cui <tonycui at yahoo dot com>
Braden McDaniel <bmcdaniel at objectsciences dot com>
Richard Woodring <rwoodring at nova-eng dot com>
Andras Lang <lang at isis dot vanderbilt dot edu>
Scott Gammil <srgammill at sbcglobal dot net>
Nick Lewycky <nicholas at fresco dot org>
Ira Burton <imburton at micron dot com>
Thomas Wiegert <wiegert at schlund dot de>
Craig Watcham <craigw at ananzi dot co dot za>
Pit Linnartz <Pit dot Linnartz at t-mobile dot de>
Peder Norgaard <pcn at pogt dot dk>
David Ohlemacher <ohlemacher at bbn dot com>
Ken Kane <kenneth dot kane at ironmountain dot com>
Bill Church <wchurch at ara dot com>
Udo Berninger <udo dot berninger at siemens dot com>
Vincent Korkos <vincent dot korkos at fr dot thalesgroup dot com>
Martin Corino <mcorino at remedy dot nl>
Terry Lacy <terry dot lacy at thomson dot net>
Branko Mijic <bmijic at hotmail dot com>
Jeff Kelley <jeffkelley at micron dot com>
Daniel Hannum <daniel dot hannum at siemens dot com>
Jason Cohen <jcohen at atl dot lmco dot com>
Nick Kukuczka <nickk at appliedepi dot com>
Andrew Voumard <andrewv at melbpc dot org dot au>
Anand <anand at iCMGworld dot com>
D.J. Dwyer <dj_dwyer at yahoo dot com>
Douglas A Stuart <douglas dot a dot stuart at boeing dot com>
Victor N. <dreamland_skib2 at mailru dot com>
Francesco Baldi <Francesco dot Baldi at hit dot it>
Michael Rice <MichaelARice at knology dot net>
Jesse Greenwald <jesse at cis dot ksu dot edu>
Raymond Hoofman <raymond at charm dot nl>
Jason Smith <jason at atdesk dot com>
Danta Cannarozzi <djc2 at cse dot wustl dot edu>
Valery Salamakha <ccapstan at bigpond dot net dot au>
Karim Fodil-Lemelin <kfl at xiphos dot ca>
Wenlong Tang <tang_long at hotmail dot com>
Manish Jain <majain at hss dot hns dot com>
Robin Farine <robin dot farine at acn-group dot ch>
Roland Schimmack <Roland dot Schimmack at gmx dot de>
Roy Pollock <rpollock at ghs dot com>
Eric Held <Eric dot Held at harris dot com>
Kees van Marle <kvmarle at remedy dot nl>
Dieter Knueppel <Dieter dot Knueppel at batm dot de>
Amol Tambe <Amol dot Tambe at ideas dot com>
Emiliano Berenbaum <eberenb at yahoo dot com>
Scott Clarke <sclarke at ideorlando dot org>
Sunil Rottoo <sunil dot rottoo at idilia dot com>
Martin Habets <mhabets at il0015mhabets1 dot ih dot lucent dot com>
Todd Cooper <todd at DO11073 dot com>
Serkan Unsal <serkan_u2000 at yahoo dot com>
Milan Cvetkovic <mcvetkovic at mpathix dot com>
Didier Becu <didier dot becu at fr dot thalesgroup dot com>
Dan Halbert <halbert at bbn dot com>
Jerome Waibel <schrom at schlund dot de>
Stephan Frenzel <stephan dot frenzel at realtech dot de>
Bruce Jones <BRUCE dot JONES at cubic dot com>
Tim Hawes <thawes at althusius dot net>
Philip Leishman <leishman at rheinmetall-de dot com>
Alexander Jasper <alexander dot jasper at gmx dot net>
Gerard Grant <ggrant at Foxboro dot com>
Trevor Fields <fields_t at ociweb dot com>
Jeff Dugan <jdugan at orincon dot com>
Jeff Mirwaisi <jeff_mirwaisi at yahoo dot com>
Alain Dupont <adupont at positron dot qc dot ca>
Stephan Bettermann <sbetterm at erggroup dot com>
David McKen <cic_3_b at yahoo dot com>
Adam Fanello <yahoo at fanello dot net>
Matthieu Vansteene <matthieu dot vansteene at regis-dgac dot net>
Sean Rooney <sro at zurich dot ibm dot com>
Enrico Detoma <enrico dot detoma at email dot it>
Onopin V. Mikhail <kool at garant dot ru>
Edward R. Mulholland  <emulholl at atl dot lmco dot com>
Brian Buesker <bbuesker at qualcomm dot com>
Vladimir Naylov <vladimir at monosphere dot com>
Ted Mules <ned at technisyst dot com dot au>
Mike Hepburn <mike at anvil dot com>
Dale Wilson  <wilson_d at ociweb dot com>
Thomas Girard <thomas dot g dot girard at free dot fr>
Malcolm McRoberts <mmcroberts at ideorlando dot org>
Dror Tirosh <ace at dror dot mailshell dot com>
Chris Sontag <sontag at stsci dot edu>
Moran Levi <moran at monosphere dot com>
UV Wildner <djuv at gmx dot net>
Alan l Batongbacal <alanlb at vt dot edu>
Gary Maxey <gary dot maxey at hp dot com>
Yoav Borer <yoav dot borer at data-pod dot com>
Andre Kleibeuker <kleibeuk at natlab dot research dot philips dot com>
Andy Bellafaire <Andy_M_Bellafaire at raytheon dot com>
John Fletcher <john dot fletcher at rd dot bbc dot co dot uk>
Terry Ware <terry dot ware at dc dot alphatech dot com>
Pierre Pacchioni <pierre dot pacchioni at avisto dot com>
Roger Beathard <rbeathar at cisco dot com>
Konstantinos Margaritis <markos at debian dot gr>
Stephen Procter <stephen dot procter at rd dot bbc dot co dot uk>
Christoph Liebig <xfrog2000 at yahoo dot com>
Andre Kostur <Andre at incognito dot com>
Markus Stenberg <markus dot stenberg at conformiq dot com>
Jonathan Pollack <pollack_j at ociweb dot com>
Si Mong Park <si dot mong dot park at lmco dot com>
Hakim Souami <hakim dot souami at thalesatm dot com>
Paul Morrison <epm at prismtechnologies dot com>
John Poplett <John_Poplett at 3com dot com>
Heiko Bachmann <h dot bachmann at unicontrol dot de>
Andrew Metcalfe <Andrew dot Metcalfe at ccur dot com>
Simon Dutkowski <dutkowski at fokus dot fraunhofer dot de>
Mickael P. Golovin <migel at garant dot ru>
Shannon Barber <shannon dot barber at myrealbox dot com>
Brad Orner <bradley_p_orner at raytheon dot com>
Michelangelo Nottoli <m dot nottoli at acsys dot it>
Peter Bekiesch <peter dot bekiesch at dtmgmbh dot de>
Martin Kaul <mkaul at leuze dot de>
Lukas Gruetzmacher <gruetzmacher at ais-dresden dot de>
Robert Schiele <robert dot schiele at t-online dot de>
Matthew Grosso <mgrosso at acm dot org>
Akim Boyko <akim at sitech dot com dot ua>
Nils Sandoy <nils dot sandoy at fast dot no>
Daniel Miranda <dmiranda at telecompersonal dot com dot ar>
Hans-Peter Bock <Hans-Peter dot Bock at isw dot uni-stuttgart dot de>
Dmitri Hrapof <yavannadil at yahoo dot com>
Denny Kolb <kolb at g2ss dot com>
Daniel Buchs <acelib at dbux dot ch>
Matt Murphy <murphym at cs dot uri dot edu>
Brian Nelson <pyro at debian dot org>
Avi Ouziel <ouziel_a at hotmail dot com>
Matthew Gillen <mgillen at bbn dot com>
Chris Reed <cr at progress dot com>
Andrew Reid <andrew dot reid at eservglobal dot com>
Praveen Sharma <psharma at bbn dot com>
Yi Zuo <Yi dot Zuo at alcatel-sbell dot com dot cn>
Raphael Bossek <raphael dot bossek at gmx dot de>
Richard G. Hash <richard dot hash at openspirit dot com>
Karl Tredwell <KTredwell at tullib dot com>
Norm Whitehead <Norm_Whitehead at raytheon dot com>
Jiang Wei <jiangwei_1976 at yahoo dot com dot cn>
Kevin Bryan <bryank at cs dot uri dot edu>
Zvika Ashani <zvika at aspectusvi dot com>
Thomas Costa <oohrah at mac dot com>
Dom Monteiro <d dot monteiro at netia dot net>
Jean-Marc Prud'homme <JPrudhomme at interstarinc dot com>
Yury Osadchy <Yuryo at maxbill dot com>
Pavan Mandalkar <pm2 at cs dot wustl dot edu>
Scott Willey <scott at sanasecurity dot com>
David Calkins <dcalk at dejazzd dot com>
Wu Yongwei <adah at netstd dot com>
Karen L. Regner <karen dot regner at swri dot org>
Michel Drapeau <michel dot drapeau at asdfsadfh dot com>
Hans Bos <hans dot bos at xelion dot nl>
Kevin Stacy <kevin_405 at yahoo dot com>
Liat <vliat1 at hotmail dot com>
Andreas Wagner <awagner at ls-wagner dot de>
Steven Xie <steven dot xie at mpathix dot com>
Kris Dekeyser <Kris dot Dekeyser at lms dot be>
Matthew Harris <mharris at hynomics dot com>
Abhijit Sachdev <abhi at qualcomm dot com>
Mikael Lundqvist <programmer_71 at hotmail dot com>
Peter Hercek <peter at syncad dot com>
Jay Welch <jay dot welch at transcore dot com>
Angel Roman <A_Roman1 at msn dot com>
Jessica Pistole <Jessica dot Pistole at jhuapl dot edu>
Paolo Carlini <pcarlini at suse dot de>
Eric Whorter <emcwhorter at rightnow dot com>
Vincent Seignole <vincent dot seignole at wanadoo dot fr>
Jingbin An <anjb at sina dot com>
Roland Meub <Roland dot Meub at tenovis dot com>
Marek Brudka <mbrudka at elka dot pw dot edu dot pl>
Levente Torok <tealev at yahoo dot com>
Panagiotis Issaris <panagiotis dot issaris at mech dot kuleuven dot ac dot be>
Mehrdad Nazari <mehrdad dot nazari at excite dot com>
Pierre Bisaillon <pierrebizz at hotmail dot com>
Rob Boyer <rboyer at euphonix dot com>
Scott Gammill <zumo at flashmail dot com>
Bayu Hendradjaya <bayu at cs dot newcastle dot edu dot au>
Randy Hammon <randy at trancekat dot com>
Bill Cassanova <BCassanova at weather dot com>
Matthew Corey <mcorey at neovest dot com>
Vinod Kumar <vinod_kumar at agilent dot com>
Mirek Pabich <miropabich at tenbit dot pl>
Christian Egeler <Christian dot Egeler at motorola dot com>
J.T. Conklin <jtc at acorntoolworks dot com>
Dale Hawkins <dhawkins at cdrgts dot com>
Bill Hopkins <bill dot hopkins at level3 dot com>
David Fleeman <dfleeman at prime dot cs dot ohiou dot edu>
Merlin Ran <merlinr at 21cn dot com>
Kevin Christian <khchristian at att dot com>
Trina Wisler <trina dot wisler at hp dot com>
Bae-Sik Chon <baesikchon at yahoo dot com>
Benjamin Bronk <benjamin dot j dot bronk at lmco dot com>
Dave Craig <dwcraig at qualcomm dot com>
Ofira Shaer <Oshaer at ndsisrael dot com>
Ciaran Moran <ciaran dot moran at similaritysystems dot com>
Thomas Rohner <thomas dot rohner at hp dot com>
Ken Descoteaux <ken at proquent dot com>
Claas-Hinrich Dommreis <chdommreis at t-online dot de>
Yateen Joshi <yjoshi at nulinkinc dot com>
Sergei Kuchin <skuchin at mqsoftware dot com>
Theckla Louchios<theckla dot louchios at lmco dot com>
Randy Secrest <secrest at ieee dot org>
Patrice Marques <simu dot dcnruelle at wanadoo dot fr>
Stanislaw Trytek <tryteks at pit dot edu dot pl>
Mattias Nilsson <mattias dot o dot nilsson at ericsson dot com>
Michael Hollins <michael dot hollins at silverbrookresearch dot com>
Dave Knox <david dot knox at Intrado dot com>
Lance Paine <lance at ams dot co dot nz>
Brian Waltersdorf <brian dot j dot waltersdorf at boeing dot com>
Johann Kandlbauer <hkandl at gamed dot com>
Adam Rymarczuk <adam dot rymarczuk at suntradingllc dot com>
Heiko Nardmann <heiko dot nardmann at secunet dot com>
J. Abelardo Gutierrez <jabelardo at cantv dot net>
Roger Sala <Roger dot Sala at gd-ais dot com>
Razi Ben-Yehuda <raziebe at gmail dot com>
Geo Sebastian <geosebastian at onmobile dot com>
Simon Massey <sma at prismtech dot com>
Rich Shapiro <rshapiro at bbn dot com>
Ramiro Morales <rm0 at gmx dot net>
Andrew Athan <aathan-ace-bugs-1524 at cloakmail dot com>
Sebastien Roy <sroy at positron dot qc dot ca>
Matthew Townsend <mtownsen at harris dot com>
Rick Robinson <rick at oyarsa dot com>
John D. Robertson <john at rrci dot com>
Paul Lew <paullew at cisco dot com>
Eider Oliveira <eider dot oliveira at gmail dot com>
Jeff Jones <jjones at zonetrading dot com>
Jean-Christophe Cota <jean-christophe dot cota at eurocontrol dot int>
Paul <paul at reeder dot cs>
Vincent Newsum <Newsum at fel dot tno dot nl>
Vasili Goutas <vasili at goutas dot de>
Iliyan Jeliazkov  <jeliazkov_i at ociweb dot com>
Shlomi Yaakobovich <Shlomi at exanet dot com>
Todd Marshall <toddmarshall2002 at yahoo dot com>
Ciju John <john_c at ociweb dot com>
Yuk Ming Kwok <mkwok at cisco dot com>
Honorato Saavedra <natodf at yahoo dot com>
Domingos Monteiro <d dot monteiro at netia dot net>
Bill Somerville <bill at classdesign dot com>
Bjorn Roald <bjorn dot roald at kongsberg dot com>
Michi Henning <michi at triodia dot com>
Xue Yong Zhi <seclib at seclib dot com>
Ertugrul Sorar <esorar1 at yahoo dot com>
Simone Viani <sviani at etasistemi dot it>
Rohan Mars <rohan_mars at yahoo dot com>
Robert S. Iakobashvili <coroberti at gmail dot com>
Chris Hammond <chrish at navsys dot com>
Vincent Spano <spam dot robot at go dot away>
Nuno Silva <Nuno dot Silva at edisoft dot pt>
Greg Bostrum <greg dot bostrom at hp dot com>
Dipa Suri <dipa dot suri at lmco dot com>
Adam Howell <adam dot s dot howell at lmco dot com>
Steven Frare <stevefr at avaya dot com>
Dave Dalapati <dalapati at comcast dot net>
Arjun Thounaojam <arjun dot thounaojam at wipro dot com>
Michael Altmann <michael dot altmann dot extern at mchh dot siemens dot de>
Steven Patrick <spo at ngls dot net>
Pete McCann <mccap at lucent dot com>
William Nagel <bill at stagelogic dot com>
M. C. Gahan <mcgahan at sparta dot com>
Thia Chang Chao <tchangch at dso dot org dot sg>
Gao Xianchao <info at socks5cn dot com>
Huang Rui <huangrui at mail dot cqzte dot com dot cn>
Sam Abbe <sam_abbe at raytheon dot com>
Mike McGahan <mcgahan at sparta dot com>
David Michael <damicha at sandia dot gov>
Steve D. Baker <Steven_D_Baker at raytheon dot com>
Martina Yen <martina_h_yen at raytheon dot com>
Kim ByeongSu <kcando at kcando dot org>
Doug McCorkle <mccdo at iastate dot edu>
YiQing Xiong <xjaguar at 126 dot com>
Peter Falsh <webangel at list dot ru>
Don Sharp <dws at prismtech dot com>
Arto Jalkanen <ajalkane at gmail dot com>
Scott Zionic <sz at finsatconsulting dot com>
Diana Ukleja <Diana_Ukleja at raytheon dot com>
Shaun Cooley <scooley4241 at hotmail dot com>
Aapo M�kinen <aapo dot makinen at firstbeattechnologies dot com>
Matt Emerson <mjemerson at isis dot vanderbilt dot edu>
Sean Parker <supinlick at yahoo dot com>
Mark Wilson <mwil at lle dot rochester dot edu>
Joerg Rockel <joerg dot rockel at nokia dot com>
Phil Chen <pchen at bytemobile dot com>
Stefan Morrow <stefanm at uniblue dot net>
Bruce Elliot <bruce dot elliott at cox dot net>
Mitscher Dubreus <ofup at voila dot fr>
Brian O'Connor <brian dot oconnor at hp dot com>
Ron Wilson <ronwilson at mac dot com>
Peter Grotrian <peter dot grotrian at pdv-fs dot de>
Alex Ott <ott at jet dot msk dot su>
D. J. Stachniak <djstachniak at yahoo dot com>
Slava Gorelik <slava dot gorelik at sap dot com>
Wolfgang Fischer <fiw at arcor dot de>
Nicholas Todd <nicholas dot todd at gs dot com>
Arno Wilhelm <arno.wilhelm at profile dot co dot at>
Andreas Schuler <Andreas dot Schuler at med dot ge dot com>
Altaf Aali <altafaali at comcast dot net>
Vemund Handeland <vemund dot handeland at fantoft dot no>
Mario Di Giacomo <mdigiacomo at anteon dot com>
Raoul Gough <Raoul dot Gough at liffe dot com>
Aaron <crackajazz at gmail dot com>
Rohini Madhavan <ro_madhavan at sify dot com>
Alan Balasuar <balasuar at gmail dot com>
Will Chai <willchai at 126 dot com>
Paul Koch <paul dot koch at mci dot com>
Dave Giovannini <giovanninid at ociweb dot com>
Dave Varnell <Dave dot Varvell at ni dot com>
Howard Finer <hfiner at sonusnet dot com>
Mark Callaghan <mdcallag at gmail dot com>
Hanson Lu <suf_lu at yahoo dot com>
Gavin Yu <songtaoyu at lucent dot com>
Srikanth Gopal <sriki_666 at yahoo dot com>
Like Ma <likemartinma at gmail dot com>
Alvin Msg <alvin dot msg at gmail dot com>
Angela Ziegenhorn <Angela dot Ziegenhorn at veritas dot com>
Sam Mesh <sam dot mesh at gmail dot com>
Felix Perez Alamillo <fpalamillo at indra dot es>
Steven T. Hatton <hattons at globalsymmetry dot com>
Yevgen Galchenko <yevgeng at softcomputer dot com>
Timothy Wayne Gomez <gomezt at saic dot com>
Ventimiglia Chere <Ventimiglia_Chere at emc dot com>
Frederick Heckel <fwph at cse dot wustl dot edu>
Ian Zagorskih <ianzag at megasignal dot com>
Olivier Gu�rin <guerin35 at hotmail dot com>
Abdel Rigumye <rigumyea at ociweb dot com>
James Damour <james dot damour at request dot com>
Alan Anderson <Alan dot Anderson at sdsmt dot edu>
Vito Bico <vbica at qualcomm dot com>
Aldo Texier <aldo dot texier at oktal dot fr>
J H Choi <jhchoi at sqisoft dot com>
Mike Chartier <mikec at compgen dot com>
Nikolay Metchev <n dot metchev at teamphone dot com>
Anand Rathi <anandprathi at yahoo dot co dot in>
Vitaly Belekhov <vitaly at megasignal dot com>
Dorian Hileaga <hdorianh at hotmail dot com>
Steve Williams <steve at telxio dot com>
Paul Friberg <p dot friberg at isti dot com>
Zachi Klopman <zklopman at gmail dot com>
Jin Zhi Ye <jinzhiye at kedacom dot com>
David Carlton <david dot carlton at sun dot com>
Feng Li <fengli at gmail dot com>
Michael van der Westhuizen <r1mikey at gmail dot com>
Jan Zima <Jan dot Zima at sofis dot cz>
Francesco Salvestrini <f dot salvestrini at nextworks dot it>
Sandeep Deshpande <sandeep dot bvb at gmail dot com>
Hubert Talbot <Hubert dot Talbot at criq dot qc dot ca>
Oh Yoon Sik <boom at estsoft dot com>
Anton Bakanovskiy <Anton dot Bakanovskiy at bercut dot ru>
Toha Bakanovsky <im-scooter at yandex dot ru>
David Faure <dfaure at klaralvdalens-datakonsult dot se> <faure at kde dot org>
Robert Hancock <hancockr at shaw dot ca>
Peter Oslej <peter dot oslej at vrm dot sk>
Yongming Wang <wangym at gmail dot com>
Vadim Iosevich <viosevich at gmail dot com>
Mike Knight <mike dot knight at compuware dot com>
Nathan Anderson <nathan dot l dot anderson at lmco dot com>
Eyal Car <eyal_car at hotmail dot com>
Jonathan Sprinkle <sprinkle at eecs dot berkeley dot edu>
Vladimir Panov <gbr at voidland dot org>
Volker Lukas <vlukas at gmx dot de>
Bryan Cassell <BryanCassell dot iti-team dot com>
Guy Peleg <guy dot peleg at amdocs dot com>
Wallace Zhang  <zhangw at ociweb dot com>
Richard Ward <richard_ward at symantec dot com>
Alan Stokes <alan at alanstokes dot org dot uk>
Rick Taylor <rick at tropicalstormsoftware dot com>
Tobias Herzke <tobias dot herzke at uni-oldenburg dot de>
Paul Felix <pef at fluent dot com>
Jan Ohlenburg <jan dot ohlenburg at fit dot fraunhofer dot de>
Eric Tiangang <tgliu at utstar dot com>
David Hawkins <dwh at ovro dot caltech dot edu>
Michael Klein <michael dot klein at fazi dot de>
Sandro Santos Andrade <sandros at dcc dot ufba dot br>
Richard Spence <richard dot spence dot extern at icn dot siemens dot de>
Thomas E Lackey <telackey at bozemanpass dot com>
luxi78 at gmail dot com
John Lilley <jlilley at datalever dot com>
Abdullah Sowayan <abdullah dot sowayan at lmco dot com>
Nathan Bamford <nbamford at datalever dot com>
Zoltan Molnar <zolmol at isis dot vanderbilt dot edu>
William Byrne <williamb at codics dot com>
Karl Schmitt <Karl dot Schmitt at dfs dot de>
Ron DeAngelis <rdeangel at rite-solutions dot com>
Alex Sheh <ASHEH at euphonix dot com>
Daniel Wagner <__daniel___ at icg do tu-graz dot ac dot at>
Nemoy Michael <michaeln at sintecmedia dot com>
Marc Brown <mbrown at fisheyesoftware dot com>
Andrew Keane <andrew at keaneville dot com>
Martin Kolleck
Tino Riethmueller
Adam Mitz  <mitza at ociweb dot com>
Frank Rehberger <frehberger at prismtech dot com>
Aaron Scamehorn <aaron dot scamehorn at cogcap dot com>
Alan Kierstead <ackierstead at fedex dot com>
Sven-Uwe Sieler-Hornke <sven-uwe dot sieler-hornke at investment-cybernetics dot de>
Spencer Vanroekel <Spencer dot Vanroekel at Siemens dot com>
Dan Pozdol <dpozdol at wolve dot com>
Yauheni Akhotnikau <eao197 at intervale dot ru>
Axter <google at axter dot com>
Roopa Pundaleeka <roopa at txcorp dot com>
JR Andreassen <janrune at io doc com>
Mockey Chen <mockey dot chen @ google dot com>
Vincent Joseph <deskamess at yahoo dot com>
Igor Mammedov <qwerty0987654321 at mail dot ru>
Yuan <yuanhp_china at hotmail dot com>
Adrian Tulloch <my-ace-sub at reyes-tulloch dot com>
Dmitriy Kuznetsov <dk3 at garant dot ru>
Steve Orner <saorner at rdainc dot com>
Bob Ronak <ronak2121 at gmail dot com>
Aleksandar Vukajlovic <vukajlo at finsoft dot co dot yu>
esIgnacio Alvarez <support at xentient dot com>
Sergey Zubarev <sergant128 at mail dot ru>
Qingbo Cai <qingbo dot cai at case dot edu>
David White <david dot white dot 7 at gmail dot com>
Jason Zhang <zzm9981 at 163.com>
Mark Paulus <mark dot paulus at mci dot com>
Willie Chen <wchen12 at ucla dot edu>
Martin Cornelius <Martin dot Cornelius at smiths-heimann dot com>
Mohit Kapoor <Mohit dot Kapoor at siemens dot com>
David Gibbs <David dot Gibbs at igindex dot co do uk>
Gary Fernandez <gary dot fernandez at ironmountain dot com>
Jason Zhao <jason.zhao at lmco dot com>
Keith Muzzioli <Keith_W_Muzzioli at raytheon dot com>
John Black <John_K_Black at Raytheon dot com>
David Chu <beyonddc dot storage at gmail dot com>
Kevin Hu <Xiaotao dot Hu at ge dot com>
Yasser Zabuair <yzabuair at hotmail dot com>
Phlip <phlip2005 at gmail dot com>
Michelle Zheng <Michelle dot Zheng at dowjones dot com>
Gerolf Reinwardt <Gerolf dot reinwardt at siemens dot com>
Paul Robinson <probinson at gmail dot com>
Popeye Cai <popeye dot cai at utstar dot com>
David Highley <dhighley at highley-recommended dot com>
Sonicfly Zhou <zhoucn at txsec dot com>
Phil Billingham <phil_billingham at ml dot com>
Paul Daugherty <Paul at nextalk dot com>
Robert Schwebel <robert at schwebel dot de>
William Cote <William dot Cote at hp dot com>
Ben Creech <bpcreech at alumni dot ncsu dot edu>
Michael Reed <mnr102 at yahoo dot com>
Heesuk Shin <heesuks at econz dot com>
Hong Xing <hongxing777 at gmail dot com>
Winston Zhang <winston_ace at kubao-inc dot com>
Stefan Naewe <naewe dot s at atlas dot de> <stefan at naewe dot de>
Graeme Bell <graemeb at econz dot com>
Eric Danielou <eric dot danielou at eads dot com>
Wei Jiang <sdjiangwei at sina dot com>
Dale Boan <boan at sedsystems dot ca>
Christoph Schmalhofer <christoph dot schmalhofer at gmx dot net>
Amnon Berger <AmnonAB at gmail dot com>
Ephy Levy <EphyLevy at gmail dot com>
Don Meek <Don dot Meek at windstream dot com>
Liu Qian <qianliu dot gmail at com>
Nzer Zaidenberg <scipioenterprises at yahoo dot com>
Birgit Platt <bhe at newbase dot de>
Andy Salnikov <a_salnikov at yahoo dot com>
Hieu Ngyuen <hieu dot t dot nguyen at vanderbilt dot edu>
Andriy Gapon <avg at icyb dot net dot ua>
Andy Wang <ypwangandy at gmail dot com>
Zhamak Dehghani <zhamakd at gmail dot com>
Charles Calkins <calkinsc at ociweb dot com>
Manuel Traut <manut dot de at googlemail dot com>
Drew Reynaud <drewreynaud at hotmail dot com>
Artur DeEsperanto <DrEsperanto at gmx dot net>
Scott Mitchell <rsm at progress dot com>
Thomas Vanier <thomas dot vanier at gmail dot com>
N Johnson <nj at artesys dot info>
Adam Nagel <nagelar at isis dot vanderbilt dot edu>
Robert Neumann <robert dot neumann at gmail dot com>
Venkat <swara101 at yahoo dot com>
Juraj Ivancic <juraj dot ivancic at gmail dot com>
Daniel Black <dragonheart at gentoo dot org>
Richard Ridgway <Richard_Ridgway at ml dot com>
Vadym Ridosh <vridosh at prismtech dot com>
Viola Wang <vwang at eso dot org>
Ray Lischner <rlischner at proteus-technologies dot com>
Sergey Kosenko <sergey dot kosenko at gmail dot com>
Pavel Zaichenko <zpf at ivl dot ua>
Paul Riley <paul at riley dot net>
Nelson Filipe Ferreira Gon�alves <ngoncalves at isr dot ist dot utl dot pt>
Harry Goldschmitt <harry at hgac dot com>
Sail Zeng <sailzeng at tencent dot com>
Markus Henschel <m dot henschel at bally-wulff dot de>
Asif Lodhi <asif dot lodhi at gmail dot com>
Andrew Schnable <andrew_schnable at symantec dot com>
Grigoriy Zeleniy <gzeleniy at gmail dot com>
Yves Alloyer <alloyer at ipanematech dot com>
Waba <waba-ace at waba dot be>
Scott Mark <sjm at pobox dot com>
Bjoern Rasmussen <bjoern.d.rasmussen at gmail dot com>
Ian C White <Ian_C_White at raytheond dot com>
Dennis Chernoivanov <cdi at tbricks dot com>
Werner Burger <werner dot burger at siemens dot com>
Andres Hurtis <andrej100 at gmail dot com>
Joe French <JFrench at Soneticom dot com>
M. Arshad Khan <khan dot m dot arshad at gmail dot com>
Hans van't Hag <hans dot vanthag at prismtech dot com>
Roland Sun <rolandsun at gmail dot com>
Vance Maverick <vmaverick at pgp dot com>
John McCabe <JGMCCABE at qinetiq dot com>
Andres Oportus <andres dot oportus at gmail dot com>
Olof Granered <Olof dot Granered at mobitex dot com>
Eric Hughes <eh at narthex dot us>
Zhenghao Shi <Zhenghao dot Shi at alcatel dot com>
Alexander Kornienko <alexfh at gmail dot com>
Ben Mohlenhoff <Benjamin_A_Mohlenhoff at raytheon dot com>
Bill Bruns <bruns dot bill at gmail dot com>
Dmitriy Nikitinskiy <nick at bel dot ru>
Ravi Kanth <kanth dot ravi at wipro dot com>
Ian Roberts  <ir at prismtech dot com>
Patrick Spiering <pspiering at aweta dot nl>
Duane Beck <duane dot beck at lmco dot com>
Kanghee Yoon <propar at gmail dot com>
Xu Liang <lxu4net at gmail dot com>
Leo Lei <nsinit at 163 dot com>
Jules d'Entremont <Jules dot dEntremont at SolaceSystems dot com>
Rajiv K. Shukla <rajiv_shukla at yahoo dot com>
Haibin Zhang <dragzhb at yahoo dot com dot cn>
Vikram Karandikar <softking at gmail dot com>
Kim J. Schmock <KJS at capres dot com>
Venkat Forums <venkat dot forums at gmail dot com>
James Marsh <jmarsh at cs dot man dot ac dot uk>
Shaolong Xiang <cwengc at gmail dot com>
Christoph Hofmann <Christoph dot Hofmann at zwick dot de>
Vladimir Zykov <vladimir dot zykov at prismtech dot com>
Daniel de Angelis Cordeiro <dcordeiro at gmail dot com>
Hal Black <hal dot black at gmail dot com>
Peter Korf <peter at niendo dot de>
Norbert Thoden <thoden at rheinmetall-de dot com>
Premkumar P <kumaran dot prem at gmail dot com>
David Beck <davidbeck at acm dot org>
Hayim Shaul <hayim at iportent dot com>
Erman Balcik <erman dot balcik at siemens dot com>
Torsten Saliwada <sally at gmx dot net>
Nathan Glasser <nglasser at cantata dot com>
Gr�gor Boirie <gregor dot boirie at free dot fr>
Alex Solan <alex dot solan at gmail dot com>
Venkat Sidhabathuni <venkats at idengines dot com>
Nathan Ernst <Nathan dot Ernst at citadelgroup dot com>
Kun Niu <haoniukun at gmail dot com>
Karl-Heinz Wind <wind at itq dot de>
Oliver Spang <oliver dot spang at nsn dot com>
Hu Yi <huyi dot zg at gmail dot com>
Joe Seward <joseph dot f dot seward at saic dot com>
Tom Callaway <tcallawa at redhat dot com>
Alick Nie <alick_nie at 163 dot com>
Douglas Atique <tellmebout-corba at yahoo dot com>
Nayeem Khan <d dot nayeem dot khan at gmail dot com>
Sorin Voicu-Comendant <sorinvc at gmail dot com>
Andi Heusser <aheusser at gmail dot com>
Paul Carter <pcarter at scires dot com>
Michael Carter <mcarter at swri dot org>
Alain Kocelniak <alain at corys dot fr>
Alvaro Vega Garcia <avega at tid dot es>
Fernando C. Jeronymo <fernando dot fcavalcanti at gmail.com>
Stephen Mouring <stephen dot mouring at lmco dot com>
Tim <tim at burmair dot com>
Thomas Brownridge <thomas dot brownridge at lmco dot com>
June Fang <june dot fang at gmail dot com>
Bill Kendall <wkendall at sgi dot com>
Ittehad Shaikh <ishaikh at verivue dot com>
Michael Doubez <michael dot doubez at gmail dot com>
Namrata Gandhi <...>
Michael Guntli <michael dot guntli at leica-geosystems dot com>
Frank F�rster <F dot Forster at herts dot ac dot uk>
Roger Leblanc <rog dot leblanc at gmail dot com>
Bob Fiske <Robert dot Fiske at ironmountain dot com>
Julien Vintrou <vintrouj at gmail dot com>
Jonathan Brannan <jbrannan at atdesk dot com>
antred <NutJob at gmx dot net>
Nathalie D'Amours <nathalie at bearsontheloose dot com>
Mele Giovanni <giovanni dot mele at nagra dot com>
Philipp Thomas <pth at suse dot de>
Mark Hebbel <Mark dot Hebbel at baslerweb dot com>
Tim Pollock <pollockt at ociweb dot com>
Jack Lavender <jack dot lavender at seconcepts dot com>
Alexandre Skrzyniarz <alexandre dot skrzyniarz at fr dot thalesgroup dot com>
E Vahala <erkki dot vahala at pp dot inet dot fi>
Christian Fromme <kaner dot strace dot org>
Daniel Lang <danial dot lang at alphagate dot at>
Greg Bothe <ace at netrats dot net>
Anand Kumar <anandkumar95 at gmail dot com>
Joe Pallas <pallas at cs dot stanford dot edu>
Marcel Smit <msmit at remedy dot nl>
Florent Vial <florent dot vial at gmail dot com>
Pan Kai Luna <pan dot kai dot luna at gmail dot com>
Jesus Martinez <jmcruz at lcc dot uma dot es>
Martin Gaus <Gaus at gmx dot de>
Steve Stallion <stallions at ociweb dot com>
Ron van Hoof <rvhoof27 at gmail dot com>
Joe Lihn <joelihn at hotmail dot com>
Jani Hakala <jahakala at iki dot fi>
Marcus Monaghan <marcus dot monaghan at wins dot co dot uk>
Kashif Khan <kashif_khan198227 at yahoo dot com>
JD Robertson <JD.Robertson at ni dot com>
Andreas Drescher <ace at anticat dot ch>
Alon Diamant <diamant at alon at gmail dot com>
Igor Rayak <igor dot rayak at gmail dot com>
Shai Kedem <shai_kedem at hotmail dot com>
Steve Ramsay <steve dot ramsay at caris dot com>
<moyyo at freetekno dot cz>
Skrzyniarz Alexandre <alexandre dot skrzyniarz at fr dot thalesgroup dot com>
Rob Beekmans <r dot a dot beekmans at philips dot com>
Steven Hartmann <shartmann at militho dot com>
Dicky <qianchendi at gmail dot com>
Boyan Kasarov <bkasarov at gmail dot com>
Brendan Murphy <brendan dot murphy at euro dot apple dot com>
Ryan Carmichael <RCarmichael at drs-tem dot com>
Koh Onishi <k_onishi at mtj dot biglobe dot ne dot jp>
Markus Gaugusch <markus at gaugusch dot at>
Annette Wilson <awilson at raytheonvtc dot com>
Sharon Mizrahi <sharon dot mizrahi at gmail dot com>
William Glenn <wglenn at scires dot com>
Christian Ehrlicher <Ch dot Ehrlicher at gmx dot de>
Hui Zhang <zhanghui9527 at gmail dot com>
Marijke Hengstmengel <mhengstmengel at remedy dot nl>
Christian Freund <freund at wrz dot de>
Chris Shaw <google at cshaw-tech dot co dot uk>
Matthew Carter <r_q_einstein-acetaobugs at yahoo dot com>
Denis Budko <denis dot budko at remedy dot nl>
Gaurav Kulshreshtha <gaurav dot kulshreshtha at onmobile dot com>
Wolfgang Pickartz <Wolfgang dot Pickartz at procom.de>
Joost Kraaijeveld <J dot Kraaijeveld at Askesis dot nl>
Pau Garcia i Quiles <pgquiles at elpauer dot org>
Sail Zeng <sailzeng at tencent dot com>
Dirk Bonekaemper <dirk dot bonekaemper at dfs dot de>
Sreejith <sreejithsmadhavan at gmail dot com>
Guillaume Lahaye <Guillaume dot Lahaye at nuance dot com>
Andrew Kaplan <alexande dot kaplan at tafcorp dot com>
Alexander Mintz <alexande dot mintz at tafcorp dot com>
Jennifer Kahng <jennifer dot kahng at lmco dot com>
Trent Nadeau <Trent dot Nadeau at ngc dot com>
Nick Meyer <nick dot meyer at sensis dot com>
Olivier Langlois <olivier at olivierlanglois dot net>
Patrick Soboljew <patrick dot soboljew at gmail dot com>
Tim Pinkawa <tpinkawa at eagleseven dot com>
Ed Blackmond <ed dot blackmond at themis dot com>
Dave <dwh0403 at 163 dot com>
Inma Perea <inma dot perea dot fdz at gmail dot com>
David Ward <dpward at mit dot edu>
Anatoli Sakhnik <sakhnik at gmail dot com>
Max Zhou <earthdog at 126 dot com>
Daynesh Mangal <daynesh at gmail dot com>
Robert Shectman <shectman at llnl dot gov>
Rafi <rafi dot net at gmail dot com>
Kannan Ramaswamy <kannan dot ramaswamy at cogcap dot com>
Brian Johnson  <johnsonb at ociweb dot com>
Catherine L. Paquin <catherine dot paquin at ngc dot com>
Susan Finster <sfinster at daetwyler-rd dot com>
Frank Preischl <Frank dot Preischl at ids dot de>
Matthew Waller <matthewrwaller at gmail dot com>
Elez <elezsh at gmail dot com>
Ranjit Hande <hande at avaya dot com>
Van Vuong <vanvuong1 at us dot ibm dot com>
Mark <markg85 at gmail dot com>
Wendsomde Yameogo <wendsomde at yameogo dot com>
Shi John <John dot Shi at acxiom dot com>
Helmut Böing
Andrew Hill <lists at thefrog dot net>
Henk Jan Priester <hjpriester at gmail dot com>
Glenn Zickert <gzickert at comcast dot net>
Chris Galli <christian dot galli at gmail dot com>
Laura Autn Garca <darklulu+ace at gmail dot com>
Jonathan Saxton <jsaxton at appsecinc dot com>
Remko Duppen <remko dot duppen at syntel dot nl>
Paul Fitzpatrick <paul at robotrebuilt dot com>
Chad Beaulac <chad dot beaulac at objectivesolutions dot com>
Jochen Meier <gesammeltimusenet2009 at arcor dot de>

I would particularly like to thank Paul Stephenson, who worked with me
at Ericsson in the early 1990's.  Paul devised the recursive Makefile
scheme that underlies the ACE distribution and also spent countless
hours with me discussing object-oriented techniques for developing
distributed application frameworks.

Finally, I'd also like to thank Todd L. Montgomery <tmont at cs.wvu.edu>,
fellow heavy metal head, for fulfilling his quest to get ACE to
compile with GCC!

In conclusion, our goal is to see ACE+TAO+CIAO continue to evolve and
become a more comprehensive, robust, and well-documented C++ class
library that is freely available to researchers and developers.  If
you have any improvements, suggestions, and or comments, we'd like to
hear about it.  Please see the instructions in

$ACE_ROOT/PROBLEM-REPORT-FORM
$TAO_ROOT/PROBLEM-REPORT-FORM
$CIAO_ROOT/PROBLEM-REPORT-FORM
$DANCE_ROOT/PROBLEM-REPORT-FORM

for instructions on submitting suggestions or fixes.

        Thanks,

                Douglas C. Schmidt
                d.schmidt at vanderbilt.edu