aboutsummaryrefslogtreecommitdiff
path: root/handbook/submitters.sgml
blob: fa17c135436f46af04e96819bc6c3b3d8898831f (plain) (blame)
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
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
<!-- $Id: submitters.sgml,v 1.299 1999-03-01 04:22:32 jdp Exp $ -->
<!-- The FreeBSD Documentation Project -->

<chapt><heading>Contributing to FreeBSD<label id="contrib"></heading>

<p><em>Contributed by &a.jkh;.</em>

<p>So you want to contribute something to FreeBSD?  That is great!
We can always use the help, and FreeBSD is one of those systems
that <em>relies</em> on the contributions of its user base in order
to survive.  Your contributions are not only appreciated, they are
vital to FreeBSD's continued growth!

<p>Contrary to what some people might also have you believe, you do not
need to be a hot-shot programmer or a close personal friend of the
FreeBSD core team in order to have your contributions accepted.  The
FreeBSD Project's development is done by a large and growing number of
international contributors whose ages and areas of technical expertise
vary greatly, and there is always more work to be done than there are
people available to do it.

<p>Since the FreeBSD project is responsible for an entire operating
system environment (and its installation) rather than just a kernel or
a few scattered utilities, our "TODO" list also spans a very wide
range of tasks, from documentation, beta testing and presentation to
highly specialized types of kernel development.  No matter what your
skill level, there is almost certainly something you can do to help the
project!

<p>Commercial entities engaged in FreeBSD-related enterprises are
also encouraged to contact us.  Need a special extension to make your
product work?  You will find us receptive to your requests, given that
they are not too outlandish.  Working on a value-added product?  Please
let us know!  We may be able to work cooperatively on some aspect of
it.  The free software world is challenging a lot of existing
assumptions about how software is developed, sold, and maintained
throughout its life cycle, and we urge you to at least give it a
second look.

<sect><heading>What Is Needed</heading>

<p>The following list of tasks and sub-projects represents something
of an amalgam of the various core team TODO lists and user requests
we have collected over the last couple of months.  Where possible, tasks
have been ranked by degree of urgency.  If you are interested in
working on one of the tasks you see here, send mail to the coordinator
listed by clicking on their names.  If no coordinator has been
appointed, maybe you would like to volunteer?

<sect1><heading>High priority tasks</heading>
<p>The following tasks are considered to be urgent, usually because
they represent something that is badly broken or sorely needed:
<enum>
<item>3-stage boot issues.  Overall coordination:
&a.hackers
<p><itemize>
<item>Do WinNT compatible drive tagging so that the 3rd stage can
provide an accurate mapping of BIOS geometries for disks.
</itemize>
<item>Filesystem problems.  Overall coordination:
&a.fs
<itemize>
<item>Clean up and document the nullfs filesystem code.  Coordinator: &a.eivind
<item>Fix the union file system.  Coordinator: &a.dg
</itemize>
<item>Implement Int13 vm86 disk driver.  Coordinator: &a.hackers
<item>New bus architecture.  Overall coordination:
&a.newbus
<p><itemize>
<item>Port existing ISA drivers to new architecture.
<item>Move all interrupt-management code to appropriate parts of the
bus drivers.
<item>Port PCI subsystem to new architecture.  Coordinator: &a.dfr
<item>Figure out the right way to handle removable devices and then
use that as a substrate on which PC-Card and CardBus support can be
implemented.
<item>Resolve the probe/attach priority issue once and for all.
<item>Move any remaining buses over to the new architecture.
</itemize>
<item>Kernel issues.  Overall coordination:
&a.hackers
<p><itemize>
<item>Fix the syscons ALT-Fn/vt switching hangs.  Coordinator: &a.sos
</itemize>
<item>Add more pro-active security infrastructure.  Overall
coordination: &a.security
<itemize>
<item>Build something like Tripwire(TM) into the kernel, with a remote
and local part.  There are a number of cryptographic issues to getting
this right; contact the coordinator for details.  Coordinator: &a.eivind
<item>Make the entire kernel use suser() instead of comparing to 0.
It is presently using about half of each.  Coordinator: &a.eivind
<item>Split securelevels into different parts, to allow an
administrator to throw away those privileges he can throw away.
Setting the overall securelevel needs to have the same effect as now,
obviously. Coordinator: &a.eivind
<item>Make it possible to upload a list of 'allowed programs' to BPF,
and then block BPF from accepting other programs.   This would allow
BPF to be use e.g. for DHCP, without allowing an attacker to start
snooping the local network.
<item>Update the security checker script.  We should at least grab all
the checks from the other BSD derivates, and add checks that a system
with securelevel increased also have reasonable flags on the relevant
parts.  Coordinator: &a.eivind
<item>Add authorization infrastructure to the kernel, to allow
different authorization policies.  Part of this could be done by
modifying 'suser()'.  Coordinator: &a.eivind
<item> Add code to the NFS layer so you cannot chdir("..") out of a NFS
partition. E.g.: /usr is a UFS partition with /usr/src NFS exported.
Now it is possible to use the NFS file handle for /usr/src to get access
to /usr.                                  
</itemize>
</enum>

<sect1><heading>Medium priority tasks</heading>
<p>The following tasks need to be done, but not with any particular
urgency:
<enum>
<item>Full KLD based driver support/Configuration Manager.
<p><itemize>
<item>Write a configuration manager (in the 3rd stage boot?) that probes
your hardware in a sane manner, keeps only the KLDs required for
your hardware, etc.
</itemize>
<item>PCMCIA/PCCARD.  Coordinators: &a.msmith and &a.phk
<itemize>
<item>Documentation!
<item>Reliable operation of the pcic driver (needs testing).
<item>Recognizer and handler for sio.c (mostly done).
<item>Recognizer and handler for ed.c (mostly done).
<item>Recognizer and handler for ep.c (mostly done).
<item>User-mode recognizer and handler (partially done).
</itemize>
<item>Advanced Power Management.  Coordinators: &a.msmith and &a.phk
<itemize>
<item>APM sub-driver (mostly done).
<item>IDE/ATA disk sub-driver (partially done).
<item>syscons/pcvt sub-driver.
<item>Integration with the PCMCIA/PCCARD drivers (suspend/resume).
</itemize>
</enum>

<sect1><heading>Low priority tasks</heading>
<p>The following tasks are purely cosmetic or represent such an
investment of work that it is not likely that anyone will get them done
anytime soon:

<p>The first N items are from Terry Lambert &lt;terry@lambert.org&gt
<enum>
<item>NetWare Server (protected mode ODI driver) loader and subservices
to allow the use of ODI card drivers supplied with network cards.
The same thing for NDIS drivers and NetWare SCSI drivers.

<item>An "upgrade system" option that works on Linux boxes instead
of just previous rev FreeBSD boxes.

<item>Symmetric Multiprocessing with kernel preemption (requires kernel
preemption).

<item>A concerted effort at support for portable computers.  This is
somewhat handled by changing PCMCIA bridging rules and power
management event handling.  But there are things like detecting
internal vs. external display and picking a different screen
resolution based on that fact, not spinning down the disk if
the machine is in dock, and allowing dock-based cards to disappear
without affecting the machines ability to boot (same issue for
PCMCIA).

</enum>

<sect1><heading>Smaller tasks</heading>
<p>
Most of the tasks listed in the previous sections require either a
considerable investment of time or an in-depth knowledge of the FreeBSD
kernel (or both).  However, there are also many useful tasks which are
suitable for &quot;weekend hackers&quot;, or people without programming
skills.

<enum>
<item>If you run FreeBSD-current and have a good Internet connection,
there is a machine current.freebsd.org which builds a full release
once a day - every now and again, try and install the latest release
from it and report any failures in the process.

<item>Read the freebsd-bugs mailing list.  There might be a problem
you can comment constructively on or with patches you can test.  Or
you could even try to fix one of the problems yourself.

<item>Read through the FAQ and Handbook periodically.  If anything is
badly explained, out of date or even just completely wrong, let us
know.  Even better, send us a fix (SGML is not difficult to learn, but
there is no objection to ASCII submissions).

<item>Help translate FreeBSD documentation into your native language (if
not already available) - just send an email to &a.doc asking if anyone is
working on it.  Note that you are not committing yourself to translating
every single FreeBSD document by doing this - in fact, the documentation
most in need of translation is the installation instructions.

<item>Read the freebsd-questions mailing list and &ng.misc
occasionally (or even regularly).  It can be very satisfying to share
your expertise and help people solve their problems; sometimes you may
even learn something new yourself!  These forums can also be a source
of ideas for things to work on.

<item>If you know of any bugfixes which have been successfully applied
to -current but have not been merged into -stable after a decent
interval (normally a couple of weeks), send the committer a polite
reminder.

<item>Move contributed software to src/contrib in the source tree.

<item>Make sure code in src/contrib is up to date.

<item>Look for year 2000 bugs (and fix any you find!)

<item>Build the source tree (or just part of it) with extra warnings
enabled and clean up the warnings.

<item>Fix warnings for ports which do deprecated things like using
gets() or including malloc.h.

<item>If you have contributed any ports, send your patches back to the
original author (this will make your life easier when they bring out
the next version)

<item>Suggest further tasks for this list!

</enum>

<sect><heading>How to Contribute</heading>

<p>Contributions to the system generally fall into one or more of
the following 6 categories:

<sect1><heading>Bug reports and general commentary
<label id="contrib:general"></heading>

<p>An idea or suggestion of <em>general</em> technical interest
should be mailed to the &a.hackers;.  Likewise, people with an
interest in such things (and a tolerance for a <em>high</em>
volume of mail!) may subscribe to the hackers mailing list by
sending mail to &a.majordomo;.  See
<ref id="eresources:mail" name="mailing lists">
for more information about this and other mailing lists.

If you find a bug or are submitting a specific change, please report
it using the <tt>send-pr(1)</tt> program or its
<url url="http://www.freebsd.org/send-pr.html" name="WEB-based equivalent">.
Try to fill-in each field of the bug report.  Unless they exceed
65KB, include any patches directly in the report.  Consider compressing
them and using <tt>uuencode(1)</tt> if they exceed 20KB.  Upload very
large submissions to <url url="ftp://ftp.FreeBSD.ORG/pub/FreeBSD/incoming/">.

After filing a report, you should receive confirmation along with
a tracking number.  Keep this tracking number so that you can
update us with details about the problem by sending mail to
<url url="mailto:bug-followup@FreeBSD.ORG"
name="bug-followup@FreeBSD.ORG">.  Use the number as the
message subject, e.g. <tt>"Re: kern/3377"</tt>.  Additional
information for any bug report should be submitted this way.

If you do not receive confirmation in a timely fashion (3 days to
a week, depending on your email connection) or are, for some
reason, unable to use the <tt>send-pr(1)</tt> command,
then you may ask someone to file it for you by sending mail
to the &a.bugs;.

<sect1><heading>Changes to the documentation</heading>

<p>Changes to the documentation are overseen by the &a.doc;.
Send submissions and changes (even small ones are welcome!)
using send-pr as described in
<ref id="contrib:general" name="Bug Reports and General Commentary">.

<sect1><heading>Changes to existing source code</heading>

<p>An addition or change to the existing source code is a somewhat trickier
   affair and depends a lot on how far out of date you are with the current
   state of the core FreeBSD development.  There is a special on-going release
   of FreeBSD known as ``FreeBSD-current'' which is made available in
   a variety of ways for the convenience of developers working
   actively on the system.  See <ref id="current" name="Staying
   current with FreeBSD"> for more information about getting and using
   FreeBSD-current.

   Working from older sources unfortunately means that your changes may
   sometimes be too obsolete or too divergent for easy re-integration into
   FreeBSD.  Chances of this can be minimized somewhat by subscribing to the
   &a.announce and the &a.current lists, where discussions
   on the current state of the system take place.

   Assuming that you can manage to secure fairly up-to-date sources to base
   your changes on, the next step is to produce a set of diffs to send to the
   FreeBSD maintainers.  This is done with the <tt>diff(1)</tt> command,
   with the `context diff' form being preferred.  For example:
<tscreen><verb>
diff -c oldfile newfile
</verb></tscreen>
or
<tscreen><verb>
diff -c -r olddir newdir
</verb></tscreen>
   would generate such a set of context diffs for the given source file
   or directory hierarchy.  See the man page for <tt>diff(1)</tt> for more
   details.

   Once you have a set of diffs (which you may test with the
   <tt>patch(1)</tt> command), you should submit them for inclusion
   with FreeBSD.  Use the <tt>send-pr(1)</tt> program as described in
   <ref id="contrib:general" name="Bug Reports and General Commentary">.
   <em>Do not</em> just send the diffs to the &a.hackers; or they will get
   lost!  We greatly appreciate your submission (this is a volunteer
   project!); because we are busy, we may not be able to address it
   immediately, but it will remain in the pr database until we do.

   If you feel it appropriate (e.g. you have added, deleted, or
   renamed files), bundle your changes into a <tt>tar</tt> file
   and run the <tt>uuencode(1)</tt> program on it.  Shar archives are
   also welcome.

   If your change is of a potentially sensitive nature, e.g.
   you are unsure of copyright issues governing its further distribution
   or you are simply not ready to release it without a tighter review first,
   then you should send it to &a.core; directly rather than submitting
   it with <tt>send-pr(1)</tt>.  The core mailing list
   reaches a much smaller group of people who do much of the
   day-to-day work on FreeBSD.  Note that this group is also
   <em>very busy</em> and so you should only send mail to them
   where it is truly necessary.

   Please refer to <tt>man 9 intro</tt> and <tt>man 9 style</tt>
   for some information on coding style.  We would appreciate
   it if you were at least aware of this information before
   submitting code.

<sect1><heading>New code or major value-added packages</heading>

<p>In the rare case of a significant contribution of a large body
   work, or the addition of an important new feature to FreeBSD,
   it becomes almost always necessary to either send changes as
   uuencode'd tar files or upload them to our ftp site <url
   url="ftp://ftp.FreeBSD.ORG/pub/FreeBSD/incoming">.

   When working with large amounts of code, the touchy subject of
   copyrights also invariably comes up.  Acceptable copyrights
   for code included in FreeBSD are:

<enum>
	<item>The BSD copyright.  This copyright is most preferred
	    due to its ``no strings attached'' nature and general
	    attractiveness to commercial enterprises.  Far from
	    discouraging such commercial use, the FreeBSD Project
	    actively encourages such participation by commercial interests
	    who might eventually be inclined to invest something of their own
	    into FreeBSD.

	<item>The GNU Public License, or ``GPL''.  This license is not quite
	    as popular with us due to the amount of extra effort demanded
	    of anyone using the code for commercial purposes, but given
	    the sheer quantity of GPL'd code we currently require (compiler,
	    assembler, text formatter, etc) it would be silly to refuse
	    additional contributions under this license.  Code under the GPL
	    also goes into a different part of the tree, that being
	    <tt>/sys/gnu</tt> or <tt>/usr/src/gnu</tt>, and is therefore
	    easily identifiable to anyone for whom the GPL presents a problem.
</enum>

<p>Contributions coming under any other type of copyright must be
   carefully reviewed before their inclusion into FreeBSD will
   be considered.  Contributions for which particularly restrictive
   commercial copyrights apply are generally rejected, though the
   authors are always encouraged to make such changes available
   through their own channels.

   To place a ``BSD-style'' copyright on your work, include the following
   text at the very beginning of every source code file you wish
   to protect, replacing the text between the `<tt>%%</tt>' with
   the appropriate information.
<tscreen><verb>
Copyright (c) %%proper_years_here%%
	%%your_name_here%%, %%your_state%%  %%your_zip%%.  All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer as
   the first lines of this file unmodified.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY %%your_name_here%% ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL %%your_name_here%% BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

	&dollar;Id&dollar;
</verb></tscreen>
For your convenience, a copy of this text can be found in
<tt>/usr/share/examples/etc/bsd-style-copyright</tt>.
		      
<sect1><heading>Money, Hardware or Internet access</heading>
<p>We are always very happy to accept donations to further the cause of
the FreeBSD Project and, in a volunteer effort like ours, a little can go
a long way!  Donations of hardware are also very important to expanding
our list of supported peripherals since we generally lack the funds to
buy such items ourselves. 

<sect2><heading>Donating funds<label id="donations"></heading>
<p>While the FreeBSD Project is not a 501(c)(3) (charitable) corporation and
hence cannot offer special tax incentives for any donations made, any such
donations will be gratefully accepted on behalf of the project by
FreeBSD, Inc.

<p>FreeBSD, Inc. was founded in early 1995 by &a.jkh and &a.dg with the
goal of furthering the aims of the FreeBSD Project and giving it a minimal
corporate presence.  Any and all funds donated (as well as any profits
that may eventually be realized by FreeBSD, Inc.) will be used exclusively
to further the project's goals.  

Please make any checks payable to FreeBSD, Inc., sent in care of the
following address:

<tscreen><verb>
FreeBSD, Inc.
c/o Jordan Hubbard
4041 Pike Lane, suite #F.
Concord CA, 94520

[currently using the Walnut Creek CDROM address until a PO box can be
opened]
</verb></tscreen>

Wire transfers may also be sent directly to:

<tscreen><verb>
Bank Of America
Concord Main Office 
P.O. Box 37176
San Francisco CA, 94137-5176
 
Routing #: 121-000-358
Account #: 01411-07441 (FreeBSD, Inc.)
</verb></tscreen>

Any correspondence related to donations should be sent to
<url url="mailto:jkh@FreeBSD.org" name="Jordan Hubbard">, either
via email or to the FreeBSD, Inc. postal address given above.

If you do not wish to be listed in our <ref id="donors" name="donors">
section, please specify this when making your donation.  Thanks!

<sect2><heading>Donating hardware</heading>

<p>Donations of hardware in any of the 3 following categories are also gladly
accepted by the FreeBSD Project:

<itemize>
<item>General purpose hardware such as disk drives, memory or complete
systems should be sent to the FreeBSD, Inc. address listed in the
<em>donating funds</em> section.

<item>Hardware for which ongoing compliance testing is desired.
We are currently trying to put together a testing lab of all components
that FreeBSD supports so that proper regression testing can be done with
each new release. We are still lacking many important pieces (network cards,
motherboards, etc) and if you would like to make such a donation, please contact
&a.dg for information on which items are still required.

<item>Hardware currently unsupported by FreeBSD for which you would like to
see such support added.  Please contact the &a.core; before sending
such items as we will need to find a developer willing to take on the task
before we can accept delivery of new hardware.  
</itemize>

<sect2><heading>Donating Internet access</heading>

<p>We can always use new mirror sites for FTP, WWW or cvsup.
If you would like to be such a mirror, please contact
<url url="mailto:admin@FreeBSD.ORG" name="the FreeBSD project
administrators"> for more information.

<sect><heading>Donors Gallery<label id="donors"></heading>

<p>The FreeBSD Project is indebted to the following donors and would
like to publically thank them here!

<itemize>
<item><bf>Contributors to the central server project:</bf>
  <p>The following individuals and businesses made it possible for
  the FreeBSD Project to build a new central server machine to eventually
  replace <em>freefall.freebsd.org</em> by donating the following items:

  <itemize>
	<item><url url="mailto:mbarkah@freebsd.org" name="Ade Barkah">
	and his employer, <url url="http://www.hemi.com"
	name="Hemisphere Online">, donated a <bf>Pentium Pro (P6) 200Mhz CPU
	</bf>

	<item><url url="http://www.asacomputers.com" name="ASA Computers">
	donated a <bf>Tyan 1662 motherboard</bf>.

	<item><url url="mailto:joe@via.net" name="Joe McGuckin"> of
	<url url="http://www.via.net" name="ViaNet Communications">
	donated a <bf>Kingston ethernet controller.</bf>

	<item><url url="mailto:jack@diamond.xtalwind.net"
	name="Jack O'Neill"> donated an <bf>NCR 53C875 SCSI
	controller card</bf>.

	<item><url url="mailto:ulf@Alameda.net" name="Ulf Zimmermann">
	of <url url="http://www.Alameda.net" name="Alameda Networks">
	donated <bf>128MB of memory</bf>, a <bf>4 Gb disk drive
	and the case.</bf>
   </itemize>

<item><bf>Direct funding:</bf>
  <p>The following individuals and businesses have generously contributed
  direct funding to the project:

  <itemize>
	<item><url url="mailto:ANDRSN@HOOVER.STANFORD.EDU"
	name="Annelise Anderson">

	<item><url url="mailto:dillon@best.net" name="Matt Dillon">

	<item><url url="http://www.epilogue.com/" name="Epilogue
        Technology Corporation">

	<item>Sean Eric Fagan
	<item>Don Scott Wilde</item>

	<item><url url="mailto:gmarco@masternet.it"
	name="Gianmarco Giovannelli">

	<item><url url="mailto:joeg@truenorth.org" name="Josef C. Grosch">

	<item>Robert T. Morris</item>

	<item><url url="mailto:chuckr@freebsd.org" name="Chuck Robey">

	<item><url url="mailto:ken@stox.sa.enteract.com"
	name="Kenneth P. Stox"> of <url url="http://www.imagescape.com"
	name="Imaginary Landscape, LLC.">

	<item><url url="mailto:dk@dog.farm.org"
	name="Dmitry S. Kohmanyuk">

        <item><url url="http://www.cdrom.co.jp/" name="Laser5">
        of Japan (a portion of the profits from sales of their
        various FreeBSD CD-ROMs.

	<item><url url="http://www.mmjp.or.jp/fuki/"
	name="Fuki Shuppan Publishing Co."> donated a portion of
	their profits from <em>Hajimete no FreeBSD</em>
	(FreeBSD, Getting started) to the FreeBSD and XFree86
	projects.</item>

	<item><url url="http://www.ascii.co.jp/"
	name="ASCII Corp."> donated a portion of
	their profits from several FreeBSD-related books to the
	FreeBSD project.</item>

	<item><url url="http://www.yokogawa.co.jp/"
	name="Yokogawa Electric Corp"> has generously donated
	significant funding to the FreeBSD project.</item>

	<item><url url="http://www.buffnet.net/" name="BuffNET"></item>

	<item><url url="http://www.pacificsolutions.com/" name="Pacific Solutions"></item>

   </itemize>

<item><bf>Hardware contributors:</bf>
  <p>
  The following individuals and businesses have generously contributed
  hardware for testing and device driver development/support:

  <itemize>
    <item>Walnut Creek CDROM for providing the Pentium P5-90 and
      486/DX2-66 EISA/VL systems that are being used for our development
      work, to say nothing of the network access and other donations of
      hardware resources.

    <item>TRW Financial Systems, Inc. provided 130 PCs, three 68 GB
      fileservers, twelve Ethernets, two routers and an ATM
      switch for debugging the diskless code.

    <item>Dermot McDonnell donated the Toshiba XM3401B CDROM drive
      currently used in freefall.

    <item>&a.chuck; contributed his floppy tape streamer for experimental
      work.

    <item>Larry Altneu <tt><htmlurl url='mailto:larry@ALR.COM'
      name='&lt;larry@ALR.COM&gt;'></tt>, and &a.wilko;,
      provided Wangtek and Archive QIC-02 tape drives in order to
      improve the <tt>wt</tt> driver.

    <item>Ernst Winter <tt><htmlurl url='mailto:ewinter@lobo.muc.de'
      name='&lt;ewinter@lobo.muc.de&gt;'></tt> contributed a 2.88 MB
      floppy drive to the project.  This will hopefully increase the
      pressure for rewriting the floppy disk driver. ;-)

    <item><url url="http://www.tekram.com" name="Tekram Technologies">
      sent one each of their DC-390, DC-390U and DC-390F FAST and ULTRA
      SCSI host adapter cards for regression testing of the NCR and AMD
      drivers with their cards. They are also to be applauded for making
      driver sources for free operating systems available from their 
      FTP server <url url="ftp://ftp.tekram.com/scsi/FreeBSD"
      name="ftp://ftp.tekram.com/scsi/FreeBSD">.

    <item><url url="mailto:lma@varesearch.com" name="Larry M. Augustin">
      contributed not only a Symbios Sym8751S SCSI card, but also a set
      of data books, including one about the forthcoming Sym53c895 chip
      with Ultra-2 and LVD support, and the latest programming manual with
      information on how to safely use the advanced features of the latest 
      Symbios SCSI chips. Thanks a lot!

    <item><url url="mailto:kuku@freebsd.org" name="Christoph Kukulies">
    donated an FX120 12 speed Mitsumi CDROM drive for IDE CDROM driver
    development.

  </itemize>

<item><bf>Special contributors:</bf>
  <p>
  <itemize>
	<item><url url="http://www.cdrom.com" name="Walnut Creek CDROM">
	has donated almost more than we can say (see the
	<ref id="history" name="history"> document for more details).
	In particular, we would like to thank them for the original hardware
	used for <em>freefall.FreeBSD.ORG</em>, our primary development
	machine, and for <em>thud.FreeBSD.ORG</em>, a testing and build box.
	We are also indebted to them for funding various contributors over
	the years and providing us with unrestricted use of their T1
	connection to the Internet.</item>

	<item>The <url url="http://www.interface-business.de"
	name="interface business GmbH, Dresden"> has been patiently
	supporting &a.joerg; who has often preferred FreeBSD work over
	paywork, and used to fall back to their (quite expensive) EUnet
	Internet connection whenever his private connection became too
	slow or flakey to work with it...</item>

	<item><url url="http://www.bsdi.com" name="Berkeley Software
	Design, Inc."> has contributed their DOS emulator code to the
	remaining BSD world, which is used in the <em>dosemu</em>
	command.</item>
  </itemize>
</itemize>

<sect><heading>Core Team Alumnus</heading>

<p>The following people were members of the FreeBSD core team during the
period indicated.  We thank them for their past efforts in the service
of the FreeBSD project!</p>

<p><em>In rough chronological order:</em></p>

<p>
 <itemize>
 <item>Guido van Rooij (1995 - 1999) </item>
 <item>John Dyson (1993 - 1998)</item>
 <item>Nate Williams (1992 - 1996)</item>
 <item>Rod Grimes (1992 - 1995)</item>
 <item>Andreas Schulz (1992 - 1995)</item>
 <item>Geoff Rehmet (1993 - 1995)</item>
 <item>Paul Richards (1992 - 1995)</item>
 <item>Scott Mace (1993 - 1994)</item>
 <item>Andrew Moore (1993 - 1994)</item>
 <item>Christoph Robitschko (1993 - 1994)</item>
 <item>J.T. Conklin (1992 - 1993)</item>
</itemize>

<sect><heading>Derived Software Contributors</heading>

<p>This software was originally derived from William
   F. Jolitz's 386BSD release 0.1, though almost none of the
   original 386BSD specific code remains.  This software has
   been essentially re-implemented from the 4.4BSD-Lite
   release provided by the Computer Science Research Group
   (CSRG) at the University of California, Berkeley and
   associated academic contributors.

   There are also portions of NetBSD and OpenBSD that have been integrated
   into FreeBSD as well, and we would therefore like to thank
   all the contributors to NetBSD and OpenBSD for their work.

<sect><heading>Additional FreeBSD Contributors<label
id="contrib:additional"></heading>

<p>(in alphabetical order by first name):
<itemize>
  <item>ABURAYA Ryushirou <tt><htmlurl url='mailto:rewsirow@ff.iij4u.or.jp'
        name='&lt;rewsirow@ff.iij4u.or.jp&gt;'></tt>
  <item>AMAGAI Yoshiji <tt><htmlurl url='mailto:amagai@nue.org'
        name='&lt;amagai@nue.org&gt;'></tt>
  <item>Aaron Bornstein <tt><htmlurl url='mailto:aaronb@j51.com'
        name='&lt;aaronb@j51.com&gt;'></tt>
  <item>Aaron Smith <tt><htmlurl url='mailto:aaron@tau.veritas.com'
        name='&lt;aaron@tau.veritas.com&gt;'></tt>
  <item>Achim Patzner <tt><htmlurl url='mailto:ap@noses.com'
        name='&lt;ap@noses.com&gt;'></tt>
  <item>Ada T Lim <tt><htmlurl url='mailto:ada@bsd.org'
        name='&lt;ada@bsd.org&gt;'></tt>
  <item>Adam Baran <tt><htmlurl url='mailto:badam@mw.mil.pl'
        name='&lt;badam@mw.mil.pl&gt;'></tt>
  <item>Adam Glass <tt><htmlurl url='mailto:glass@postgres.berkeley.edu'
        name='&lt;glass@postgres.berkeley.edu&gt;'></tt>
  <item>Adam McDougall <tt><htmlurl url='mailto:mcdouga9@egr.msu.edu'
        name='&lt;mcdouga9@egr.msu.edu&gt;'></tt>
  <item>Adrian Colley <tt><htmlurl url='mailto:aecolley@ois.ie'
        name='&lt;aecolley@ois.ie&gt;'></tt>
  <item>Adrian Hall <tt><htmlurl url='mailto:adrian@ibmpcug.co.uk'
        name='&lt;adrian@ibmpcug.co.uk&gt;'></tt>
  <item>Adrian Mariano <tt><htmlurl url='mailto:adrian@cam.cornell.edu'
        name='&lt;adrian@cam.cornell.edu&gt;'></tt>
  <item>Adrian Steinmann <tt><htmlurl url='mailto:ast@marabu.ch'
        name='&lt;ast@marabu.ch&gt;'></tt>
  <item>Adrian T. Filipi-Martin <tt><htmlurl
        url='mailto:atf3r@agate.cs.virginia.edu'
        name='&lt;atf3r@agate.cs.virginia.edu&gt;'></tt>
  <item>Ajit Thyagarajan <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Akio Morita <tt><htmlurl url='mailto:amorita@meadow.scphys.kyoto-u.ac.jp'
        name='&lt;amorita@meadow.scphys.kyoto-u.ac.jp&gt;'></tt>
  <item>Akira SAWADA <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Akira Watanabe <tt><htmlurl url='mailto:akira@myaw.ei.meisei-u.ac.jp'
        name='&lt;akira@myaw.ei.meisei-u.ac.jp&gt;'></tt>
  <item>Akito Fujita <tt><htmlurl url='mailto:fujita@zoo.ncl.omron.co.jp'
        name='&lt;fujita@zoo.ncl.omron.co.jp&gt;'></tt>
  <item>Alain Kalker <tt><htmlurl
        url='mailto:A.C.P.M.Kalker@student.utwente.nl'
        name='&lt;A.C.P.M.Kalker@student.utwente.nl&gt;'></tt>
  <item>Alan Bawden <tt><htmlurl url='mailto:alan@curry.epilogue.com'
        name='&lt;alan@curry.epilogue.com&gt;'></tt>
  <item>Alan Cox <tt><htmlurl url='mailto:alc@cs.rice.edu'
        name='&lt;alc@cs.rice.edu&gt;'></tt>
  <item>Alec Wolman <tt><htmlurl url='mailto:wolman@cs.washington.edu'
        name='&lt;wolman@cs.washington.edu&gt;'></tt>
  <item>Aled Morris <tt><htmlurl url='mailto:aledm@routers.co.uk'
        name='&lt;aledm@routers.co.uk&gt;'></tt>
  <item>Alex <tt><htmlurl url='mailto:garbanzo@hooked.net'
        name='&lt;garbanzo@hooked.net&gt;'></tt>
  <item>Alex D. Chen <tt><htmlurl url='mailto:dhchen@Canvas.dorm7.nccu.edu.tw'
        name='&lt;dhchen@Canvas.dorm7.nccu.edu.tw&gt;'></tt>
  <item>Alex G. Bulushev <tt><htmlurl url='mailto:bag@demos.su'
        name='&lt;bag@demos.su&gt;'></tt>
  <item>Alex Le Heux <tt><htmlurl url='mailto:alexlh@funk.org'
        name='&lt;alexlh@funk.org&gt;'></tt>
  <item>Alexander B. Povolotsky <tt><htmlurl url='mailto:tarkhil@mgt.msk.ru'
        name='&lt;tarkhil@mgt.msk.ru&gt;'></tt>
  <item>Alexander Leidinger <tt><htmlurl url='mailto:netchild@wurzelausix.CS.Uni-SB.DE'
        name='&lt;netchild@wurzelausix.CS.Uni-SB.DE&gt;'></tt>
  <item>Alexandre Snarskii <tt><htmlurl url='mailto:snar@paranoia.ru'
        name='&lt;snar@paranoia.ru&gt;'></tt>
  <item>Alistair G. Crooks <tt><htmlurl url='mailto:agc@uts.amdahl.com'
        name='&lt;agc@uts.amdahl.com&gt;'></tt>
  <item>Allan Saddi <tt><htmlurl url='mailto:asaddi@philosophysw.com'
        name='&lt;asaddi@philosophysw.com&gt;'></tt>
  <item>Allen Campbell <tt><htmlurl url='mailto:allenc@verinet.com'
        name='&lt;allenc@verinet.com&gt;'></tt>
  <item>Amakawa Shuhei <tt><htmlurl url='mailto:amakawa@hoh.t.u-tokyo.ac.jp'
        name='&lt;amakawa@hoh.t.u-tokyo.ac.jp&gt;'></tt>
  <item>Amancio Hasty <tt><htmlurl url='mailto:hasty@star-gate.com'
        name='&lt;hasty@star-gate.com&gt;'></tt>
  <item>Amir Farah <tt><htmlurl url='mailto:amir@comtrol.com'
        name='&lt;amir@comtrol.com&gt;'></tt>
  <item>Amy Baron <tt><htmlurl url='mailto:amee@beer.org'
        name='&lt;amee@beer.org&gt;'></tt>
  <item>Anatoly A. Orehovsky <tt><htmlurl url='mailto:tolik@mpeks.tomsk.su'
        name='&lt;tolik@mpeks.tomsk.su&gt;'></tt>
  <item>Anatoly Vorobey <tt><htmlurl url='mailto:mellon@pobox.com'
        name='&lt;mellon@pobox.com&gt;'></tt>
  <item>Anders Nordby <tt><htmlurl url='mailto:nickerne@nome.no'
        name='&lt;nickerne@nome.no&gt;'></tt>
  <item>Anders Thulin <tt><htmlurl url='mailto:Anders.X.Thulin@telia.se'
        name='&lt;Anders.X.Thulin@telia.se&gt;'></tt>
  <item>Andras Olah <tt><htmlurl url='mailto:olah@cs.utwente.nl'
        name='&lt;olah@cs.utwente.nl&gt;'></tt>
  <item>Andre Albsmeier <tt><htmlurl url='mailto:Andre.Albsmeier@mchp.siemens.de'
        name='&lt;Andre.Albsmeier@mchp.siemens.de&gt;'></tt>
  <item>Andre Oppermann <tt><htmlurl url='mailto:andre@pipeline.ch'
        name='&lt;andre@pipeline.ch&gt;'></tt>
  <item>Andreas Haakh <tt><htmlurl url='mailto:ah@alman.robin.de'
        name='&lt;ah@alman.robin.de&gt;'></tt>
  <item>Andreas Kohout <tt><htmlurl url='mailto:shanee@rabbit.augusta.de'
        name='&lt;shanee@rabbit.augusta.de&gt;'></tt>
  <item>Andreas Lohr <tt><htmlurl url='mailto:andreas@marvin.RoBIN.de'
        name='&lt;andreas@marvin.RoBIN.de&gt;'></tt>
  <item>Andreas Schulz <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Andreas Wetzel <tt><htmlurl url='mailto:mickey@deadline.snafu.de'
        name='&lt;mickey@deadline.snafu.de&gt;'></tt>
  <item>Andreas Wrede <tt><htmlurl url='mailto:andreas@planix.com'
        name='&lt;andreas@planix.com&gt;'></tt>
  <item>Andres Vega Garcia <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Andrew Atrens <tt><htmlurl url='mailto:atreand@statcan.ca'
        name='&lt;atreand@statcan.ca&gt;'></tt>
  <item>Andrew Gillham <tt><htmlurl url='mailto:gillham@andrews.edu'
        name='&lt;gillham@andrews.edu&gt;'></tt>
  <item>Andrew Gordon <tt><htmlurl url='mailto:andrew.gordon@net-tel.co.uk'
        name='&lt;andrew.gordon@net-tel.co.uk&gt;'></tt>
  <item>Andrew Herbert <tt><htmlurl url='mailto:andrew@werple.apana.org.au'
        name='&lt;andrew@werple.apana.org.au&gt;'></tt>
  <item>Andrew J. Korty <tt><htmlurl url='mailto:ajk@purdue.edu'
        name='&lt;ajk@purdue.edu&gt;'></tt>
  <item>Andrew L. Moore <tt><htmlurl url='mailto:alm@mclink.com'
        name='&lt;alm@mclink.com&gt;'></tt>
  <item>Andrew McRae <tt><htmlurl url='mailto:amcrae@cisco.com'
        name='&lt;amcrae@cisco.com&gt;'></tt>
  <item>Andrew Stevenson <tt><htmlurl url='mailto:andrew@ugh.net.au'
        name='&lt;andrew@ugh.net.au&gt;'></tt>
  <item>Andrew Timonin <tt><htmlurl url='mailto:tim@pool1.convey.ru'
        name='&lt;tim@pool1.convey.ru&gt;'></tt>
  <item>Andrew V. Stesin <tt><htmlurl url='mailto:stesin@elvisti.kiev.ua'
        name='&lt;stesin@elvisti.kiev.ua&gt;'></tt>
  <item>Andrew Webster <tt><htmlurl url='mailto:awebster@dataradio.com'
        name='&lt;awebster@dataradio.com&gt;'></tt>
  <item>Andrey Zakhvatov <tt><htmlurl url='mailto:andy@icc.surw.chel.su'
        name='&lt;andy@icc.surw.chel.su&gt;'></tt>
  <item>Andy Farkas <tt><htmlurl url='mailto:andyf@speednet.com.au'
        name='&lt;andyf@speednet.com.au&gt;'></tt>
  <item>Andy Valencia <tt><htmlurl url='mailto:ajv@csd.mot.com'
        name='&lt;ajv@csd.mot.com&gt;'></tt>
  <item>Andy Whitcroft <tt><htmlurl url='mailto:andy@sarc.city.ac.uk'
        name='&lt;andy@sarc.city.ac.uk&gt;'></tt>
  <item>Angelo Turetta <tt><htmlurl url='mailto:ATuretta@stylo.it'
        name='&lt;ATuretta@stylo.it&gt;'></tt>
  <item>Anthony C. Chavez <tt><htmlurl url='mailto:magus@xmission.com'
        name='&lt;magus@xmission.com&gt;'></tt>
  <item>Anthony Yee-Hang Chan <tt><htmlurl url='mailto:yeehang@netcom.com'
        name='&lt;yeehang@netcom.com&gt;'></tt>
  <item>Anton Berezin <tt><htmlurl url='mailto:tobez@plab.ku.dk'
        name='&lt;tobez@plab.ku.dk&gt;'></tt>
  <item>Antti Kaipila <tt><htmlurl url='mailto:anttik@iki.fi'
        name='&lt;anttik@iki.fi&gt;'></tt>
  <item>Are Bryne <tt><htmlurl url='mailto:are.bryne@communique.no'
        name='&lt;are.bryne@communique.no&gt;'></tt>
  <item>Ari Suutari <tt><htmlurl url='mailto:ari@suutari.iki.fi'
        name='&lt;ari@suutari.iki.fi&gt;'></tt>
  <item>Arjan de Vet <tt><htmlurl url='mailto:devet@IAEhv.nl'
        name='&lt;devet@IAEhv.nl&gt;'></tt>
  <item>Arne Henrik Juul <tt><htmlurl url='mailto:arnej@Lise.Unit.NO'
        name='&lt;arnej@Lise.Unit.NO&gt;'></tt>
  <item>Assar Westerlund <tt><htmlurl url='mailto:assar@sics.se'
        name='&lt;assar@sics.se&gt;'></tt>
  <item>Atsushi Furuta <tt><htmlurl url='mailto:furuta@sra.co.jp'
        name='&lt;furuta@sra.co.jp&gt;'></tt>
  <item>Atsushi Murai <tt><htmlurl url='mailto:amurai@spec.co.jp'
        name='&lt;amurai@spec.co.jp&gt;'></tt>
  <item>Bakul Shah <tt><htmlurl url='mailto:bvs@bitblocks.com'
        name='&lt;bvs@bitblocks.com&gt;'></tt>
  <item>Barry Bierbauch <tt><htmlurl url='mailto:pivrnec@vszbr.cz'
        name='&lt;pivrnec@vszbr.cz&gt;'></tt>
  <item>Barry Lustig <tt><htmlurl url='mailto:barry@ictv.com'
        name='&lt;barry@ictv.com&gt;'></tt>
  <item>Ben Hutchinson <tt><htmlurl url='mailto:benhutch@xfiles.org.uk'
        name='&lt;benhutch@xfiles.org.uk&gt;'></tt>
  <item>Ben Jackson <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Ben Smithurst <tt><htmlurl url='mailto:ben@scientia.demon.co.uk'
        name='&lt;ben@scientia.demon.co.uk&gt;'></tt>
  <item>Ben Walter <tt><htmlurl url='mailto:bwalter@itachi.swcp.com'
        name='&lt;bwalter@itachi.swcp.com&gt;'></tt>
  <item>Benjamin Lewis <tt><htmlurl url='mailto:bhlewis@gte.net'
        name='&lt;bhlewis@gte.net&gt;'></tt>
  <item>Bernd Rosauer <tt><htmlurl url='mailto:br@schiele-ct.de'
        name='&lt;br@schiele-ct.de&gt;'></tt>
  <item>Bill Kish <tt><htmlurl url='mailto:kish@osf.org'
        name='&lt;kish@osf.org&gt;'></tt>
  <item>Bill Trost <tt><htmlurl url='mailto:trost@cloud.rain.com'
        name='&lt;trost@cloud.rain.com&gt;'></tt>
  <item>Blaz Zupan <tt><htmlurl url='mailto:blaz@amis.net'
        name='&lt;blaz@amis.net&gt;'></tt>
  <item>Bob Van Valzah <tt><htmlurl url='mailto:Bob@whitebarn.com'
        name='&lt;Bob@whitebarn.com&gt;'></tt>
  <item>Bob Willcox <tt><htmlurl url='mailto:bob@luke.pmr.com'
        name='&lt;bob@luke.pmr.com&gt;'></tt>
  <item>Boris Staeblow <tt><htmlurl url='mailto:balu@dva.in-berlin.de'
        name='&lt;balu@dva.in-berlin.de&gt;'></tt>
  <item>Boyd R. Faulkner <tt><htmlurl url='mailto:faulkner@asgard.bga.com'
        name='&lt;faulkner@asgard.bga.com&gt;'></tt>
  <item>Brad Karp <tt><htmlurl url='mailto:karp@eecs.harvard.edu'
        name='&lt;karp@eecs.harvard.edu&gt;'></tt>
  <item>Bradley Dunn <tt><htmlurl url='mailto:bradley@dunn.org'
        name='&lt;bradley@dunn.org&gt;'></tt>
  <item>Brandon Gillespie <tt><htmlurl url='mailto:brandon@roguetrader.com'
        name='&lt;brandon@roguetrader.com&gt;'></tt>
  <item>&a.wlloyd
  <item>Bob Wilcox <tt><htmlurl url='mailto:bob@obiwan.uucp'
        name='&lt;bob@obiwan.uucp&gt;'></tt>
  <item>Boyd Faulkner <tt><htmlurl url='mailto:faulkner@mpd.tandem.com'
        name='&lt;faulkner@mpd.tandem.com&gt;'></tt>
  <item>Brent J. Nordquist <tt><htmlurl url='mailto:bjn@visi.com'
        name='&lt;bjn@visi.com&gt;'></tt>
  <item>Brett Lymn <tt><htmlurl url='mailto:blymn@mulga.awadi.com.AU'
        name='&lt;blymn@mulga.awadi.com.AU&gt;'></tt>
  <item>Brett Taylor <tt><htmlurl
        url='mailto:brett@peloton.physics.montana.edu'
        name='&lt;brett@peloton.physics.montana.edu&gt;'></tt>
  <item>Brian Campbell <tt><htmlurl url='mailto:brianc@pobox.com'
        name='&lt;brianc@pobox.com&gt;'></tt>
  <item>Brian Clapper <tt><htmlurl url='mailto:bmc@willscreek.com'
        name='&lt;bmc@willscreek.com&gt;'></tt>
  <item>Brian Cully <tt><htmlurl url='mailto:shmit@kublai.com'
        name='&lt;shmit@kublai.com&gt;'></tt>
  <item>Brian F. Feldman <tt><htmlurl url='mailto:green@unixhelp.org'
        name='&lt;green@unixhelp.org&gt;'></tt>
  <item>Brian Handy <tt><htmlurl url='mailto:handy@lambic.space.lockheed.com'
        name='&lt;handy@lambic.space.lockheed.com&gt;'></tt>
  <item>Brian Litzinger <tt><htmlurl url='mailto:brian@MediaCity.com'
        name='&lt;brian@MediaCity.com&gt;'></tt>
  <item>Brian McGovern <tt><htmlurl url='mailto:bmcgover@cisco.com'
        name='&lt;bmcgover@cisco.com&gt;'></tt>
  <item>Brian Moore <tt><htmlurl url='mailto:ziff@houdini.eecs.umich.edu'
        name='&lt;ziff@houdini.eecs.umich.edu&gt;'></tt>
  <item>Brian R. Haug <tt><htmlurl url='mailto:haug@conterra.com'
        name='&lt;haug@conterra.com&gt;'></tt>
  <item>Brian Tao <tt><htmlurl url='mailto:taob@risc.org'
        name='&lt;taob@risc.org&gt;'></tt>
  <item>Brion Moss <tt><htmlurl url='mailto:brion@queeg.com'
        name='&lt;brion@queeg.com&gt;'></tt>
  <item>Bruce A. Mah <tt><htmlurl url='mailto:bmah@ca.sandia.gov'
        name='&lt;bmah@ca.sandia.gov&gt;'></tt>
  <item>Bruce Albrecht <tt><htmlurl url='mailto:bruce@zuhause.mn.org'
        name='&lt;bruce@zuhause.mn.org&gt;'></tt>
  <item>Bruce Gingery <tt><htmlurl url='mailto:bgingery@gtcs.com'
        name='&lt;bgingery@gtcs.com&gt;'></tt>
  <item>Bruce J. Keeler <tt><htmlurl url='mailto:loodvrij@gridpoint.com'
        name='&lt;loodvrij@gridpoint.com&gt;'></tt>
  <item>Bruce Murphy <tt><htmlurl url='mailto:packrat@iinet.net.au'
        name='&lt;packrat@iinet.net.au&gt;'></tt>
  <item>Bruce Walter <tt><htmlurl url='mailto:walter@fortean.com'
        name='&lt;walter@fortean.com&gt;'></tt>
  <item>Carey Jones <tt><htmlurl url='mailto:mcj@acquiesce.org'
        name='&lt;mcj@acquiesce.org&gt;'></tt>
  <item>Carl Fongheiser <tt><htmlurl url='mailto:cmf@netins.net'
        name='&lt;cmf@netins.net&gt;'></tt>
  <item>Carl Mascott <tt><htmlurl url='mailto:cmascott@world.std.com'
        name='&lt;cmascott@world.std.com&gt;'></tt>
  <item>Casper <tt><htmlurl url='mailto:casper@acc.am'
        name='&lt;casper@acc.am&gt;'></tt>
  <item>Castor Fu <tt><htmlurl url='mailto:castor@geocast.com'
        name='&lt;castor@geocast.com&gt;'></tt>
  <item>Cejka Rudolf <tt><htmlurl url='mailto:cejkar@dcse.fee.vutbr.cz'
        name='&lt;cejkar@dcse.fee.vutbr.cz&gt;'></tt>
  <item>Chain Lee <tt><htmlurl url='mailto:chain@110.net'
        name='&lt;chain@110.net&gt;'></tt>
  <item>Charles Hannum <tt><htmlurl url='mailto:mycroft@ai.mit.edu'
        name='&lt;mycroft@ai.mit.edu&gt;'></tt>
  <item>Charles Henrich <tt><htmlurl url='mailto:henrich@msu.edu'
        name='&lt;henrich@msu.edu&gt;'></tt>
  <item>Charles Mott <tt><htmlurl url='mailto:cmott@srv.net'
        name='&lt;cmott@srv.net&gt;'></tt>
  <item>Charles Owens <tt><htmlurl url='mailto:owensc@enc.edu'
        name='&lt;owensc@enc.edu&gt;'></tt>
  <item>Chet Ramey <tt><htmlurl url='mailto:chet@odin.INS.CWRU.Edu'
        name='&lt;chet@odin.INS.CWRU.Edu&gt;'></tt>
  <item>Chia-liang Kao <tt><htmlurl url='mailto:clkao@CirX.ORG'
        name='&lt;clkao@CirX.ORG&gt;'></tt>
  <item>Chiharu Shibata <tt><htmlurl url='mailto:chi@bd.mbn.or.jp'
        name='&lt;chi@bd.mbn.or.jp&gt;'></tt>
  <item>Chip Norkus <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Choi Jun Ho <tt><htmlurl url='mailto:junker@jazz.snu.ac.kr'
        name='&lt;junker@jazz.snu.ac.kr&gt;'></tt>
  <item>Chris Csanady <tt><htmlurl url='mailto:cc@tarsier.ca.sandia.gov'
        name='&lt;cc@tarsier.ca.sandia.gov&gt;'></tt>
  <item>Chris Dabrowski <tt><htmlurl url='mailto:chris@vader.org'
        name='&lt;chris@vader.org&gt;'></tt>
  <item>Chris Dillon <tt><htmlurl url='mailto:cdillon@wolves.k12.mo.us'
        name='&lt;cdillon@wolves.k12.mo.us&gt;'></tt>
  <item>Chris Piazza <tt><htmlurl url='mailto:cpiazza@home.net'
        name='&lt;cpiazza@home.net&gt;'></tt>
  <item>Chris Shenton <tt><htmlurl url='mailto:cshenton@angst.it.hq.nasa.gov'
        name='&lt;cshenton@angst.it.hq.nasa.gov&gt;'></tt>
  <item>Chris Stenton <tt><htmlurl url='mailto:jacs@gnome.co.uk'
        name='&lt;jacs@gnome.co.uk&gt;'></tt>
  <item>Chris Timmons <tt><htmlurl url='mailto:skynyrd@opus.cts.cwu.edu'
        name='&lt;skynyrd@opus.cts.cwu.edu&gt;'></tt>
  <item>Chris Torek <tt><htmlurl url='mailto:torek@ee.lbl.gov'
        name='&lt;torek@ee.lbl.gov&gt;'></tt>
  <item>Christian Gusenbauer <tt><htmlurl
        url='mailto:cg@fimp01.fim.uni-linz.ac.at'
        name='&lt;cg@fimp01.fim.uni-linz.ac.at&gt;'></tt>
  <item>Christian Haury <tt><htmlurl url='mailto:Christian.Haury@sagem.fr'
        name='&lt;Christian.Haury@sagem.fr&gt;'></tt>
  <item>Christian Weisgerber <tt><htmlurl url='mailto:naddy@bigeye.rhein-neckar.de'
        name='&lt;naddy@bigeye.rhein-neckar.de&gt;'></tt>
  <item>Christoph P. Kukulies <tt><htmlurl url='mailto:kuku@FreeBSD.org'
        name='&lt;kuku@FreeBSD.org&gt;'></tt>
  <item>Christoph Robitschko <tt><htmlurl url='mailto:chmr@edvz.tu-graz.ac.at'
        name='&lt;chmr@edvz.tu-graz.ac.at&gt;'></tt>
  <item>Christoph Weber-Fahr <tt><htmlurl url='mailto:wefa@callcenter.systemhaus.net'
        name='&lt;wefa@callcenter.systemhaus.net&gt;'></tt>
  <item>Christopher G. Demetriou <tt><htmlurl url='mailto:cgd@postgres.berkeley.edu'
        name='&lt;cgd@postgres.berkeley.edu&gt;'></tt>
  <item>Christopher T. Johnson <tt><htmlurl url='mailto:cjohnson@neunacht.netgsi.com'
        name='&lt;cjohnson@neunacht.netgsi.com&gt;'></tt>
  <item>Chrisy Luke <tt><htmlurl url='mailto:chrisy@flix.net'
        name='&lt;chrisy@flix.net&gt;'></tt>
  <item>Chuck Hein <tt><htmlurl url='mailto:chein@cisco.com'
        name='&lt;chein@cisco.com&gt;'></tt>
  <item>Clive Lin<tt><htmlurl url='mailto:clive@CiRX.ORG'
        name='&lt;clive@CiRX.ORG&gt;'></tt>
  <item>Colman Reilly <tt><htmlurl url='mailto:careilly@tcd.ie'
        name='&lt;careilly@tcd.ie&gt;'></tt>
  <item>Conrad Sabatier <tt><htmlurl url='mailto:conrads@neosoft.com'
        name='&lt;conrads@neosoft.com&gt;'></tt>
  <item>Coranth Gryphon <tt><htmlurl url='mailto:gryphon@healer.com'
        name='&lt;gryphon@healer.com&gt;'></tt>
  <item>Cornelis van der Laan <tt><htmlurl
        url='mailto:nils@guru.ims.uni-stuttgart.de'
        name='&lt;nils@guru.ims.uni-stuttgart.de&gt;'></tt>
  <item>Cove Schneider <tt><htmlurl url='mailto:cove@brazil.nbn.com'
        name='&lt;cove@brazil.nbn.com&gt;'></tt>
  <item>Craig Leres <tt><htmlurl url='mailto:leres@ee.lbl.gov'
        name='&lt;leres@ee.lbl.gov&gt;'></tt>
  <item>Craig Loomis <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Craig Metz <tt><htmlurl url='mailto:cmetz@inner.net'
        name='&lt;cmetz@inner.net&gt;'></tt>
  <item>Craig Spannring <tt><htmlurl url='mailto:cts@internetcds.com'
        name='&lt;cts@internetcds.com&gt;'></tt>
  <item>Craig Struble <tt><htmlurl url='mailto:cstruble@vt.edu'
        name='&lt;cstruble@vt.edu&gt;'></tt>
  <item>Cristian Ferretti <tt><htmlurl url='mailto:cfs@riemann.mat.puc.cl'
        name='&lt;cfs@riemann.mat.puc.cl&gt;'></tt>
  <item>Curt Mayer <tt><htmlurl url='mailto:curt@toad.com'
        name='&lt;curt@toad.com&gt;'></tt>
  <item>Cy Schubert <tt><htmlurl url='mailto:cschuber@uumail.gov.bc.ca'
        name='&lt;cschuber@uumail.gov.bc.ca&gt;'></tt>
  <item>DI. Christian Gusenbauer <tt><htmlurl url='mailto:cg@scotty.edvz.uni-linz.ac.at'
        name='&lt;cg@scotty.edvz.uni-linz.ac.at&gt;'></tt>
  <item>Dai Ishijima <tt><htmlurl url='mailto:ishijima@tri.pref.osaka.jp'
        name='&lt;ishijima@tri.pref.osaka.jp&gt;'></tt>
  <item>Damian Hamill <tt><htmlurl url='mailto:damian@cablenet.net'
        name='&lt;damian@cablenet.net&gt;'></tt>
  <item>Dan Cross <tt><htmlurl url='mailto:tenser@spitfire.ecsel.psu.edu'
        name='&lt;tenser@spitfire.ecsel.psu.edu&gt;'></tt>
  <item>Dan Lukes <tt><htmlurl url='mailto:dan@obluda.cz'
        name='&lt;dan@obluda.cz&gt;'></tt>
  <item>Dan Nelson <tt><htmlurl url='mailto:dnelson@emsphone.com'
        name='&lt;dnelson@emsphone.com&gt;'></tt>
  <item>Dan Walters <tt><htmlurl url='mailto:hannibal@cyberstation.net'
        name='&lt;hannibal@cyberstation.net&gt;'></tt>
  <item>Daniel Baker <tt><htmlurl url='mailto:dbaker@crash.ops.neosoft.com'
        name='&lt;dbaker@crash.ops.neosoft.com&gt;'></tt>
  <item>Daniel M. Eischen <tt><htmlurl
        url='mailto:deischen@iworks.InterWorks.org'
        name='&lt;deischen@iworks.InterWorks.org&gt;'></tt>
  <item>Daniel O'Connor <tt><htmlurl url='mailto:doconnor@gsoft.com.au'
        name='&lt;doconnor@gsoft.com.au&gt;'></tt>
  <item>Daniel Poirot <tt><htmlurl url='mailto:poirot@aio.jsc.nasa.gov'
        name='&lt;poirot@aio.jsc.nasa.gov&gt;'></tt>
  <item>Daniel Rock <tt><htmlurl url='mailto:rock@cs.uni-sb.de'
        name='&lt;rock@cs.uni-sb.de&gt;'></tt>
  <item>Danny Egen <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Danny J. Zerkel <tt><htmlurl url='mailto:dzerkel@phofarm.com'
        name='&lt;dzerkel@phofarm.com&gt;'></tt>
  <item>Darren Reed <tt><htmlurl url='mailto:avalon@coombs.anu.edu.au'
        name='&lt;avalon@coombs.anu.edu.au&gt;'></tt>
  <item>Dave Adkins <tt><htmlurl url='mailto:adkin003@tc.umn.edu'
        name='&lt;adkin003@tc.umn.edu&gt;'></tt>
  <item>Dave Andersen <tt><htmlurl url='mailto:angio@aros.net'
        name='&lt;angio@aros.net&gt;'></tt>
  <item>Dave Blizzard <tt><htmlurl url='mailto:dblizzar@sprynet.com'
        name='&lt;dblizzar@sprynet.com&gt;'></tt>
  <item>Dave Bodenstab <tt><htmlurl url='mailto:imdave@synet.net'
        name='&lt;imdave@synet.net&gt;'></tt>
  <item>Dave Burgess <tt><htmlurl url='mailto:burgess@hrd769.brooks.af.mil'
        name='&lt;burgess@hrd769.brooks.af.mil&gt;'></tt>
  <item>Dave Chapeskie <tt><htmlurl url='mailto:dchapes@ddm.on.ca'
        name='&lt;dchapes@ddm.on.ca&gt;'></tt>
  <item>Dave Cornejo <tt><htmlurl url='mailto:dave@dogwood.com'
        name='&lt;dave@dogwood.com&gt;'></tt>
  <item>Dave Edmondson <tt><htmlurl url='mailto:davided@sco.com'
        name='&lt;davided@sco.com&gt;'></tt>
  <item>Dave Glowacki <tt><htmlurl url='mailto:dglo@ssec.wisc.edu'
        name='&lt;dglo@ssec.wisc.edu&gt;'></tt>
  <item>Dave Marquardt <tt><htmlurl url='mailto:marquard@austin.ibm.com'
        name='&lt;marquard@austin.ibm.com&gt;'></tt>
  <item>Dave Tweten <tt><htmlurl url='mailto:tweten@FreeBSD.org'
        name='&lt;tweten@FreeBSD.org&gt;'></tt>
  <item>David A. Adkins <tt><htmlurl url='mailto:adkin003@tc.umn.edu'
        name='&lt;adkin003@tc.umn.edu&gt;'></tt>
  <item>David A. Bader <tt><htmlurl url='mailto:dbader@umiacs.umd.edu'
        name='&lt;dbader@umiacs.umd.edu&gt;'></tt>
  <item>David Borman <tt><htmlurl url='mailto:dab@bsdi.com'
        name='&lt;dab@bsdi.com&gt;'></tt>
  <item>David Dawes <tt><htmlurl url='mailto:dawes@XFree86.org'
        name='&lt;dawes@XFree86.org&gt;'></tt>
  <item>David Filo <tt><htmlurl url='mailto:filo@yahoo.com'
        name='&lt;filo@yahoo.com&gt;'></tt>
  <item>David Holland <tt><htmlurl url='mailto:dholland@eecs.harvard.edu'
        name='&lt;dholland@eecs.harvard.edu&gt;'></tt>
  <item>David Holloway <tt><htmlurl url='mailto:daveh@gwythaint.tamis.com'
        name='&lt;daveh@gwythaint.tamis.com&gt;'></tt>
  <item>David Horwitt <tt><htmlurl url='mailto:dhorwitt@ucsd.edu'
        name='&lt;dhorwitt@ucsd.edu&gt;'></tt>
  <item>David Hovemeyer <tt><htmlurl url='mailto:daveho@infocom.com'
        name='&lt;daveho@infocom.com&gt;'></tt>
  <item>David Jones <tt><htmlurl url='mailto:dej@qpoint.torfree.net'
        name='&lt;dej@qpoint.torfree.net&gt;'></tt>
  <item>David Kelly <tt><htmlurl url='mailto:dkelly@tomcat1.tbe.com'
        name='&lt;dkelly@tomcat1.tbe.com&gt;'></tt>
  <item>David Kulp <tt><htmlurl url='mailto:dkulp@neomorphic.com'
        name='&lt;dkulp@neomorphic.com&gt;'></tt>
  <item>David L. Nugent <tt><htmlurl url='mailto:davidn@blaze.net.au'
        name='&lt;davidn@blaze.net.au&gt;'></tt>
  <item>David Leonard <tt><htmlurl url='mailto:d@scry.dstc.edu.au'
        name='&lt;d@scry.dstc.edu.au&gt;'></tt>
  <item>David Malone <tt><htmlurl url='mailto:dwmalone@maths.tcd.ie'
        name='&lt;dwmalone@maths.tcd.ie&gt;'></tt>
  <item>David Muir Sharnoff <tt><htmlurl url='mailto:muir@idiom.com'
        name='&lt;muir@idiom.com&gt;'></tt>
  <item>David S. Miller <tt><htmlurl url='mailto:davem@jenolan.rutgers.edu'
        name='&lt;davem@jenolan.rutgers.edu&gt;'></tt>
  <item>David Wolfskill <tt><htmlurl url='mailto:dhw@whistle.com'
        name='&lt;dhw@whistle.com&gt;'></tt>
  <item>Dean Gaudet <tt><htmlurl url='mailto:dgaudet@arctic.org'
        name='&lt;dgaudet@arctic.org&gt;'></tt>
  <item>Dean Huxley <tt><htmlurl url='mailto:dean@fsa.ca'
        name='&lt;dean@fsa.ca&gt;'></tt>
  <item>Denis Fortin <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Dennis Glatting <tt><htmlurl url='mailto:dennis.glatting@software-munitions.com'
        name='&lt;dennis.glatting@software-munitions.com&gt;'></tt>
  <item>Denton Gentry <tt><htmlurl url='mailto:denny1@home.com'
        name='&lt;denny1@home.com&gt;'></tt>
  <item>Derek Inksetter <tt><htmlurl url='mailto:derek@saidev.com'
        name='&lt;derek@saidev.com&gt;'></tt>
  <item>Dima Sivachenko <tt><htmlurl url='mailto:dima@Chg.RU'
        name='&lt;dima@Chg.RU&gt;'></tt>
  <item>Dirk Keunecke <tt><htmlurl url='mailto:dk@panda.rhein-main.de'
        name='&lt;dk@panda.rhein-main.de&gt;'></tt>
  <item>Dirk Nehrling <tt><htmlurl url='mailto:nerle@pdv.de'
        name='&lt;nerle@pdv.de&gt;'></tt>
  <item>Dmitry Khrustalev <tt><htmlurl url='mailto:dima@xyzzy.machaon.ru'
        name='&lt;dima@xyzzy.machaon.ru&gt;'></tt>
  <item>Dmitry Kohmanyuk <tt><htmlurl url='mailto:dk@farm.org'
        name='&lt;dk@farm.org&gt;'></tt>
  <item>Dom Mitchell <tt><htmlurl url='mailto:dom@myrddin.demon.co.uk'
        name='&lt;dom@myrddin.demon.co.uk&gt;'></tt>
  <item>Don Croyle <tt><htmlurl url='mailto:croyle@gelemna.ft-wayne.in.us'
        name='&lt;croyle@gelemna.ft-wayne.in.us&gt;'></tt>
  <item>&a.whiteside;
  <item>Don Morrison <tt><htmlurl url='mailto:dmorrisn@u.washington.edu'
        name='&lt;dmorrisn@u.washington.edu&gt;'></tt>
  <item>Don Yuniskis <tt><htmlurl url='mailto:dgy@rtd.com'
        name='&lt;dgy@rtd.com&gt;'></tt>
  <item>Donald Maddox <tt><htmlurl url='mailto:dmaddox@conterra.com'
        name='&lt;dmaddox@conterra.com&gt;'></tt>
  <item>Doug Barton <tt><htmlurl url='mailto:studded@dal.net'
        name='&lt;studded@dal.net&gt;'></tt>
  <item>Douglas Ambrisko <tt><htmlurl url='mailto:ambrisko@whistle.com'
        name='&lt;ambrisko@whistle.com&gt;'></tt>
  <item>Douglas Carmichael <tt><htmlurl url='mailto:dcarmich@mcs.com'
        name='&lt;dcarmich@mcs.com&gt;'></tt>
  <item>Douglas Crosher <tt><htmlurl url='mailto:dtc@scrooge.ee.swin.oz.au'
        name='&lt;dtc@scrooge.ee.swin.oz.au&gt;'></tt>
  <item>Drew Derbyshire <tt><htmlurl url='mailto:ahd@kew.com'
        name='&lt;ahd@kew.com&gt;'></tt>
  <item>Duncan Barclay <tt><htmlurl url='mailto:dmlb@ragnet.demon.co.uk'
        name='&lt;dmlb@ragnet.demon.co.uk&gt;'></tt>
  <item>Dustin Sallings <tt><htmlurl url='mailto:dustin@spy.net'
        name='&lt;dustin@spy.net&gt;'></tt>
  <item>Eckart "Isegrim" Hofmann <tt><htmlurl
        url='mailto:Isegrim@Wunder-Nett.org'
        name='&lt;Isegrim@Wunder-Nett.org&gt;'></tt>
  <item>Ed Gold <tt><htmlurl url='mailto:vegold01@starbase.spd.louisville.edu'
        name='&lt;vegold01@starbase.spd.louisville.edu&gt;'></tt>
  <item>Ed Hudson <tt><htmlurl url='mailto:elh@p5.spnet.com'
        name='&lt;elh@p5.spnet.com&gt;'></tt>
  <item>Edward Wang <tt><htmlurl url='mailto:edward@edcom.com'
        name='&lt;edward@edcom.com&gt;'></tt>
  <item>Edwin Groothus <tt><htmlurl url='mailto:edwin@nwm.wan.philips.com'
        name='&lt;edwin@nwm.wan.philips.com&gt;'></tt>
  <item>Eiji-usagi-MATSUmoto <tt><htmlurl url='mailto:usagi@clave.gr.jp'
        name='&lt;usagi@clave.gr.jp&gt;'></tt>
  <item>ELISA Font Project
  <item>Elmar Bartel <tt><htmlurl url='mailto:bartel@informatik.tu-muenchen.de'
        name='&lt;bartel@informatik.tu-muenchen.de&gt;'></tt>
  <item>Eric A. Griff <tt><htmlurl url='mailto:eagriff@global2000.net'
        name='&lt;eagriff@global2000.net&gt;'></tt>
  <item>Eric Blood <tt><htmlurl url='mailto:eblood@cs.unr.edu'
        name='&lt;eblood@cs.unr.edu&gt;'></tt>
  <item>Eric J. Haug <tt><htmlurl url='mailto:ejh@slustl.slu.edu'
        name='&lt;ejh@slustl.slu.edu&gt;'></tt>
  <item>Eric J. Schwertfeger <tt><htmlurl url='mailto:eric@cybernut.com'
        name='&lt;eric@cybernut.com&gt;'></tt>
  <item>Eric L. Hernes <tt><htmlurl url='mailto:erich@lodgenet.com'
        name='&lt;erich@lodgenet.com&gt;'></tt>
  <item>Eric P. Scott <tt><htmlurl url='mailto:eps@sirius.com'
        name='&lt;eps@sirius.com&gt;'></tt>
  <item>Eric Sprinkle <tt><htmlurl url='mailto:eric@ennovatenetworks.com'
        name='&lt;eric@ennovatenetworks.com&gt;'></tt>
  <item>Erich Stefan Boleyn <tt><htmlurl url='mailto:erich@uruk.org'
        name='&lt;erich@uruk.org&gt;'></tt>
  <item>Erik E. Rantapaa <tt><htmlurl url='mailto:rantapaa@math.umn.edu'
        name='&lt;rantapaa@math.umn.edu&gt;'></tt>
  <item>Erik H. Moe <tt><htmlurl url='mailto:ehm@cris.com'
        name='&lt;ehm@cris.com&gt;'></tt>
  <item>Ernst Winter <tt><htmlurl url='mailto:ewinter@lobo.muc.de'
        name='&lt;ewinter@lobo.muc.de&gt;'></tt>
  <item>Eugene M. Kim <tt><htmlurl url='mailto:astralblue@usa.net'
        name='&lt;astralblue@usa.net&gt;'></tt>
  <item>Eugene Radchenko <tt><htmlurl url='mailto:genie@qsar.chem.msu.su'
        name='&lt;genie@qsar.chem.msu.su&gt;'></tt>
  <item>Evan Champion <tt><htmlurl url='mailto:evanc@synapse.net'
        name='&lt;evanc@synapse.net&gt;'></tt>
  <item>Faried Nawaz <tt><htmlurl url='mailto:fn@Hungry.COM'
        name='&lt;fn@Hungry.COM&gt;'></tt>
  <item>Flemming Jacobsen <tt><htmlurl url='mailto:fj@tfs.com'
        name='&lt;fj@tfs.com&gt;'></tt>
  <item>Fong-Ching Liaw <tt><htmlurl url='mailto:fong@juniper.net'
        name='&lt;fong@juniper.net&gt;'></tt>
  <item>Francis M J Hsieh <tt><htmlurl url='mailto:mjshieh@life.nthu.edu.tw'
        name='&lt;mjshieh@life.nthu.edu.tw&gt;'></tt>
  <item>Frank Bartels <tt><htmlurl url='mailto:knarf@camelot.de'
        name='&lt;knarf@camelot.de&gt;'></tt>
  <item>Frank Chen Hsiung Chan <tt><htmlurl url='mailto:frankch@waru.life.nthu.edu.tw'
        name='&lt;frankch@waru.life.nthu.edu.tw&gt;'></tt>
  <item>Frank Durda IV <tt><htmlurl url='mailto:uhclem@nemesis.lonestar.org'
        name='&lt;uhclem@nemesis.lonestar.org&gt;'></tt>
  <item>Frank MacLachlan <tt><htmlurl url='mailto:fpm@n2.net'
        name='&lt;fpm@n2.net&gt;'></tt>
  <item>Frank Nobis <tt><htmlurl url='mailto:fn@Radio-do.de'
        name='&lt;fn@Radio-do.de&gt;'></tt>
  <item>Frank Volf <tt><htmlurl url='mailto:volf@oasis.IAEhv.nl'
        name='&lt;volf@oasis.IAEhv.nl&gt;'></tt>
  <item>Frank ten Wolde <tt><htmlurl url='mailto:franky@pinewood.nl'
        name='&lt;franky@pinewood.nl&gt;'></tt>
  <item>Frank van der Linden <tt><htmlurl url='mailto:frank@fwi.uva.nl'
        name='&lt;frank@fwi.uva.nl&gt;'></tt>
  <item>Fred Cawthorne <tt><htmlurl url='mailto:fcawth@jjarray.umn.edu'
        name='&lt;fcawth@jjarray.umn.edu&gt;'></tt>
  <item>Fred Gilham <tt><htmlurl url='mailto:gilham@csl.sri.com'
        name='&lt;gilham@csl.sri.com&gt;'></tt>
  <item>Fred Templin <tt><htmlurl url='mailto:templin@erg.sri.com'
        name='&lt;templin@erg.sri.com&gt;'></tt>
  <item>Frederick Earl Gray <tt><htmlurl url='mailto:fgray@rice.edu'
        name='&lt;fgray@rice.edu&gt;'></tt>
  <item>FUJIMOTO Kensaku <tt><htmlurl
        url='mailto:fujimoto@oscar.elec.waseda.ac.jp'
        name='&lt;fujimoto@oscar.elec.waseda.ac.jp&gt;'></tt>
  <item>FUJISHIMA Satsuki <tt><htmlurl url='mailto:k5@respo.or.jp'
        name='&lt;k5@respo.or.jp&gt;'></tt>
  <item>FURUSAWA Kazuhisa <tt><htmlurl
        url='mailto:furusawa@com.cs.osakafu-u.ac.jp'
        name='&lt;furusawa@com.cs.osakafu-u.ac.jp&gt;'></tt>
  <item>Gabor Kincses <tt><htmlurl url='mailto:gabor@acm.org'
        name='&lt;gabor@acm.org&gt;'></tt>
  <item>Gabor Zahemszky <tt><htmlurl url='mailto:zgabor@CoDe.hu'
        name='&lt;zgabor@CoDe.hu&gt;'></tt>
  <item>Garance A Drosehn <tt><htmlurl url='mailto:gad@eclipse.its.rpi.edu'
        name='&lt;gad@eclipse.its.rpi.edu&gt;'></tt>
  <item>Gareth McCaughan <tt><htmlurl url='mailto:gjm11@dpmms.cam.ac.uk'
        name='&lt;gjm11@dpmms.cam.ac.uk&gt;'></tt>
  <item>Gary A. Browning <tt><htmlurl url='mailto:gab10@griffcd.amdahl.com'
        name='&lt;gab10@griffcd.amdahl.com&gt;'></tt>
  <item>Gary Howland <tt><htmlurl url='mailto:gary@hotlava.com'
        name='&lt;gary@hotlava.com&gt;'></tt>
  <item>Gary J. <tt><htmlurl url='mailto:garyj@rks32.pcs.dec.com'
        name='&lt;garyj@rks32.pcs.dec.com&gt;'></tt>
  <item>Gary Kline <tt><htmlurl url='mailto:kline@thought.org'
        name='&lt;kline@thought.org&gt;'></tt>
  <item>Gaspar Chilingarov <tt><htmlurl url='mailto:nightmar@lemming.acc.am'
        name='&lt;nightmar@lemming.acc.am&gt;'></tt>
  <item>Gea-Suan Lin <tt><htmlurl url='mailto:gsl@tpts4.seed.net.tw'
        name='&lt;gsl@tpts4.seed.net.tw&gt;'></tt>
  <item>Geoff Rehmet <tt><htmlurl url='mailto:csgr@alpha.ru.ac.za'
        name='&lt;csgr@alpha.ru.ac.za&gt;'></tt>
  <item>Georg Wagner <tt><htmlurl url='mailto:georg.wagner@ubs.com'
        name='&lt;georg.wagner@ubs.com&gt;'></tt>
  <item>Gerard Roudier <tt><htmlurl url='mailto:groudier@club-internet.fr'
        name='&lt;groudier@club-internet.fr&gt;'></tt>
  <item>Gianmarco Giovannelli <tt><htmlurl url='mailto:gmarco@giovannelli.it'
        name='&lt;gmarco@giovannelli.it&gt;'></tt>
  <item>Gil Kloepfer Jr. <tt><htmlurl url='mailto:gil@limbic.ssdl.com'
        name='&lt;gil@limbic.ssdl.com&gt;'></tt>
  <item>Gilad Rom <tt><htmlurl url='mailto:rom_glsa@ein-hashofet.co.il'
        name='&lt;rom_glsa@ein-hashofet.co.il&gt;'></tt>
  <item>Ginga Kawaguti <tt><htmlurl
        url='mailto:ginga@amalthea.phys.s.u-tokyo.ac.jp'
        name='&lt;ginga@amalthea.phys.s.u-tokyo.ac.jp&gt;'></tt>
  <item>Giles Lean <tt><htmlurl url='mailto:giles@nemeton.com.au'
        name='&lt;giles@nemeton.com.au&gt;'></tt>
  <item>Glen Foster <tt><htmlurl url='mailto:gfoster@gfoster.com'
        name='&lt;gfoster@gfoster.com&gt;'></tt>
  <item>Glenn Johnson <tt><htmlurl url='mailto:gljohns@bellsouth.net'
        name='&lt;gljohns@bellsouth.net&gt;'></tt>
  <item>Godmar Back <tt><htmlurl url='mailto:gback@facility.cs.utah.edu'
        name='&lt;gback@facility.cs.utah.edu&gt;'></tt>
  <item>Goran Hammarback <tt><htmlurl url='mailto:goran@astro.uu.se'
        name='&lt;goran@astro.uu.se&gt;'></tt>
  <item>Gord Matzigkeit <tt><htmlurl url='mailto:gord@enci.ucalgary.ca'
        name='&lt;gord@enci.ucalgary.ca&gt;'></tt>
  <item>Graham Wheeler <tt><htmlurl url='mailto:gram@cdsec.com'
        name='&lt;gram@cdsec.com&gt;'></tt>
  <item>Greg A. Woods <tt><htmlurl url='mailto:woods@zeus.leitch.com'
        name='&lt;woods@zeus.leitch.com&gt;'></tt>
  <item>Greg Ansley <tt><htmlurl url='mailto:gja@ansley.com'
        name='&lt;gja@ansley.com&gt;'></tt>
  <item>Greg Troxel <tt><htmlurl url='mailto:gdt@ir.bbn.com'
        name='&lt;gdt@ir.bbn.com&gt;'></tt>
  <item>Greg Ungerer <tt><htmlurl url='mailto:gerg@stallion.oz.au'
        name='&lt;gerg@stallion.oz.au&gt;'></tt>
  <item>Gregory Bond <tt><htmlurl url='mailto:gnb@itga.com.au'
        name='&lt;gnb@itga.com.au&gt;'></tt>
  <item>Gregory D. Moncreaff <tt><htmlurl url='mailto:moncrg@bt340707.res.ray.com'
        name='&lt;moncrg@bt340707.res.ray.com&gt;'></tt>
  <item>Guy Harris <tt><htmlurl url='mailto:guy@netapp.com'
        name='&lt;guy@netapp.com&gt;'></tt>
  <item>Guy Helmer <tt><htmlurl url='mailto:ghelmer@cs.iastate.edu'
        name='&lt;ghelmer@cs.iastate.edu&gt;'></tt>
  <item>HAMADA Naoki <tt><htmlurl url='mailto:hamada@astec.co.jp'
        name='&lt;hamada@astec.co.jp&gt;'></tt>
  <item>HONDA Yasuhiro <tt><htmlurl url='mailto:honda@kashio.info.mie-u.ac.jp'
        name='&lt;honda@kashio.info.mie-u.ac.jp&gt;'></tt>
  <item>HOSOBUCHI Noriyuki <tt><htmlurl url='mailto:hoso@buchi.tama.or.jp'
        name='&lt;hoso@buchi.tama.or.jp&gt;'></tt>
  <item>Hannu Savolainen <tt><htmlurl url='mailto:hannu@voxware.pp.fi'
        name='&lt;hannu@voxware.pp.fi&gt;'></tt>
  <item>Hans Huebner <tt><htmlurl url='mailto:hans@artcom.de'
        name='&lt;hans@artcom.de&gt;'></tt>
  <item>Hans Petter Bieker <tt><htmlurl url='mailto:zerium@webindex.no'
        name='&lt;zerium@webindex.no&gt;'></tt>
  <item>Hans Zuidam <tt><htmlurl url='mailto:hans@brandinnovators.com'
        name='&lt;hans@brandinnovators.com&gt;'></tt>
  <item>Harlan Stenn <tt><htmlurl url='mailto:Harlan.Stenn@pfcs.com'
        name='&lt;Harlan.Stenn@pfcs.com&gt;'></tt>
  <item>Harold Barker <tt><htmlurl url='mailto:hbarker@dsms.com'
        name='&lt;hbarker@dsms.com&gt;'></tt>
  <item>Havard Eidnes <tt><htmlurl url='mailto:Havard.Eidnes@runit.sintef.no'
        name='&lt;Havard.Eidnes@runit.sintef.no&gt;'></tt>
  <item>Heikki Suonsivu <tt><htmlurl url='mailto:hsu@cs.hut.fi'
        name='&lt;hsu@cs.hut.fi&gt;'></tt>
  <item>Heiko W. Rupp <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Helmut F. Wirth <tt><htmlurl url='mailto:hfwirth@ping.at'
        name='&lt;hfwirth@ping.at&gt;'></tt>
  <item>Henrik Vestergaard Draboel <tt><htmlurl url='mailto:hvd@terry.ping.dk'
        name='&lt;hvd@terry.ping.dk&gt;'></tt>
  <item>Herb Peyerl <tt><htmlurl url='mailto:hpeyerl@NetBSD.org'
        name='&lt;hpeyerl@NetBSD.org&gt;'></tt>
  <item>Hideaki Ohmon <tt><htmlurl url='mailto:ohmon@tom.sfc.keio.ac.jp'
        name='&lt;ohmon@tom.sfc.keio.ac.jp&gt;'></tt>
  <item>Hidekazu Kuroki <tt><htmlurl url='mailto:hidekazu@cs.titech.ac.jp'
        name='&lt;hidekazu@cs.titech.ac.jp&gt;'></tt>
  <item>Hideki Yamamoto <tt><htmlurl url='mailto:hyama@acm.org'
        name='&lt;hyama@acm.org&gt;'></tt>
  <item>Hidetoshi Shimokawa <tt><htmlurl url='mailto:simokawa@sat.t.u-tokyo.ac.jp'
        name='&lt;simokawa@sat.t.u-tokyo.ac.jp&gt;'></tt>
  <item>Hideyuki Suzuki <tt><htmlurl url='mailto:hideyuki@sat.t.u-tokyo.ac.jp'
        name='&lt;hideyuki@sat.t.u-tokyo.ac.jp&gt;'></tt>
  <item>Hirayama Issei <tt><htmlurl url='mailto:iss@mail.wbs.ne.jp'
        name='&lt;iss@mail.wbs.ne.jp&gt;'></tt>
  <item>Hiroaki Sakai <tt><htmlurl url='mailto:sakai@miya.ee.kagu.sut.ac.jp'
        name='&lt;sakai@miya.ee.kagu.sut.ac.jp&gt;'></tt>
  <item>Hiroharu Tamaru <tt><htmlurl url='mailto:tamaru@ap.t.u-tokyo.ac.jp'
        name='&lt;tamaru@ap.t.u-tokyo.ac.jp&gt;'></tt>
  <item>Hironori Ikura <tt><htmlurl url='mailto:hikura@kaisei.org'
        name='&lt;hikura@kaisei.org&gt;'></tt>
  <item>Hiroshi Nishikawa <tt><htmlurl url='mailto:nis@pluto.dti.ne.jp'
        name='&lt;nis@pluto.dti.ne.jp&gt;'></tt>
  <item>Hiroya Tsubakimoto <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Hiroyuki NAKAJI <tt><htmlurl url='mailto:nakaji@zeisei3.dpri.kyoto-u.ac.jp'
        name='&lt;nakaji@zeisei3.dpri.kyoto-u.ac.jp&gt;'></tt>
  <item>Holger Veit <tt><htmlurl url='mailto:Holger.Veit@gmd.de'
        name='&lt;Holger.Veit@gmd.de&gt;'></tt>
  <item>Holm Tiffe <tt><htmlurl url='mailto:holm@geophysik.tu-freiberg.de'
        name='&lt;holm@geophysik.tu-freiberg.de&gt;'></tt>
  <item>Horance Chou <tt><htmlurl url='mailto:horance@freedom.ie.cycu.edu.tw'
        name='&lt;horance@freedom.ie.cycu.edu.tw&gt;'></tt>
  <item>Horihiro Kumagaio <tt><htmlurl url='mailto:kuma@jp.freebsd.org'
        name='&lt;kuma@jp.freebsd.org&gt;'></tt>
  <item>Horikawa Kazuo <tt><htmlurl url='mailto:k-horik@mail.yk.rim.or.jp'
        name='&lt;k-horik@mail.yk.rim.or.jp&gt;'></tt>
  <item>Hr.Ladavac <tt><htmlurl url='mailto:lada@ws2301.gud.siemens.co.at'
        name='&lt;lada@ws2301.gud.siemens.co.at&gt;'></tt>
  <item>Hubert Feyrer <tt><htmlurl url='mailto:hubertf@NetBSD.ORG'
        name='&lt;hubertf@NetBSD.ORG&gt;'></tt>
  <item>Hugh F. Mahon <tt><htmlurl url='mailto:hugh@nsmdserv.cnd.hp.com'
        name='&lt;hugh@nsmdserv.cnd.hp.com&gt;'></tt>
  <item>Hugh Mahon <tt><htmlurl url='mailto:h_mahon@fc.hp.com'
        name='&lt;h_mahon@fc.hp.com&gt;'></tt>
  <item>Hung-Chi Chu <tt><htmlurl url='mailto:hcchu@r350.ee.ntu.edu.tw'
        name='&lt;hcchu@r350.ee.ntu.edu.tw&gt;'></tt>
  <item>IMAI Takeshi <tt><htmlurl url='mailto:take-i@ceres.dti.ne.jp'
        name='&lt;take-i@ceres.dti.ne.jp&gt;'></tt>
  <item>IMAMURA Tomoaki <tt><htmlurl url='mailto:tomoak-i@is.aist-nara.ac.jp'
        name='&lt;tomoak-i@is.aist-nara.ac.jp&gt;'></tt>
  <item>Ian Dowse <tt><htmlurl url='mailto:iedowse@maths.tcd.ie'
        name='&lt;iedowse@maths.tcd.ie&gt;'></tt>
  <item>Ian Holland <tt><htmlurl url='mailto:ianh@tortuga.com.au'
        name='&lt;ianh@tortuga.com.au&gt;'></tt>
  <item>Ian Struble <tt><htmlurl url='mailto:ian@broken.net'
        name='&lt;ian@broken.net&gt;'></tt>
  <item>Ian Vaudrey <tt><htmlurl url='mailto:i.vaudrey@bigfoot.com'
        name='&lt;i.vaudrey@bigfoot.com&gt;'></tt>
  <item>Igor Khasilev <tt><htmlurl url='mailto:igor@jabber.paco.odessa.ua'
        name='&lt;igor@jabber.paco.odessa.ua&gt;'></tt>
  <item>Igor Roshchin <tt><htmlurl url='mailto:str@giganda.komkon.org'
        name='&lt;str@giganda.komkon.org&gt;'></tt>
  <item>Igor Sviridov <tt><htmlurl url='mailto:siac@ua.net'
        name='&lt;siac@ua.net&gt;'></tt>
  <item>Igor Vinokurov <tt><htmlurl url='mailto:igor@zynaps.ru'
        name='&lt;igor@zynaps.ru&gt;'></tt>
  <item>Ikuo Nakagawa <tt><htmlurl url='mailto:ikuo@isl.intec.co.jp'
        name='&lt;ikuo@isl.intec.co.jp&gt;'></tt>
  <item>Ilya V. Komarov <tt><htmlurl url='mailto:mur@lynx.ru'
        name='&lt;mur@lynx.ru&gt;'></tt>
  <item>Issei Suzuki <tt><htmlurl url='mailto:issei@jp.FreeBSD.org'
        name='&lt;issei@jp.FreeBSD.org&gt;'></tt>
  <item>Itsuro Saito <tt><htmlurl url='mailto:saito@miv.t.u-tokyo.ac.jp'
        name='&lt;saito@miv.t.u-tokyo.ac.jp&gt;'></tt>
  <item>J. Bryant <tt><htmlurl url='mailto:jbryant@argus.flash.net'
        name='&lt;jbryant@argus.flash.net&gt;'></tt>
  <item>J. David Lowe <tt><htmlurl url='mailto:lowe@saturn5.com'
        name='&lt;lowe@saturn5.com&gt;'></tt>
  <item>J. Han <tt><htmlurl url='mailto:hjh@best.com'
        name='&lt;hjh@best.com&gt;'></tt>
  <item>J. Hawk <tt><htmlurl url='mailto:jhawk@MIT.EDU'
        name='&lt;jhawk@MIT.EDU&gt;'></tt>
  <item>J.T. Conklin <tt><htmlurl url='mailto:jtc@cygnus.com'
        name='&lt;jtc@cygnus.com&gt;'></tt>
  <item>J.T. Jang <tt><htmlurl url='mailto:keith@email.gcn.net.tw'
        name='&lt;keith@email.gcn.net.tw&gt;'></tt>
  <item>Jack <tt><htmlurl url='mailto:jack@zeus.xtalwind.net'
        name='&lt;jack@zeus.xtalwind.net&gt;'></tt>
  <item>Jacob Bohn Lorensen <tt><htmlurl url='mailto:jacob@jblhome.ping.mk'
        name='&lt;jacob@jblhome.ping.mk&gt;'></tt>
  <item>Jagane D Sundar <tt><htmlurl url='mailto:jagane@netcom.com'
        name='&lt;jagane@netcom.com&gt;'></tt>
  <item>Jake Hamby <tt><htmlurl url='mailto:jehamby@lightside.com'
        name='&lt;jehamby@lightside.com&gt;'></tt>
  <item>James Clark <tt><htmlurl url='mailto:jjc@jclark.com'
        name='&lt;jjc@jclark.com&gt;'></tt>
  <item>James D. Stewart <tt><htmlurl url='mailto:jds@c4systm.com'
        name='&lt;jds@c4systm.com&gt;'></tt>
  <item>James Jegers <tt><htmlurl url='mailto:jimj@miller.cs.uwm.edu'
        name='&lt;jimj@miller.cs.uwm.edu&gt;'></tt>
  <item>James Raynard <tt><htmlurl url='mailto:fhackers@jraynard.demon.co.uk'
        name='&lt;fhackers@jraynard.demon.co.uk&gt;'></tt>
  <item>James T. Liu <tt><htmlurl url='mailto:jtliu@phlebas.rockefeller.edu'
        name='&lt;jtliu@phlebas.rockefeller.edu&gt;'></tt>
  <item>James da Silva <tt><htmlurl url='mailto:jds@cs.umd.edu'
        name='&lt;jds@cs.umd.edu&gt;'></tt> et al
  <item>Jan Conard <tt><htmlurl url='mailto:charly@fachschaften.tu-muenchen.de'
        name='&lt;charly@fachschaften.tu-muenchen.de&gt;'></tt>
  <item>Jan Koum <tt><htmlurl url='mailto:jkb@FreeBSD.org'
        name='&lt;jkb@FreeBSD.org&gt;'></tt>
  <item>Janick Taillandier <tt><htmlurl url='mailto:Janick.Taillandier@ratp.fr'
        name='&lt;Janick.Taillandier@ratp.fr&gt;'></tt>
  <item>Janusz Kokot <tt><htmlurl url='mailto:janek@gaja.ipan.lublin.pl'
        name='&lt;janek@gaja.ipan.lublin.pl&gt;'></tt>
  <item>Jarle Greipsland <tt><htmlurl url='mailto:jarle@idt.unit.no'
        name='&lt;jarle@idt.unit.no&gt;'></tt>
  <item>Jason Garman <tt><htmlurl url='mailto:init@risen.org'
        name='&lt;init@risen.org&gt;'></tt>
  <item>Jason Thorpe <tt><htmlurl url='mailto:thorpej@NetBSD.org'
        name='&lt;thorpej@NetBSD.org&gt;'></tt>
  <item>Jason Wright <tt><htmlurl url='mailto:jason@OpenBSD.org'
        name='&lt;jason@OpenBSD.org&gt;'></tt>
  <item>Jason Young <tt><htmlurl url='mailto:doogie@forbidden-donut.anet-stl.com'
        name='&lt;doogie@forbidden-donut.anet-stl.com&gt;'></tt>
  <item>Javier Martin Rueda <tt><htmlurl url='mailto:jmrueda@diatel.upm.es'
        name='&lt;jmrueda@diatel.upm.es&gt;'></tt>
  <item>Jay Fenlason <tt><htmlurl url='mailto:hack@datacube.com'
        name='&lt;hack@datacube.com&gt;'></tt>
  <item>Jaye Mathisen <tt><htmlurl url='mailto:mrcpu@cdsnet.net'
        name='&lt;mrcpu@cdsnet.net&gt;'></tt>
  <item>Jeff Bartig <tt><htmlurl url='mailto:jeffb@doit.wisc.edu'
        name='&lt;jeffb@doit.wisc.edu&gt;'></tt>
  <item>Jeff Forys <tt><htmlurl url='mailto:jeff@forys.cranbury.nj.us'
        name='&lt;jeff@forys.cranbury.nj.us&gt;'></tt>
  <item>Jeff Kletsky <tt><htmlurl url='mailto:Jeff@Wagsky.com'
        name='&lt;Jeff@Wagsky.com&gt;'></tt>
  <item>Jeffrey Evans <tt><htmlurl url='mailto:evans@scnc.k12.mi.us'
        name='&lt;evans@scnc.k12.mi.us&gt;'></tt>
  <item>Jeffrey Wheat <tt><htmlurl url='mailto:jeff@cetlink.net'
        name='&lt;jeff@cetlink.net&gt;'></tt>
  <item>Jens Schweikhardt <tt><htmlurl url='mailto:schweikh@ito.uni-stuttgart.de'
        name='&lt;schweikh@ito.uni-stuttgart.de&gt;'></tt>
  <item>Jeremy Allison <tt><htmlurl url='mailto:jallison@whistle.com'
        name='&lt;jallison@whistle.com&gt;'></tt>
  <item>Jeremy Chatfield <tt><htmlurl url='mailto:jdc@xinside.com'
        name='&lt;jdc@xinside.com&gt;'></tt>
  <item>Jeremy Lea <tt><htmlurl url='mailto:reg@shale.csir.co.za'
        name='&lt;reg@shale.csir.co.za&gt;'></tt>
  <item>Jeremy Prior <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Jeroen Ruigrok/Asmodai <tt><htmlurl url='mailto:asmodai@wxs.nl'
        name='&lt;asmodai@wxs.nl&gt;'></tt>
  <item>Jesse Rosenstock <tt><htmlurl url='mailto:jmr@ugcs.caltech.edu'
        name='&lt;jmr@ugcs.caltech.edu&gt;'></tt>
  <item>Jian-Da Li <tt><htmlurl url='mailto:jdli@csie.nctu.edu.tw'
        name='&lt;jdli@csie.nctu.edu.tw&gt;'></tt>
  <item>Jim Babb <tt><htmlurl url='mailto:babb@FreeBSD.org'
        name='&lt;babb@FreeBSD.org&gt;'></tt>
  <item>Jim Binkley <tt><htmlurl url='mailto:jrb@cs.pdx.edu'
        name='&lt;jrb@cs.pdx.edu&gt;'></tt>
  <item>Jim Carroll <tt><htmlurl url='mailto:jim@carroll.com'
        name='&lt;jim@carroll.com&gt;'></tt>
  <item>Jim Flowers <tt><htmlurl url='mailto:jflowers@ezo.net'
        name='&lt;jflowers@ezo.net&gt;'></tt>
  <item>Jim Leppek <tt><htmlurl url='mailto:jleppek@harris.com'
        name='&lt;jleppek@harris.com&gt;'></tt>
  <item>Jim Lowe <tt><htmlurl url='mailto:james@cs.uwm.edu'
        name='&lt;james@cs.uwm.edu&gt;'></tt>
  <item>Jim Mattson <tt><htmlurl url='mailto:jmattson@sonic.net'
        name='&lt;jmattson@sonic.net&gt;'></tt>
  <item>Jim Mercer <tt><htmlurl url='mailto:jim@komodo.reptiles.org'
        name='&lt;jim@komodo.reptiles.org&gt;'></tt>
  <item>Jim Mock <tt><htmlurl url='mailto:jim@phrantic.phear.net'
        name='&lt;jim@phrantic.phear.net&gt;'></tt>
  <item>Jim Wilson <tt><htmlurl url='mailto:wilson@moria.cygnus.com'
        name='&lt;wilson@moria.cygnus.com&gt;'></tt>
  <item>Jimbo Bahooli <tt><htmlurl url='mailto:griffin@blackhole.iceworld.org'
        name='&lt;griffin@blackhole.iceworld.org&gt;'></tt>
  <item>Jin Guojun <tt><htmlurl url='mailto:jin@george.lbl.gov'
        name='&lt;jin@george.lbl.gov&gt;'></tt>
  <item>Joachim Kuebart <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Joao Carlos Mendes Luis <tt><htmlurl url='mailto:jonny@jonny.eng.br'
        name='&lt;jonny@jonny.eng.br&gt;'></tt>
  <item>Jochen Pohl <tt><htmlurl url='mailto:jpo.drs@sni.de'
        name='&lt;jpo.drs@sni.de&gt;'></tt>
  <item>Joe "Marcus" Clarke <tt><htmlurl url='mailto:marcus@miami.edu'
        name='&lt;marcus@miami.edu&gt;'></tt>
  <item>Joe Abley <tt><htmlurl url='mailto:jabley@clear.co.nz'
        name='&lt;jabley@clear.co.nz&gt;'></tt>
  <item>Joe Jih-Shian Lu <tt><htmlurl url='mailto:jslu@dns.ntu.edu.tw'
        name='&lt;jslu@dns.ntu.edu.tw&gt;'></tt>
  <item>Joe Orthoefer <tt><htmlurl url='mailto:j_orthoefer@tia.net'
        name='&lt;j_orthoefer@tia.net&gt;'></tt>
  <item>Joe Traister <tt><htmlurl url='mailto:traister@mojozone.org'
        name='&lt;traister@mojozone.org&gt;'></tt>
  <item>Joel Faedi <tt><htmlurl url='mailto:Joel.Faedi@esial.u-nancy.fr'
        name='&lt;Joel.Faedi@esial.u-nancy.fr&gt;'></tt>
  <item>Joel Ray Holveck <tt><htmlurl url='mailto:joelh@gnu.org'
        name='&lt;joelh@gnu.org&gt;'></tt>
  <item>Joel Sutton <tt><htmlurl url='mailto:sutton@aardvark.apana.org.au'
        name='&lt;sutton@aardvark.apana.org.au&gt;'></tt>
  <item>Johan Granlund <tt><htmlurl url='mailto:johan@granlund.nu'
        name='&lt;johan@granlund.nu&gt;'></tt>
  <item>Johan Karlsson <tt><htmlurl url='mailto:k@numeri.campus.luth.se'
        name='&lt;k@numeri.campus.luth.se&gt;'></tt>
  <item>Johan Larsson <tt><htmlurl url='mailto:johan@moon.campus.luth.se'
        name='&lt;johan@moon.campus.luth.se&gt;'></tt>
  <item>Johann Tonsing <tt><htmlurl url='mailto:jtonsing@mikom.csir.co.za'
        name='&lt;jtonsing@mikom.csir.co.za&gt;'></tt>
  <item>Johannes Helander <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Johannes Stille <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>John Baldwin <tt><htmlurl url='mailto:jobaldwi@vt.edu'
        name='&lt;jobaldwi@vt.edu&gt;'></tt>
  <item>John Beckett <tt><htmlurl url='mailto:jbeckett@southern.edu'
        name='&lt;jbeckett@southern.edu&gt;'></tt>
  <item>John Beukema <tt><htmlurl url='mailto:jbeukema@hk.super.net'
        name='&lt;jbeukema@hk.super.net&gt;'></tt>
  <item>John Brezak <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>John Capo <tt><htmlurl url='mailto:jc@irbs.com'
        name='&lt;jc@irbs.com&gt;'></tt>
  <item>John F. Woods <tt><htmlurl url='mailto:jfw@jfwhome.funhouse.com'
        name='&lt;jfw@jfwhome.funhouse.com&gt;'></tt>
  <item>John Goerzen <tt><htmlurl url='mailto:jgoerzen@alexanderwohl.complete.org'
        name='&lt;jgoerzen@alexanderwohl.complete.org&gt;'></tt>
  <item>John Hay <tt><htmlurl url='mailto:jhay@mikom.csir.co.za'
        name='&lt;jhay@mikom.csir.co.za&gt;'></tt>
  <item>John Heidemann <tt><htmlurl url='mailto:johnh@isi.edu'
        name='&lt;johnh@isi.edu&gt;'></tt>
  <item>John Hood <tt><htmlurl url='mailto:cgull@owl.org'
        name='&lt;cgull@owl.org&gt;'></tt>
  <item>John Kohl <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>John Lind <tt><htmlurl url='mailto:john@starfire.mn.org'
        name='&lt;john@starfire.mn.org&gt;'></tt>
  <item>John Mackin <tt><htmlurl url='mailto:john@physiol.su.oz.au'
        name='&lt;john@physiol.su.oz.au&gt;'></tt>
  <item>John P <tt><htmlurl url='mailto:johnp@lodgenet.com'
        name='&lt;johnp@lodgenet.com&gt;'></tt>
  <item>John Perry <tt><htmlurl url='mailto:perry@vishnu.alias.net'
        name='&lt;perry@vishnu.alias.net&gt;'></tt>
  <item>John Preisler <tt><htmlurl url='mailto:john@vapornet.com'
        name='&lt;john@vapornet.com&gt;'></tt>
  <item>John Rochester <tt><htmlurl url='mailto:jr@cs.mun.ca'
        name='&lt;jr@cs.mun.ca&gt;'></tt>
  <item>John Sadler <tt><htmlurl url='mailto:john_sadler@alum.mit.edu'
        name='&lt;john_sadler@alum.mit.edu&gt;'></tt>
  <item>John Saunders <tt><htmlurl url='mailto:john@pacer.nlc.net.au'
        name='&lt;john@pacer.nlc.net.au&gt;'></tt>
  <item>John W. DeBoskey <tt><htmlurl url='mailto:jwd@unx.sas.com'
        name='&lt;jwd@unx.sas.com&gt;'></tt>
  <item>John Wehle <tt><htmlurl url='mailto:john@feith.com'
        name='&lt;john@feith.com&gt;'></tt>
  <item>John Woods <tt><htmlurl url='mailto:jfw@eddie.mit.edu'
        name='&lt;jfw@eddie.mit.edu&gt;'></tt>
  <item>Jon Morgan <tt><htmlurl url='mailto:morgan@terminus.trailblazer.com'
        name='&lt;morgan@terminus.trailblazer.com&gt;'></tt>
  <item>Jonathan H N Chin <tt><htmlurl url='mailto:jc254@newton.cam.ac.uk'
        name='&lt;jc254@newton.cam.ac.uk&gt;'></tt>
  <item>Jonathan Hanna <tt><htmlurl url='mailto:jh@pc-21490.bc.rogers.wave.ca'
        name='&lt;jh@pc-214909.bc.rogers.wave.ca&gt;'></tt>
  <item>Jorge Goncalves <tt><htmlurl url='mailto:j@bug.fe.up.pt'
        name='&lt;j@bug.fe.up.pt&gt;'></tt>
  <item>Jorge M. Goncalves <tt><htmlurl url='mailto:ee96199@tom.fe.up.pt'
        name='&lt;ee96199@tom.fe.up.pt&gt;'></tt>
  <item>Jos Backus <tt><htmlurl url='mailto:jbackus@plex.nl'
        name='&lt;jbackus@plex.nl&gt;'></tt>
  <item>Jose M. Alcaide <tt><htmlurl url='mailto:jose@we.lc.ehu.es'
        name='&lt;jose@we.lc.ehu.es&gt;'></tt>
  <item>Josef Grosch <tt><htmlurl url='mailto:jgrosch@superior.mooseriver.com'
        name='&lt;jgrosch@superior.mooseriver.com&gt;'></tt>
  <item>Josef Karthauser <tt><htmlurl url='mailto:joe@uk.freebsd.org'
        name='&lt;joe@uk.freebsd.org&gt;'></tt>
  <item>Joseph Stein <tt><htmlurl url='mailto:joes@seaport.net'
        name='&lt;joes@seaport.net&gt;'></tt>
  <item>Josh Gilliam <tt><htmlurl url='mailto:josh@quick.net'
        name='&lt;josh@quick.net&gt;'></tt>
  <item>Josh Tiefenbach <tt><htmlurl url='mailto:josh@ican.net'
        name='&lt;josh@ican.net&gt;'></tt>
  <item>Juergen Lock <tt><htmlurl url='mailto:nox@jelal.hb.north.de'
        name='&lt;nox@jelal.hb.north.de&gt;'></tt>
  <item>Juha Inkari <tt><htmlurl url='mailto:inkari@cc.hut.fi'
        name='&lt;inkari@cc.hut.fi&gt;'></tt>
  <item>Jukka A. Ukkonen <tt><htmlurl url='mailto:jua@iki.fi'
        name='&lt;jua@iki.fi&gt;'></tt>
  <item>Julian Assange <tt><htmlurl url='mailto:proff@suburbia.net'
        name='&lt;proff@suburbia.net&gt;'></tt>
  <item>Julian Coleman <tt><htmlurl url='mailto:j.d.coleman@ncl.ac.uk'
        name='&lt;j.d.coleman@ncl.ac.uk&gt;'></tt>
  <item>Julian H. Stacey <tt><htmlurl url='mailto:jhs@freebsd.org'
        name='&lt;jhs@freebsd.org&gt;'></tt>
  <item>Julian Jenkins <tt><htmlurl url='mailto:kaveman@magna.com.au'
        name='&lt;kaveman@magna.com.au&gt;'></tt>
  <item>Junichi Satoh <tt><htmlurl url='mailto:junichi@jp.freebsd.org'
        name='&lt;junichi@jp.freebsd.org&gt;'></tt>
  <item>Junji SAKAI <tt><htmlurl url='mailto:sakai@jp.freebsd.org'
        name='&lt;sakai@jp.freebsd.org&gt;'></tt>
  <item>Junya WATANABE <tt><htmlurl url='mailto:junya-w@remus.dti.ne.jp'
        name='&lt;junya-w@remus.dti.ne.jp&gt;'></tt>
  <item>K.Higashino <tt><htmlurl url='mailto:a00303@cc.hc.keio.ac.jp'
        name='&lt;a00303@cc.hc.keio.ac.jp&gt;'></tt>
  <item>KUNISHIMA Takeo <tt><htmlurl url='mailto:kunishi@c.oka-pu.ac.jp'
        name='&lt;kunishi@c.oka-pu.ac.jp&gt;'></tt>
  <item>Kai Vorma <tt><htmlurl url='mailto:vode@snakemail.hut.fi'
        name='&lt;vode@snakemail.hut.fi&gt;'></tt>
  <item>Kaleb S. Keithley <tt><htmlurl url='mailto:kaleb@ics.com'
        name='&lt;kaleb@ics.com&gt;'></tt>
  <item>Kaneda Hiloshi <tt><htmlurl url='mailto:vanitas@ma3.seikyou.ne.jp'
        name='&lt;vanitas@ma3.seikyou.ne.jp&gt;'></tt>
  <item>Kapil Chowksey <tt><htmlurl url='mailto:kchowksey@hss.hns.com'
        name='&lt;kchowksey@hss.hns.com&gt;'></tt>
  <item>Karl Denninger <tt><htmlurl url='mailto:karl@mcs.com'
        name='&lt;karl@mcs.com&gt;'></tt>
  <item>Karl Dietz <tt><htmlurl url='mailto:Karl.Dietz@triplan.com'
        name='&lt;Karl.Dietz@triplan.com&gt;'></tt>
  <item>Karl Lehenbauer <tt><htmlurl url='mailto:karl@NeoSoft.com'
        name='&lt;karl@NeoSoft.com&gt;'></tt>
  <item>Kato Takenori <tt><htmlurl url='mailto:kato@eclogite.eps.nagoya-u.ac.jp'
        name='&lt;kato@eclogite.eps.nagoya-u.ac.jp&gt;'></tt>
  <item>Kauzo Horikawa <tt><htmlurl url='mailto:h-horik@yk.rim.or.jp'
        name='&lt;h-horik@yk.rim.or.jp&gt;'></tt>
  <item>Kawanobe Koh <tt><htmlurl url='mailto:kawanobe@st.rim.or.jp'
        name='&lt;kawanobe@st.rim.or.jp&gt;'></tt>
  <item>Kazuhiko Kiriyama <tt><htmlurl url='mailto:kiri@kiri.toba-cmt.ac.jp'
        name='&lt;kiri@kiri.toba-cmt.ac.jp&gt;'></tt>
  <item>Kazuo Horikawa <tt><htmlurl url='mailto:horikawa@jp.FreeBSD.org'
        name='&lt;horikawa@jp.FreeBSD.org&gt;'></tt>
  <item>Kees Jan Koster <tt><htmlurl url='mailto:kjk1@ukc.ac.uk'
        name='&lt;kjk1@ukc.ac.uk&gt;'></tt>
  <item>Keith Bostic <tt><htmlurl url='mailto:bostic@bostic.com'
        name='&lt;bostic@bostic.com&gt;'></tt>
  <item>Keith E. Walker <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Keith Moore
  <item>Keith Sklower <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Ken Hornstein <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Ken Key <tt><htmlurl url='mailto:key@cs.utk.edu'
        name='&lt;key@cs.utk.edu&gt;'></tt>
  <item>Ken Mayer <tt><htmlurl url='mailto:kmayer@freegate.com'
        name='&lt;kmayer@freegate.com&gt;'></tt>
  <item>Kenji Saito <tt><htmlurl url='mailto:marukun@mx2.nisiq.net'
        name='&lt;marukun@mx2.nisiq.net&gt;'></tt>
  <item>Kenji Tomita <tt><htmlurl url='mailto:tommyk@da2.so-net.or.jp'
        name='&lt;tommyk@da2.so-net.or.jp&gt;'></tt>
  <item>Kenneth Furge <tt><htmlurl url='mailto:kenneth.furge@us.endress.com'
        name='&lt;kenneth.furge@us.endress.com&gt;'></tt>
  <item>Kenneth Monville <tt><htmlurl url='mailto:desmo@bandwidth.org'
        name='&lt;desmo@bandwidth.org&gt;'></tt>
  <item>Kenneth R. Westerback <tt><htmlurl url='mailto:krw@tcn.net'
        name='&lt;krw@tcn.net&gt;'></tt>
  <item>Kenneth Stailey <tt><htmlurl url='mailto:kstailey@gnu.ai.mit.edu'
        name='&lt;kstailey@gnu.ai.mit.edu&gt;'></tt>
  <item>Kent Talarico <tt><htmlurl url='mailto:kent@shipwreck.tsoft.net'
        name='&lt;kent@shipwreck.tsoft.net&gt;'></tt>
  <item>Kent Vander Velden <tt><htmlurl url='mailto:graphix@iastate.edu'
        name='&lt;graphix@iastate.edu&gt;'></tt>
  <item>Kentaro Inagaki <tt><htmlurl url='mailto:JBD01226@niftyserve.ne.jp'
        name='&lt;JBD01226@niftyserve.ne.jp&gt;'></tt>
  <item>Kevin Bracey <tt><htmlurl url='mailto:kbracey@art.acorn.co.uk'
        name='&lt;kbracey@art.acorn.co.uk&gt;'></tt>
  <item>Kevin Day <tt><htmlurl url='mailto:toasty@dragondata.com'
        name='&lt;toasty@dragondata.com&gt;'></tt>
  <item>Kevin Lahey <tt><htmlurl url='mailto:kml@nas.nasa.gov'
        name='&lt;kml@nas.nasa.gov&gt;'></tt>
  <item>Kevin Street <tt><htmlurl url='mailto:street@iname.com'
        name='&lt;street@iname.com&gt;'></tt>
  <item>Kevin Van Maren <tt><htmlurl url='mailto:vanmaren@fast.cs.utah.edu'
        name='&lt;vanmaren@fast.cs.utah.edu&gt;'></tt>
  <item>Kiroh HARADA <tt><htmlurl url='mailto:kiroh@kh.rim.or.jp'
        name='&lt;kiroh@kh.rim.or.jp&gt;'></tt>
  <item>Klaus Klein <tt><htmlurl url='mailto:kleink@layla.inka.de'
        name='&lt;kleink@layla.inka.de&gt;'></tt>
  <item>Klaus-J. Wolf <tt><htmlurl url='mailto:Yanestra@t-online.de'
        name='&lt;Yanestra@t-online.de&gt;'></tt>
  <item>Koichi Sato <tt><htmlurl url='mailto:copan@ppp.fastnet.or.jp'
        name='&lt;copan@ppp.fastnet.or.jp&gt;'></tt>
  <item>Kostya Lukin <tt><htmlurl url='mailto:lukin@okbmei.msk.su'
        name='&lt;lukin@okbmei.msk.su&gt;'></tt>
  <item>Kouichi Hirabayashi <tt><htmlurl url='mailto:kh@mogami-wire.co.jp'
        name='&lt;kh@mogami-wire.co.jp&gt;'></tt>
  <item>Kurt D. Zeilenga <tt><htmlurl url='mailto:Kurt@Boolean.NET'
        name='&lt;Kurt@Boolean.NET&gt;'></tt>
  <item>Kurt Olsen <tt><htmlurl url='mailto:kurto@tiny.mcs.usu.edu'
        name='&lt;kurto@tiny.mcs.usu.edu&gt;'></tt>
  <item>L. Jonas Olsson <tt><htmlurl url='mailto:ljo@ljo-slip.DIALIN.CWRU.Edu'
        name='&lt;ljo@ljo-slip.DIALIN.CWRU.Edu&gt;'></tt>
  <item>Lars K&ouml;ller <tt><htmlurl
        url='mailto:Lars.Koeller@Uni-Bielefeld.DE'
        name='&lt;Lars.Koeller@Uni-Bielefeld.DE&gt;'></tt>
  <item>Larry Altneu <tt><htmlurl url='mailto:larry@ALR.COM'
        name='&lt;larry@ALR.COM&gt;'></tt>
  <item>Laurence Lopez <tt><htmlurl url='mailto:lopez@mv.mv.com'
        name='&lt;lopez@mv.mv.com&gt;'></tt>
  <item>Lee Cremeans <tt><htmlurl url='mailto:lcremean@tidalwave.net'
        name='&lt;lcremean@tidalwave.net&gt;'></tt>
  <item>Liang Tai-hwa <tt><htmlurl url='mailto:avatar@www.mmlab.cse.yzu.edu.tw'
        name='&lt;avatar@www.mmlab.cse.yzu.edu.tw&gt;'></tt>
  <item>Lon Willett <tt><htmlurl url='mailto:lon%softt.uucp@math.utah.edu'
        name='&lt;lon%softt.uucp@math.utah.edu&gt;'></tt>
  <item>Louis A. Mamakos <tt><htmlurl url='mailto:louie@TransSys.COM'
        name='&lt;louie@TransSys.COM&gt;'></tt>
  <item>Louis Mamakos <tt><htmlurl url='mailto:loiue@TransSys.com'
        name='&lt;loiue@TransSys.com&gt;'></tt>
  <item>Lucas James <tt><htmlurl url='mailto:Lucas.James@ldjpc.apana.org.au'
        name='&lt;Lucas.James@ldjpc.apana.org.au&gt;'></tt>
  <item>Lyndon Nerenberg <tt><htmlurl url='mailto:lyndon@orthanc.com'
        name='&lt;lyndon@orthanc.com&gt;'></tt>
  <item>M.C. Wong <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>MANTANI Nobutaka <tt><htmlurl url='mailto:nobutaka@nobutaka.com'
        name='&lt;nobutaka@nobutaka.com&gt;'></tt>
  <item>MIHIRA Sanpei Yoshiro <tt><htmlurl url='mailto:sanpei@sanpei.org'
        name='&lt;sanpei@sanpei.org&gt;'></tt>
  <item>MITA Yoshio <tt><htmlurl url='mailto:mita@jp.FreeBSD.ORG'
        name='&lt;mita@jp.FreeBSD.ORG&gt;'></tt>
  <item>MITSUNAGA Noriaki <tt><htmlurl url='mailto:mitchy@er.ams.eng.osaka-u.ac.jp'
        name='&lt;mitchy@er.ams.eng.osaka-u.ac.jp&gt;'></tt>
  <item>MOROHOSHI Akihiko <tt><htmlurl url='mailto:moro@race.u-tokyo.ac.jp'
        name='&lt;moro@race.u-tokyo.ac.jp&gt;'></tt>
  <item>Magnus Enbom <tt><htmlurl url='mailto:dot@tinto.campus.luth.se'
        name='&lt;dot@tinto.campus.luth.se&gt;'></tt>
  <item>Mahesh Neelakanta <tt><htmlurl url='mailto:mahesh@gcomm.com'
        name='&lt;mahesh@gcomm.com&gt;'></tt>
  <item>Makoto MATSUSHITA <tt><htmlurl url='mailto:matusita@jp.freebsd.org'
        name='&lt;matusita@jp.freebsd.org&gt;'></tt>
  <item>Makoto WATANABE <tt><htmlurl
        url='mailto:watanabe@zlab.phys.nagoya-u.ac.jp'
        name='&lt;watanabe@zlab.phys.nagoya-u.ac.jp&gt;'></tt>
  <item>Malte Lance <tt><htmlurl url='mailto:malte.lance@gmx.net'
        name='&lt;malte.lance@gmx.net&gt;'></tt>
  <item>Manu Iyengar <tt><htmlurl url='mailto:iyengar@grunthos.pscwa.psca.com'
        name='&lt;iyengar@grunthos.pscwa.psca.com&gt;'></tt>
  <item>Marc Frajola <tt><htmlurl url='mailto:marc@dev.com'
        name='&lt;marc@dev.com&gt;'></tt>
  <item>Marc Ramirez <tt><htmlurl url='mailto:mrami@mramirez.sy.yale.edu'
        name='&lt;mrami@mramirez.sy.yale.edu&gt;'></tt>
  <item>Marc Slemko <tt><htmlurl url='mailto:marcs@znep.com'
        name='&lt;marcs@znep.com&gt;'></tt>
  <item>Marc van Kempen <tt><htmlurl url='mailto:wmbfmk@urc.tue.nl'
        name='&lt;wmbfmk@urc.tue.nl&gt;'></tt>
  <item>Marcel Moolenaar <tt><htmlurl url='mailto:marcel@scc.nl'
        name='&lt;marcel@scc.nl&gt;'></tt>
  <item>Mario Sergio Fujikawa Ferreira <tt><htmlurl
        url='mailto:lioux@gns.com.br'
        name='&lt;lioux@gns.com.br&gt;'></tt>
  <item>Mark Andrews <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Mark Cammidge <tt><htmlurl url='mailto:mark@gmtunx.ee.uct.ac.za'
        name='&lt;mark@gmtunx.ee.uct.ac.za&gt;'></tt>
  <item>Mark Diekhans <tt><htmlurl url='mailto:markd@grizzly.com'
        name='&lt;markd@grizzly.com&gt;'></tt>
  <item>Mark Huizer <tt><htmlurl url='mailto:xaa@stack.nl'
        name='&lt;xaa@stack.nl&gt;'></tt>
  <item>Mark J. Taylor <tt><htmlurl url='mailto:mtaylor@cybernet.com'
        name='&lt;mtaylor@cybernet.com&gt;'></tt>
  <item>Mark Krentel <tt><htmlurl url='mailto:krentel@rice.edu'
        name='&lt;krentel@rice.edu&gt;'></tt>
  <item>Mark Mayo <tt><htmlurl url='mailto:markm@vmunix.com'
        name='&lt;markm@vmunix.com&gt;'></tt>
  <item>Mark Thompson <tt><htmlurl url='mailto:thompson@tgsoft.com'
        name='&lt;thompson@tgsoft.com&gt;'></tt>
  <item>Mark Tinguely <tt><htmlurl url='mailto:tinguely@plains.nodak.edu'
        name='&lt;tinguely@plains.nodak.edu&gt;'></tt>
  <item>Mark Treacy <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Mark Valentine <tt><htmlurl url='mailto:mark@linus.demon.co.uk'
        name='&lt;mark@linus.demon.co.uk&gt;'></tt>
  <item>Martin Birgmeier
  <item>Martin Ibert <tt><htmlurl url='mailto:mib@ppe.bb-data.de'
        name='&lt;mib@ppe.bb-data.de&gt;'></tt>
  <item>Martin Kammerhofer <tt><htmlurl url='mailto:dada@sbox.tu-graz.ac.at'
        name='&lt;dada@sbox.tu-graz.ac.at&gt;'></tt>
  <item>Martin Renters <tt><htmlurl url='mailto:martin@tdc.on.ca'
        name='&lt;martin@tdc.on.ca&gt;'></tt>
  <item>Martti Kuparinen <tt><htmlurl url='mailto:erakupa@kk.etx.ericsson.se'
        name='&lt;erakupa@kk.etx.ericsson.se&gt;'></tt>
  <item>Masachika ISHIZUKA <tt><htmlurl url='mailto:ishizuka@isis.min.ntt.jp'
        name='&lt;ishizuka@isis.min.ntt.jp&gt;'></tt>
  <item>Mas.TAKEMURA <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Masafumi NAKANE <tt><htmlurl url='mailto:max@wide.ad.jp'
        name='&lt;max@wide.ad.jp&gt;'></tt>
  <item>Masahiro Sekiguchi <tt><htmlurl url='mailto:seki@sysrap.cs.fujitsu.co.jp'
        name='&lt;seki@sysrap.cs.fujitsu.co.jp&gt;'></tt>
  <item>Masanobu Saitoh <tt><htmlurl url='mailto:msaitoh@spa.is.uec.ac.jp'
        name='&lt;msaitoh@spa.is.uec.ac.jp&gt;'></tt>
  <item>Masanori Kanaoka <tt><htmlurl url='mailto:kana@saijo.mke.mei.co.jp'
        name='&lt;kana@saijo.mke.mei.co.jp&gt;'></tt>
  <item>Masanori Kiriake <tt><htmlurl url='mailto:seiken@ncs.co.jp'
        name='&lt;seiken@ncs.co.jp&gt;'></tt>
  <item>Masatoshi TAMURA <tt><htmlurl url='mailto:tamrin@shinzan.kuee.kyoto-u.ac.jp'
        name='&lt;tamrin@shinzan.kuee.kyoto-u.ac.jp&gt;'></tt>
  <item>Mats Lofkvist <tt><htmlurl url='mailto:mal@algonet.se'
        name='&lt;mal@algonet.se&gt;'></tt>
  <item>Matt Bartley <tt><htmlurl url='mailto:mbartley@lear35.cytex.com'
        name='&lt;mbartley@lear35.cytex.com&gt;'></tt>
  <item>Matt Thomas <tt><htmlurl url='mailto:matt@3am-software.com'
        name='&lt;matt@3am-software.com&gt;'></tt>
  <item>Matt White <tt><htmlurl url='mailto:mwhite+@CMU.EDU'
        name='&lt;mwhite+@CMU.EDU&gt;'></tt>
  <item>Matthew C. Mead <tt><htmlurl url='mailto:mmead@Glock.COM'
        name='&lt;mmead@Glock.COM&gt;'></tt>
  <item>Matthew Cashdollar <tt><htmlurl url='mailto:mattc@rfcnet.com'
        name='&lt;mattc@rfcnet.com&gt;'></tt>
  <item>Matthew Flatt <tt><htmlurl url='mailto:mflatt@cs.rice.edu'
        name='&lt;mflatt@cs.rice.edu&gt;'></tt>
  <item>Matthew Fuller <tt><htmlurl url='mailto:fullermd@futuresouth.com'
        name='&lt;fullermd@futuresouth.com&gt;'></tt>
  <item>Matthew N. Dodd <tt><htmlurl url='mailto:winter@jurai.net'
        name='&lt;winter@jurai.net&gt;'></tt>
  <item>Matthew Stein <tt><htmlurl url='mailto:matt@bdd.net'
        name='&lt;matt@bdd.net&gt;'></tt>
  <item>Matthias Pfaller <tt><htmlurl url='mailto:leo@dachau.marco.de'
        name='&lt;leo@dachau.marco.de&gt;'></tt>
  <item>Matthias Scheler <tt><htmlurl url='mailto:tron@netbsd.org'
        name='&lt;tron@netbsd.org&gt;'></tt>
  <item>Mattias Gronlund <tt><htmlurl url='mailto:Mattias.Gronlund@sa.erisoft.se'
        name='&lt;Mattias.Gronlund@sa.erisoft.se&gt;'></tt>
  <item>Mattias Pantzare <tt><htmlurl url='mailto:pantzer@ludd.luth.se'
        name='&lt;pantzer@ludd.luth.se&gt;'></tt>
  <item>Maurice Castro <tt><htmlurl
        url='mailto:maurice@planet.serc.rmit.edu.au'
        name='&lt;maurice@planet.serc.rmit.edu.au&gt;'></tt>
  <item>Max Euston <tt><htmlurl url='mailto:meuston@jmrodgers.com'
        name='&lt;meuston@jmrodgers.com&gt;'></tt>
  <item>Max Khon <tt><htmlurl url='mailto:fjoe@husky.iclub.nsu.ru'
        name='&lt;fjoe@husky.iclub.nsu.ru&gt;'></tt>
  <item>Maxim Bolotin <tt><htmlurl url='mailto:max@rsu.ru'
        name='&lt;max@rsu.ru&gt;'></tt>
  <item>Micha Class <tt><htmlurl url='mailto:michael_class@hpbbse.bbn.hp.com'
        name='&lt;michael_class@hpbbse.bbn.hp.com&gt;'></tt>
  <item>Michael Butler <tt><htmlurl url='mailto:imb@scgt.oz.au'
        name='&lt;imb@scgt.oz.au&gt;'></tt>
  <item>Michael Butschky <tt><htmlurl url='mailto:butsch@computi.erols.com'
        name='&lt;butsch@computi.erols.com&gt;'></tt>
  <item>Michael Clay <tt><htmlurl url='mailto:mclay@weareb.org'
        name='&lt;mclay@weareb.org&gt;'></tt>
  <item>Michael Elbel <tt><htmlurl url='mailto:me@FreeBSD.ORG'
        name='&lt;me@FreeBSD.org&gt;'></tt>
  <item>Michael Galassi <tt><htmlurl url='mailto:nerd@percival.rain.com'
        name='&lt;nerd@percival.rain.com&gt;'></tt>
  <item>Michael Hancock <tt><htmlurl url='mailto:michaelh@cet.co.jp'
        name='&lt;michaelh@cet.co.jp&gt;'></tt>
  <item>Michael Hohmuth <tt><htmlurl url='mailto:hohmuth@inf.tu-dresden.de'
        name='&lt;hohmuth@inf.tu-dresden.de&gt;'></tt>
  <item>Michael Perlman <tt><htmlurl url='mailto:canuck@caam.rice.edu'
        name='&lt;canuck@caam.rice.edu&gt;'></tt>
  <item>Michael Petry <tt><htmlurl url='mailto:petry@netwolf.NetMasters.com'
        name='&lt;petry@netwolf.NetMasters.com&gt;'></tt>
  <item>Michael Reifenberger <tt><htmlurl url='mailto:root@totum.plaut.de'
        name='&lt;root@totum.plaut.de&gt;'></tt>
  <item>Michael Searle <tt><htmlurl url='mailto:searle@longacre.demon.co.uk'
        name='&lt;searle@longacre.demon.co.uk&gt;'></tt>
  <item>Michal Listos <tt><htmlurl url='mailto:mcl@Amnesiac.123.org'
        name='&lt;mcl@Amnesiac.123.org&gt;'></tt>
  <item>Michio Karl Jinbo <tt><htmlurl url='mailto:karl@marcer.nagaokaut.ac.jp'
        name='&lt;karl@marcer.nagaokaut.ac.jp&gt;'></tt>
  <item>Miguel Angel Sagreras <tt><htmlurl url='mailto:msagre@cactus.fi.uba.ar'
        name='&lt;msagre@cactus.fi.uba.ar&gt;'></tt>
  <item>Mihoko Tanaka <tt><htmlurl url='mailto:m_tonaka@pa.yokogawa.co.jp'
        name='&lt;m_tonaka@pa.yokogawa.co.jp&gt;'></tt>
  <item>Mika Nystrom <tt><htmlurl url='mailto:mika@cs.caltech.edu'
        name='&lt;mika@cs.caltech.edu&gt;'></tt>
  <item>Mikael Hybsch <tt><htmlurl url='mailto:micke@dynas.se'
        name='&lt;micke@dynas.se&gt;'></tt>
  <item>Mikael Karpberg <tt><htmlurl url='mailto:karpen@ocean.campus.luth.se'
        name='&lt;karpen@ocean.campus.luth.se&gt;'></tt>
  <item>Mike Del <tt><htmlurl url='mailto:repenting@hotmail.com'
        name='&lt;repenting@hotmail.com&gt;'></tt>
  <item>Mike Durian <tt><htmlurl url='mailto:durian@plutotech.com'
        name='&lt;durian@plutotech.com&gt;'></tt>
  <item>Mike Durkin <tt><htmlurl url='mailto:mdurkin@tsoft.sf-bay.org'
        name='&lt;mdurkin@tsoft.sf-bay.org&gt;'></tt>
  <item>Mike E. Matsnev <tt><htmlurl url='mailto:mike@azog.cs.msu.su'
        name='&lt;mike@azog.cs.msu.su&gt;'></tt>
  <item>Mike Evans <tt><htmlurl url='mailto:mevans@candle.com'
        name='&lt;mevans@candle.com&gt;'></tt>
  <item>Mike Grupenhoff <tt><htmlurl url='mailto:kashmir@umiacs.umd.edu'
        name='&lt;kashmir@umiacs.umd.edu&gt;'></tt>
  <item>Mike Hibler <tt><htmlurl url='mailto:mike@marker.cs.utah.edu'
        name='&lt;mike@marker.cs.utah.edu&gt;'></tt>
  <item>Mike Karels <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Mike McGaughey <tt><htmlurl url='mailto:mmcg@cs.monash.edu.au'
        name='&lt;mmcg@cs.monash.edu.au&gt;'></tt>
  <item>Mike Meyer <tt><htmlurl url='mailto:mwm@shiva.the-park.com'
        name='&lt;mwm@shiva.the-park.com&gt;'></tt>
  <item>Mike Mitchell <tt><htmlurl url='mailto:mitchell@ref.tfs.com'
        name='&lt;mitchell@ref.tfs.com&gt;'></tt>
  <item>Mike Murphy <tt><htmlurl url='mailto:mrm@alpharel.com'
        name='&lt;mrm@alpharel.com&gt;'></tt>
  <item>Mike Peck <tt><htmlurl url='mailto:mike@binghamton.edu'
        name='&lt;mike@binghamton.edu&gt;'></tt>
  <item>Mike Spengler <tt><htmlurl url='mailto:mks@msc.edu'
        name='&lt;mks@msc.edu&gt;'></tt>
  <item>Mikhail A. Sokolov <tt><htmlurl url='mailto:mishania@demos.su'
        name='&lt;mishania@demos.su&gt;'></tt>
  <item>Mikhail Teterin <tt><htmlurl url='mailto:mi@aldan.ziplink.net'
        name='&lt;mi@aldan.ziplink.net&gt;'></tt>
  <item>Ming-I Hseh <tt><htmlurl url='mailto:PA@FreeBSD.ee.Ntu.edu.TW'
        name='&lt;PA@FreeBSD.ee.Ntu.edu.TW&gt;'></tt>
  <item>Mitsuru IWASAKI <tt><htmlurl url='mailto:iwasaki@pc.jaring.my'
        name='&lt;iwasaki@pc.jaring.my&gt;'></tt>
  <item>Monte Mitzelfelt <tt><htmlurl url='mailto:monte@gonefishing.org'
        name='&lt;monte@gonefishing.org&gt;'></tt>
  <item>Morgan Davis <tt><htmlurl url='mailto:root@io.cts.com'
        name='&lt;root@io.cts.com&gt;'></tt>
  <item>Mostyn Lewis <tt><htmlurl url='mailto:mostyn@mrl.com'
        name='&lt;mostyn@mrl.com&gt;'></tt>
  <item>Motoyuki Kasahara <tt><htmlurl url='mailto:m-kasahr@sra.co.jp'
        name='&lt;m-kasahr@sra.co.jp&gt;'></tt>
  <item>Motoyuki Konno <tt><htmlurl url='mailto:motoyuki@snipe.rim.or.jp'
        name='&lt;motoyuki@snipe.rim.or.jp&gt;'></tt>
  <item>Munechika Sumikawa <tt><htmlurl url='mailto:sumikawa@kame.net'
        name='&lt;sumikawa@kame.net&gt;'></tt>
  <item>Murray Stokely <tt><htmlurl url='mailto:murray@cdrom.com'
        name='&lt;murray@cdrom.com&gt;'></tt>
  <item>N.G.Smith <tt><htmlurl url='mailto:ngs@sesame.hensa.ac.uk'
        name='&lt;ngs@sesame.hensa.ac.uk&gt;'></tt>
  <item>NAGAO Tadaaki <tt><htmlurl url='mailto:nagao@cs.titech.ac.jp'
        name='&lt;nagao@cs.titech.ac.jp&gt;'></tt>
  <item>NAKAJI Hiroyuki <tt><htmlurl url='mailto:nakaji@zeisei.dpri.kyoto-u.ac.jp'
        name='&lt;nakaji@zeisei.dpri.kyoto-u.ac.jp&gt;'></tt>
  <item>NAKAMURA Kazushi <tt><htmlurl url='mailto:nkazushi@highway.or.jp'
        name='&lt;nkazushi@highway.or.jp&gt;'></tt>
  <item>NAKAMURA Motonori <tt><htmlurl url='mailto:motonori@econ.kyoto-u.ac.jp'
        name='&lt;motonori@econ.kyoto-u.ac.jp&gt;'></tt>
  <item>NIIMI Satoshi <tt><htmlurl url='mailto:sa2c@and.or.jp'
        name='&lt;sa2c@and.or.jp&gt;'></tt>
  <item>NOKUBI Hirotaka <tt><htmlurl url='mailto:h-nokubi@yyy.or.jp'
        name='&lt;h-nokubi@yyy.or.jp&gt;'></tt>
  <item>Nadav Eiron <tt><htmlurl url='mailto:nadav@barcode.co.il'
        name='&lt;nadav@barcode.co.il&gt;'></tt>
  <item>Nanbor Wang <tt><htmlurl url='mailto:nw1@cs.wustl.edu'
        name='&lt;nw1@cs.wustl.edu&gt;'></tt>
  <item>Naofumi Honda <tt><htmlurl url='mailto:honda@Kururu.math.sci.hokudai.ac.jp'
        name='&lt;honda@Kururu.math.sci.hokudai.ac.jp&gt;'></tt>
  <item>Naoki Hamada <tt><htmlurl url='mailto:nao@tom-yam.or.jp'
        name='&lt;nao@tom-yam.or.jp&gt;'></tt>
  <item>Narvi <tt><htmlurl url='mailto:narvi@haldjas.folklore.ee'
        name='&lt;narvi@haldjas.folklore.ee&gt;'></tt>
  <item>Nathan Dorfman <tt><htmlurl url='mailto:nathan@rtfm.net'
        name='&lt;nathan@rtfm.net&gt;'></tt>
  <item>Neal Fachan <tt><htmlurl url='mailto:kneel@ishiboo.com'
        name='&lt;kneel@ishiboo.com&gt;'></tt>
  <item>Neil Blakey-Milner <tt><htmlurl url='mailto:nbm@rucus.ru.ac.za'
        name='&lt;nbm@rucus.ru.ac.za&gt;'></tt>
  <item>Niall Smart <tt><htmlurl url='mailto:rotel@indigo.ie'
        name='&lt;rotel@indigo.ie&gt;'></tt>
  <item>Nick Barnes <tt><htmlurl url='mailto:Nick.Barnes@pobox.com'
        name='&lt;Nick.Barnes@pobox.com&gt;'></tt>
  <item>Nick Handel <tt><htmlurl url='mailto:nhandel@NeoSoft.com'
        name='&lt;nhandel@NeoSoft.com&gt;'></tt>
  <item>Nick Hilliard <tt><htmlurl url='mailto:nick@foobar.org'
        name='&lt;nick@foobar.org&gt;'></tt>
  <item>Nick Sayer <tt><htmlurl url='mailto:nsayer@quack.kfu.com'
        name='&lt;nsayer@quack.kfu.com&gt;'></tt>
  <item>Nick Williams <tt><htmlurl url='mailto:njw@cs.city.ac.uk'
        name='&lt;njw@cs.city.ac.uk&gt;'></tt>
  <item>Nickolay N. Dudorov <tt><htmlurl url='mailto:nnd@itfs.nsk.su'
        name='&lt;nnd@itfs.nsk.su&gt;'></tt>
  <item>Niklas Hallqvist <tt><htmlurl url='mailto:niklas@filippa.appli.se'
        name='&lt;niklas@filippa.appli.se&gt;'></tt>
  <item>Nisha Talagala <tt><htmlurl url='mailto:nisha@cs.berkeley.edu'
        name='&lt;nisha@cs.berkeley.edu&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:ZW6T-KND@j.asahi-net.or.jp'
        name='&lt;ZW6T-KND@j.asahi-net.or.jp&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:adrian@virginia.edu'
        name='&lt;adrian@virginia.edu&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:alex@elvisti.kiev.ua'
        name='&lt;alex@elvisti.kiev.ua&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:anto@netscape.net'
        name='&lt;anto@netscape.net&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:bobson@egg.ics.nitch.ac.jp'
        name='&lt;bobson@egg.ics.nitch.ac.jp&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:bovynf@awe.be'
        name='&lt;bovynf@awe.be&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:burg@is.ge.com'
        name='&lt;burg@is.ge.com&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:chris@gnome.co.uk'
        name='&lt;chris@gnome.co.uk&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:colsen@usa.net'
        name='&lt;colsen@usa.net&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:coredump@nervosa.com'
        name='&lt;coredump@nervosa.com&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:dannyman@arh0300.urh.uiuc.edu'
        name='&lt;dannyman@arh0300.urh.uiuc.edu&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:davids@SECNET.COM'
        name='&lt;davids@SECNET.COM&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:derek@free.org'
        name='&lt;derek@free.org&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:devet@adv.IAEhv.nl'
        name='&lt;devet@adv.IAEhv.nl&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:djv@bedford.net'
        name='&lt;djv@bedford.net&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:dvv@sprint.net'
        name='&lt;dvv@sprint.net&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:enami@ba2.so-net.or.jp'
        name='&lt;enami@ba2.so-net.or.jp&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:flash@eru.tubank.msk.su'
        name='&lt;flash@eru.tubank.msk.su&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:flash@hway.ru'
        name='&lt;flash@hway.ru&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:fn@pain.csrv.uidaho.edu'
        name='&lt;fn@pain.csrv.uidaho.edu&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:gclarkii@netport.neosoft.com'
        name='&lt;gclarkii@netport.neosoft.com&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:gordon@sheaky.lonestar.org'
        name='&lt;gordon@sheaky.lonestar.org&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:graaf@iae.nl'
        name='&lt;graaf@iae.nl&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:greg@greg.rim.or.jp'
        name='&lt;greg@greg.rim.or.jp&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:grossman@cygnus.com'
        name='&lt;grossman@cygnus.com&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:gusw@fub46.zedat.fu-berlin.de'
        name='&lt;gusw@fub46.zedat.fu-berlin.de&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:hfir@math.rochester.edu'
        name='&lt;hfir@math.rochester.edu&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:hnokubi@yyy.or.jp'
        name='&lt;hnokubi@yyy.or.jp&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:iaint@css.tuu.utas.edu.au'
        name='&lt;iaint@css.tuu.utas.edu.au&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:invis@visi.com'
        name='&lt;invis@visi.com&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:ishisone@sra.co.jp'
        name='&lt;ishisone@sra.co.jp&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:iverson@lionheart.com'
        name='&lt;iverson@lionheart.com&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:jpt@magic.net'
        name='&lt;jpt@magic.net&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:junker@jazz.snu.ac.kr'
        name='&lt;junker@jazz.snu.ac.kr&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:k-sugyou@ccs.mt.nec.co.jp'
        name='&lt;k-sugyou@ccs.mt.nec.co.jp&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:kenji@reseau.toyonaka.osaka.jp'
        name='&lt;kenji@reseau.toyonaka.osaka.jp&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:kfurge@worldnet.att.net'
        name='&lt;kfurge@worldnet.att.net&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:lh@aus.org'
        name='&lt;lh@aus.org&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:lhecking@nmrc.ucc.ie'
        name='&lt;lhecking@nmrc.ucc.ie&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:mrgreen@mame.mu.oz.au'
        name='&lt;mrgreen@mame.mu.oz.au&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:nakagawa@jp.freebsd.org'
        name='&lt;nakagawa@jp.freebsd.org&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:ohki@gssm.otsuka.tsukuba.ac.jp'
        name='&lt;ohki@gssm.otsuka.tsukuba.ac.jp&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:owaki@st.rim.or.jp'
        name='&lt;owaki@st.rim.or.jp&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:pechter@shell.monmouth.com'
        name='&lt;pechter@shell.monmouth.com&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:pete@pelican.pelican.com'
        name='&lt;pete@pelican.pelican.com&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:pritc003@maroon.tc.umn.edu'
        name='&lt;pritc003@maroon.tc.umn.edu&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:risner@stdio.com'
        name='&lt;risner@stdio.com&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:roman@rpd.univ.kiev.ua'
        name='&lt;roman@rpd.univ.kiev.ua&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:root@ns2.redline.ru'
        name='&lt;root@ns2.redline.ru&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:root@uglabgw.ug.cs.sunysb.edu'
        name='&lt;root@uglabgw.ug.cs.sunysb.edu&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:stephen.ma@jtec.com.au'
        name='&lt;stephen.ma@jtec.com.au&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:sumii@is.s.u-tokyo.ac.jp'
        name='&lt;sumii@is.s.u-tokyo.ac.jp&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:takas-su@is.aist-nara.ac.jp'
        name='&lt;takas-su@is.aist-nara.ac.jp&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:tamone@eig.unige.ch'
        name='&lt;tamone@eig.unige.ch&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:tjevans@raleigh.ibm.com'
        name='&lt;tjevans@raleigh.ibm.com&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:tony-o@iij.ad.jp amurai@spec.co.jp'
        name='&lt;tony-o@iij.ad.jp amurai@spec.co.jp&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:torii@tcd.hitachi.co.jp'
        name='&lt;torii@tcd.hitachi.co.jp&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:uenami@imasy.or.jp'
        name='&lt;uenami@imasy.or.jp&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:uhlar@netlab.sk'
        name='&lt;uhlar@netlab.sk&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:vode@hut.fi'
        name='&lt;vode@hut.fi&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:wlloyd@mpd.ca'
        name='&lt;wlloyd@mpd.ca&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:wlr@furball.wellsfargo.com'
        name='&lt;wlr@furball.wellsfargo.com&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:wmbfmk@urc.tue.nl'
        name='&lt;wmbfmk@urc.tue.nl&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:yamagata@nwgpc.kek.jp'
        name='&lt;yamagata@nwgpc.kek.jp&gt;'></tt>
  <item>No Name <tt><htmlurl url='mailto:ziggy@ryan.org'
        name='&lt;ziggy@ryan.org&gt;'></tt>
  <item>Nobuhiro Yasutomi <tt><htmlurl url='mailto:nobu@psrc.isac.co.jp'
        name='&lt;nobu@psrc.isac.co.jp&gt;'></tt>
  <item>Nobuyuki Koganemaru <tt><htmlurl url='mailto:kogane@koganemaru.co.jp'
        name='&lt;kogane@koganemaru.co.jp&gt;'></tt>
  <item>Norio Suzuki <tt><htmlurl url='mailto:nosuzuki@e-mail.ne.jp'
        name='&lt;nosuzuki@e-mail.ne.jp&gt;'></tt>
  <item>Noritaka Ishizumi <tt><htmlurl url='mailto:graphite@jp.FreeBSD.ORG'
        name='&lt;graphite@jp.FreeBSD.ORG&gt;'></tt>
  <item>Noriyuki Soda <tt><htmlurl url='mailto:soda@sra.co.jp'
        name='&lt;soda@sra.co.jp&gt;'></tt>
  <item>Olaf Wagner <tt><htmlurl url='mailto:wagner@luthien.in-berlin.de'
        name='&lt;wagner@luthien.in-berlin.de&gt;'></tt>
  <item>Oleg Sharoiko <tt><htmlurl url='mailto:os@rsu.ru'
        name='&lt;os@rsu.ru&gt;'></tt>
  <item>Oliver Breuninger <tt><htmlurl url='mailto:ob@seicom.NET'
        name='&lt;ob@seicom.NET&gt;'></tt>
  <item>Oliver Friedrichs <tt><htmlurl url='mailto:oliver@secnet.com'
        name='&lt;oliver@secnet.com&gt;'></tt>
  <item>Oliver Fromme <tt><htmlurl url='mailto:oliver.fromme@heim3.tu-clausthal.de'
        name='&lt;oliver.fromme@heim3.tu-clausthal.de&gt;'></tt>
  <item>Oliver Laumann <tt><htmlurl url='mailto:net@informatik.uni-bremen.de'
        name='&lt;net@informatik.uni-bremen.de&gt;'></tt>
  <item>Oliver Oberdorf <tt><htmlurl url='mailto:oly@world.std.com'
        name='&lt;oly@world.std.com&gt;'></tt>
  <item>Olof Johansson <tt><htmlurl url='mailto:offe@ludd.luth.se'
        name='&lt;offe@ludd.luth.se&gt;'></tt>
  <item>Osokin Sergey aka oZZ <tt><htmlurl url='mailto:ozz@freebsd.org.ru'
        name='&lt;ozz@freebsd.org.ru&gt;'></tt>
  <item>Pace Willisson <tt><htmlurl url='mailto:pace@blitz.com'
        name='&lt;pace@blitz.com&gt;'></tt>
  <item>Paco Rosich <tt><htmlurl url='mailto:rosich@modico.eleinf.uv.es'
        name='&lt;rosich@modico.eleinf.uv.es&gt;'></tt>
  <item>Palle Girgensohn <tt><htmlurl url='mailto:girgen@partitur.se'
        name='&lt;girgen@partitur.se&gt;'></tt>
  <item>Parag Patel <tt><htmlurl url='mailto:parag@cgt.com'
        name='&lt;parag@cgt.com&gt;'></tt>
  <item>Pascal Pederiva <tt><htmlurl url='mailto:pascal@zuo.dec.com'
        name='&lt;pascal@zuo.dec.com&gt;'></tt>
  <item>Pasvorn Boonmark <tt><htmlurl url='mailto:boonmark@juniper.net'
        name='&lt;boonmark@juniper.net&gt;'></tt>
  <item>Patrick Gardella <tt><htmlurl url='mailto:patrick@cre8tivegroup.com'
        name='&lt;patrick@cre8tivegroup.com&gt;'></tt>
  <item>Patrick Hausen <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Paul Antonov <tt><htmlurl url='mailto:apg@demos.su'
        name='&lt;apg@demos.su&gt;'></tt>
  <item>Paul F. Werkowski <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Paul Fox <tt><htmlurl url='mailto:pgf@foxharp.boston.ma.us'
        name='&lt;pgf@foxharp.boston.ma.us&gt;'></tt>
  <item>Paul Koch <tt><htmlurl url='mailto:koch@thehub.com.au'
        name='&lt;koch@thehub.com.au&gt;'></tt>
  <item>Paul Kranenburg <tt><htmlurl url='mailto:pk@NetBSD.org'
        name='&lt;pk@NetBSD.org&gt;'></tt>
  <item>Paul Mackerras <tt><htmlurl url='mailto:paulus@cs.anu.edu.au'
        name='&lt;paulus@cs.anu.edu.au&gt;'></tt>
  <item>Paul Popelka <tt><htmlurl url='mailto:paulp@uts.amdahl.com'
        name='&lt;paulp@uts.amdahl.com&gt;'></tt>
  <item>Paul S. LaFollette, Jr. <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Paul Saab <tt><htmlurl url='mailto:paul@mu.org'
        name='&lt;paul@mu.org&gt;'></tt>
  <item>Paul Sandys <tt><htmlurl url='mailto:myj@nyct.net'
        name='&lt;myj@nyct.net&gt;'></tt>
  <item>Paul T. Root <tt><htmlurl url='mailto:proot@horton.iaces.com'
        name='&lt;proot@horton.iaces.com&gt;'></tt>
  <item>Paul Vixie <tt><htmlurl url='mailto:paul@vix.com'
        name='&lt;paul@vix.com&gt;'></tt>
  <item>Paulo Menezes <tt><htmlurl url='mailto:paulo@isr.uc.pt'
        name='&lt;paulo@isr.uc.pt&gt;'></tt>
  <item>Paulo Menezes <tt><htmlurl url='mailto:pm@dee.uc.pt'
        name='&lt;pm@dee.uc.pt&gt;'></tt>
  <item>Pedro A M Vazquez <tt><htmlurl url='mailto:vazquez@IQM.Unicamp.BR'
        name='&lt;vazquez@IQM.Unicamp.BR&gt;'></tt>
  <item>Pedro Giffuni <tt><htmlurl url='mailto:giffunip@asme.org'
        name='&lt;giffunip@asme.org&gt;'></tt>
  <item>Pete Bentley <tt><htmlurl url='mailto:pete@demon.net'
        name='&lt;pete@demon.net&gt;'></tt>
  <item>Peter Childs <tt><htmlurl url='mailto:pjchilds@imforei.apana.org.au'
        name='&lt;pjchilds@imforei.apana.org.au&gt;'></tt>
  <item>Peter Cornelius <tt><htmlurl url='mailto:pc@inr.fzk.de'
        name='&lt;pc@inr.fzk.de&gt;'></tt>
  <item>Peter Haight <tt><htmlurl url='mailto:peterh@prognet.com'
        name='&lt;peterh@prognet.com&gt;'></tt>
  <item>Peter Jeremy <tt><htmlurl url='mailto:perer.jeremy@alcatel.com.au'
        name='&lt;perer.jeremy@alcatel.com.au&gt;'></tt>
  <item>Peter M. Chen <tt><htmlurl url='mailto:pmchen@eecs.umich.edu'
        name='&lt;pmchen@eecs.umich.edu&gt;'></tt>
  <item>Peter Much <tt><htmlurl url='mailto:peter@citylink.dinoex.sub.org'
        name='&lt;peter@citylink.dinoex.sub.org&gt;'></tt>
  <item>Peter Olsson <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Peter Philipp <tt><htmlurl url='mailto:pjp@bsd-daemon.net'
        name='&lt;pjp@bsd-daemon.net&gt;'></tt>
  <item>Peter Stubbs <tt><htmlurl url='mailto:PETERS@staidan.qld.edu.au'
        name='&lt;PETERS@staidan.qld.edu.au&gt;'></tt>
  <item>Phil Maker <tt><htmlurl url='mailto:pjm@cs.ntu.edu.au'
        name='&lt;pjm@cs.ntu.edu.au&gt;'></tt>
  <item>Phil Sutherland <tt><htmlurl url='mailto:philsuth@mycroft.dialix.oz.au'
        name='&lt;philsuth@mycroft.dialix.oz.au&gt;'></tt>
  <item>Phil Taylor <tt><htmlurl url='mailto:phil@zipmail.co.uk'
        name='&lt;phil@zipmail.co.uk&gt;'></tt>
  <item>Philip Musumeci <tt><htmlurl url='mailto:philip@rmit.edu.au'
        name='&lt;philip@rmit.edu.au&gt;'></tt>
  <item>Pierre Y. Dampure <tt><htmlurl url='mailto:pierre.dampure@k2c.co.uk'
        name='&lt;pierre.dampure@k2c.co.uk&gt;'></tt>
  <item>Pius Fischer <tt><htmlurl url='mailto:pius@ienet.com'
        name='&lt;pius@ienet.com&gt;'></tt>
  <item>Pomegranate <tt><htmlurl url='mailto:daver@flag.blackened.net'
        name='&lt;daver@flag.blackened.net&gt;'></tt>
  <item>Powerdog Industries <tt><htmlurl url='mailto:kevin.ruddy@powerdog.com'
        name='&lt;kevin.ruddy@powerdog.com&gt;'></tt>
  <item>R. Kym Horsell
  <item>Rajesh Vaidheeswarran <tt><htmlurl url='mailto:rv@fore.com'
        name='&lt;rv@fore.com&gt;'></tt>
  <item>Ralf Friedl <tt><htmlurl url='mailto:friedl@informatik.uni-kl.de'
        name='&lt;friedl@informatik.uni-kl.de&gt;'></tt>
  <item>Randal S. Masutani <tt><htmlurl url='mailto:randal@comtest.com'
        name='&lt;randal@comtest.com&gt;'></tt>
  <item>Randall Hopper <tt><htmlurl url='mailto:rhh@ct.picker.com'
        name='&lt;rhh@ct.picker.com&gt;'></tt>
  <item>Randall W. Dean <tt><htmlurl url='mailto:rwd@osf.org'
        name='&lt;rwd@osf.org&gt;'></tt>
  <item>Randy Bush <tt><htmlurl url='mailto:rbush@bainbridge.verio.net'
        name='&lt;rbush@bainbridge.verio.net&gt;'></tt>
  <item>Reinier Bezuidenhout <tt><htmlurl url='mailto:rbezuide@mikom.csir.co.za'
        name='&lt;rbezuide@mikom.csir.co.za&gt;'></tt>
  <item>Remy Card <tt><htmlurl url='mailto:Remy.Card@masi.ibp.fr'
        name='&lt;Remy.Card@masi.ibp.fr&gt;'></tt>
  <item>Ricardas Cepas <tt><htmlurl url='mailto:rch@richard.eu.org'
        name='&lt;rch@richard.eu.org&gt;'></tt>
  <item>Richard Henderson <tt><htmlurl url='mailto:richard@atheist.tamu.edu'
        name='&lt;richard@atheist.tamu.edu&gt;'></tt>
  <item>Richard Hwang <tt><htmlurl url='mailto:rhwang@bigpanda.com'
        name='&lt;rhwang@bigpanda.com&gt;'></tt>
  <item>Richard J Kuhns <tt><htmlurl url='mailto:rjk@watson.grauel.com'
        name='&lt;rjk@watson.grauel.com&gt;'></tt>
  <item>Richard M. Neswold <tt><htmlurl url='mailto:rneswold@drmemory.fnal.gov'
        name='&lt;rneswold@drmemory.fnal.gov&gt;'></tt>
  <item>Richard Seaman, Jr. <tt><htmlurl url='mailto:dick@tar.com'
        name='&lt;dick@tar.com&gt;'></tt>
  <item>Richard Stallman <tt><htmlurl url='mailto:rms@gnu.ai.mit.edu'
        name='&lt;rms@gnu.ai.mit.edu&gt;'></tt>
  <item>Richard Straka <tt><htmlurl url='mailto:straka@user1.inficad.com'
        name='&lt;straka@user1.inficad.com&gt;'></tt>
  <item>Richard Tobin <tt><htmlurl url='mailto:richard@cogsci.ed.ac.uk'
        name='&lt;richard@cogsci.ed.ac.uk&gt;'></tt>
  <item>Richard Wackerbarth <tt><htmlurl url='mailto:rkw@Dataplex.NET'
        name='&lt;rkw@Dataplex.NET&gt;'></tt>
  <item>Richard Winkel <tt><htmlurl url='mailto:rich@math.missouri.edu'
        name='&lt;rich@math.missouri.edu&gt;'></tt>
  <item>Richard Wiwatowski <tt><htmlurl url='mailto:rjwiwat@adelaide.on.net'
        name='&lt;rjwiwat@adelaide.on.net&gt;'></tt>
  <item>Rick Macklem <tt><htmlurl url='mailto:rick@snowhite.cis.uoguelph.ca'
        name='&lt;rick@snowhite.cis.uoguelph.ca&gt;'></tt>
  <item>Rick Macklin <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Rob Austein <tt><htmlurl url='mailto:sra@epilogue.com'
        name='&lt;sra@epilogue.com&gt;'></tt>
  <item>Rob Mallory <tt><htmlurl url='mailto:rmallory@qualcomm.com'
        name='&lt;rmallory@qualcomm.com&gt;'></tt>
  <item>Rob Snow <tt><htmlurl url='mailto:rsnow@txdirect.net'
        name='&lt;rsnow@txdirect.net&gt;'></tt>
  <item>Robert Crowe <tt><htmlurl url='mailto:bob@speakez.com'
        name='&lt;bob@speakez.com&gt;'></tt>
  <item>Robert D. Thrush <tt><htmlurl url='mailto:rd@phoenix.aii.com'
        name='&lt;rd@phoenix.aii.com&gt;'></tt>
  <item>Robert Eckardt <tt><htmlurl url='mailto:roberte@MEP.Ruhr-Uni-Bochum.de'
        name='&lt;roberte@MEP.Ruhr-Uni-Bochum.de&gt;'></tt>
  <item>Robert Sanders <tt><htmlurl url='mailto:rsanders@mindspring.com'
        name='&lt;rsanders@mindspring.com&gt;'></tt>
  <item>Robert Sexton <tt><htmlurl url='mailto:robert@kudra.com'
        name='&lt;robert@kudra.com&gt;'></tt>
  <item>Robert Shady <tt><htmlurl url='mailto:rls@id.net'
        name='&lt;rls@id.net&gt;'></tt>
  <item>Robert Swindells <tt><htmlurl url='mailto:swindellsr@genrad.co.uk'
        name='&lt;swindellsr@genrad.co.uk&gt;'></tt>
  <item>Robert Watson <tt><htmlurl url='mailto:robert@cyrus.watson.org'
        name='&lt;robert@cyrus.watson.org&gt;'></tt>
  <item>Robert Withrow <tt><htmlurl url='mailto:witr@rwwa.com'
        name='&lt;witr@rwwa.com&gt;'></tt>
  <item>Robert Yoder <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Robin Carey <tt><htmlurl url='mailto:robin@mailgate.dtc.rankxerox.co.uk'
        name='&lt;robin@mailgate.dtc.rankxerox.co.uk&gt;'></tt>
  <item>Roger Hardiman <tt><htmlurl url='mailto:roger@cs.strath.ac.uk'
        name='&lt;roger@cs.strath.ac.uk&gt;'></tt>
  <item>Roland Jesse <tt><htmlurl url='mailto:jesse@cs.uni-magdeburg.de'
        name='&lt;jesse@cs.uni-magdeburg.de&gt;'></tt>
  <item>Ron Bickers <tt><htmlurl url='mailto:rbickers@intercenter.net'
        name='&lt;rbickers@intercenter.net&gt;'></tt>
  <item>Ron Lenk <tt><htmlurl url='mailto:rlenk@widget.xmission.com'
        name='&lt;rlenk@widget.xmission.com&gt;'></tt>
  <item>Ronald Kuehn <tt><htmlurl url='mailto:kuehn@rz.tu-clausthal.de'
        name='&lt;kuehn@rz.tu-clausthal.de&gt;'></tt>
  <item>Rudolf Cejka <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Ruslan Belkin <tt><htmlurl url='mailto:rus@home2.UA.net'
        name='&lt;rus@home2.UA.net&gt;'></tt>
  <item>Ruslan Ermilov <tt><htmlurl url='mailto:ru@ucb.crimea.ua'
        name='&lt;ru@ucb.crimea.ua&gt;'></tt>
  <item>Ruslan Shevchenko <tt><htmlurl url='mailto:rssh@cam.grad.kiev.ua'
        name='&lt;rssh@cam.grad.kiev.ua&gt;'></tt>
  <item>Russell L. Carter <tt><htmlurl url='mailto:rcarter@pinyon.org'
        name='&lt;rcarter@pinyon.org&gt;'></tt>
  <item>Russell Vincent <tt><htmlurl url='mailto:rv@groa.uct.ac.za'
        name='&lt;rv@groa.uct.ac.za&gt;'></tt>
  <item>Ryan Younce <tt><htmlurl url='mailto:ryany@pobox.com'
        name='&lt;ryany@pobox.com&gt;'></tt>
  <item>SANETO Takanori <tt><htmlurl url='mailto:sanewo@strg.sony.co.jp'
        name='&lt;sanewo@strg.sony.co.jp&gt;'></tt>
  <item>SAWADA Mizuki <tt><htmlurl url='mailto:miz@qb3.so-net.ne.jp'
        name='&lt;miz@qb3.so-net.ne.jp&gt;'></tt>
  <item>SUGIMURA Takashi <tt><htmlurl url='mailto:sugimura@jp.FreeBSD.ORG'
        name='&lt;sugimura@jp.FreeBSD.ORG&gt;'></tt>
  <item>SURANYI Peter <tt><htmlurl url='mailto:suranyip@jks.is.tsukuba.ac.jp'
        name='&lt;suranyip@jks.is.tsukuba.ac.jp&gt;'></tt>
  <item>Sakari Jalovaara <tt><htmlurl url='mailto:sja@tekla.fi'
        name='&lt;sja@tekla.fi&gt;'></tt>
  <item>Sam Hartman <tt><htmlurl url='mailto:hartmans@mit.edu'
        name='&lt;hartmans@mit.edu&gt;'></tt>
  <item>Samuel Lam <tt><htmlurl url='mailto:skl@ScalableNetwork.com'
        name='&lt;skl@ScalableNetwork.com&gt;'></tt>
  <item>Sander Vesik <tt><htmlurl url='mailto:sander@haldjas.folklore.ee'
        name='&lt;sander@haldjas.folklore.ee&gt;'></tt>
  <item>Sandro Sigala <tt><htmlurl url='mailto:ssigala@globalnet.it'
        name='&lt;ssigala@globalnet.it&gt;'></tt>
  <item>Sascha Blank <tt><htmlurl url='mailto:blank@fox.uni-trier.de'
        name='&lt;blank@fox.uni-trier.de&gt;'></tt>
  <item>Sascha Wildner <tt><htmlurl url='mailto:swildner@channelz.GUN.de'
        name='&lt;swildner@channelz.GUN.de&gt;'></tt>
  <item>Satoh Junichi <tt><htmlurl url='mailto:junichi@astec.co.jp'
        name='&lt;junichi@astec.co.jp&gt;'></tt>
  <item>Satoshi Taoka <tt><htmlurl url='mailto:taoka@infonets.hiroshima-u.ac.jp'
        name='&lt;taoka@infonets.hiroshima-u.ac.jp&gt;'></tt>
  <item>Scot Elliott <tt><htmlurl url='mailto:scot@poptart.org'
        name='&lt;scot@poptart.org&gt;'></tt>
  <item>Scot W. Hetzel <tt><htmlurl url='mailto:hetzels@westbend.net'
        name='&lt;hetzels@westbend.net&gt;'></tt>
  <item>Scott A. Kenney <tt><htmlurl url='mailto:saken@rmta.ml.org'
        name='&lt;saken@rmta.ml.org&gt;'></tt>
  <item>Scott Blachowicz <tt><htmlurl url='mailto:scott.blachowicz@seaslug.org'
        name='&lt;scott.blachowicz@seaslug.org&gt;'></tt>
  <item>Scott Burris <tt><htmlurl url='mailto:scott@pita.cns.ucla.edu'
        name='&lt;scott@pita.cns.ucla.edu&gt;'></tt>
  <item>Scott Hazen Mueller <tt><htmlurl url='mailto:scott@zorch.sf-bay.org'
        name='&lt;scott@zorch.sf-bay.org&gt;'></tt>
  <item>Scott Michel <tt><htmlurl url='mailto:scottm@cs.ucla.edu'
        name='&lt;scottm@cs.ucla.edu&gt;'></tt>
  <item>Scott Reynolds <tt><htmlurl url='mailto:scott@clmqt.marquette.mi.us'
        name='&lt;scott@clmqt.marquette.mi.us&gt;'></tt>
  <item>Sebastian Strollo <tt><htmlurl url='mailto:seb@erix.ericsson.se'
        name='&lt;seb@erix.ericsson.se&gt;'></tt>
  <item>Seigou TANIMURA <tt><htmlurl url='mailto:tanimura@naklab.dnj.ynu.ac.jp'
        name='&lt;tanimura@naklab.dnj.ynu.ac.jp&gt;'></tt>
  <item>Serge A. Babkin <tt><htmlurl url='mailto:babkin@hq.icb.chel.su'
        name='&lt;babkin@hq.icb.chel.su&gt;'></tt>
  <item>Serge V. Vakulenko <tt><htmlurl url='mailto:vak@zebub.msk.su'
        name='&lt;vak@zebub.msk.su&gt;'></tt>
  <item>Sergei Chechetkin <tt><htmlurl url='mailto:csl@whale.sunbay.crimea.ua'
        name='&lt;csl@whale.sunbay.crimea.ua&gt;'></tt>
  <item>Sergei S. Laskavy <tt><htmlurl url='mailto:laskavy@pc759.cs.msu.su'
        name='&lt;laskavy@pc759.cs.msu.su&gt;'></tt>
  <item>Sergey Gershtein <tt><htmlurl url='mailto:sg@mplik.ru'
        name='&lt;sg@mplik.ru&gt;'></tt>
  <item>Sergey Potapov <tt><htmlurl url='mailto:sp@alkor.ru'
        name='&lt;sp@alkor.ru&gt;'></tt>
  <item>Sergey Shkonda <tt><htmlurl url='mailto:serg@bcs.zp.ua'
        name='&lt;serg@bcs.zp.ua&gt;'></tt>
  <item>Sergey V.Dorokhov <tt><htmlurl url='mailto:svd@kbtelecom.nalnet.ru'
        name='&lt;svd@kbtelecom.nalnet.ru&gt;'></tt>
  <item>Sergio Lenzi <tt><htmlurl url='mailto:lenzi@bsi.com.br'
        name='&lt;lenzi@bsi.com.br&gt;'></tt>
  <item>Shaun Courtney <tt><htmlurl url='mailto:shaun@emma.eng.uct.ac.za'
        name='&lt;shaun@emma.eng.uct.ac.za&gt;'></tt>
  <item>Shawn M. Carey <tt><htmlurl url='mailto:smcarey@mailbox.syr.edu'
        name='&lt;smcarey@mailbox.syr.edu&gt;'></tt>
  <item>Sheldon Hearn <tt><htmlurl url='mailto:axl@iafrica.com'
        name='&lt;axl@iafrica.com&gt;'></tt>
  <item>Shigio Yamaguchi <tt><htmlurl url='mailto:shigio@wafu.netgate.net'
        name='&lt;shigio@wafu.netgate.net&gt;'></tt>
  <item>Shunsuke Akiyama <tt><htmlurl url='mailto:akiyama@jp.freebsd.org'
        name='&lt;akiyama@jp.freebsd.org&gt;'></tt>
  <item>Simon <tt><htmlurl url='mailto:simon@masi.ibp.fr'
        name='&lt;simon@masi.ibp.fr&gt;'></tt>
  <item>Simon Burge <tt><htmlurl url='mailto:simonb@telstra.com.au'
        name='&lt;simonb@telstra.com.au&gt;'></tt>
  <item>Simon J Gerraty <tt><htmlurl url='mailto:sjg@melb.bull.oz.au'
        name='&lt;sjg@melb.bull.oz.au&gt;'></tt>
  <item>Simon Marlow <tt><htmlurl url='mailto:simonm@dcs.gla.ac.uk'
        name='&lt;simonm@dcs.gla.ac.uk&gt;'></tt>
  <item>Simon Shapiro <tt><htmlurl url='mailto:shimon@simon-shapiro.org'
        name='&lt;shimon@simon-shapiro.org&gt;'></tt>
  <item>Sin'ichiro MIYATANI <tt><htmlurl url='mailto:siu@phaseone.co.jp'
        name='&lt;siu@phaseone.co.jp&gt;'></tt>
  <item>Slaven Rezic <tt><htmlurl url='mailto:eserte@cs.tu-berlin.de'
        name='&lt;eserte@cs.tu-berlin.de&gt;'></tt>
  <item>Soochon Radee <tt><htmlurl url='mailto:slr@mitre.org'
        name='&lt;slr@mitre.org&gt;'></tt>
  <item>Soren Dayton <tt><htmlurl url='mailto:csdayton@midway.uchicago.edu'
        name='&lt;csdayton@midway.uchicago.edu&gt;'></tt>
  <item>Soren Dossing <tt><htmlurl url='mailto:sauber@netcom.com'
        name='&lt;sauber@netcom.com&gt;'></tt>
  <item>Soren S. Jorvang <tt><htmlurl url='mailto:soren@dt.dk'
        name='&lt;soren@dt.dk&gt;'></tt>
  <item>Stefan Bethke <tt><htmlurl url='mailto:stb@hanse.de'
        name='&lt;stb@hanse.de&gt;'></tt>
  <item>Stefan Eggers <tt><htmlurl url='mailto:seggers@semyam.dinoco.de'
        name='&lt;seggers@semyam.dinoco.de&gt;'></tt>
  <item>Stefan Moeding <tt><htmlurl url='mailto:s.moeding@ndh.net'
        name='&lt;s.moeding@ndh.net&gt;'></tt>
  <item>Stefan Petri <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Stefan `Sec` Zehl <tt><htmlurl url='mailto:sec@42.org'
        name='&lt;sec@42.org&gt;'></tt>
  <item>Steinar Haug <tt><htmlurl url='mailto:sthaug@nethelp.no'
        name='&lt;sthaug@nethelp.no&gt;'></tt>
  <item>Stephane E. Potvin <tt><htmlurl url='mailto:sepotvin@videotron.ca'
        name='&lt;sepotvin@videotron.ca&gt;'></tt>
  <item>Stephane Legrand <tt><htmlurl url='mailto:stephane@lituus.fr'
        name='&lt;stephane@lituus.fr&gt;'></tt>
  <item>Stephen Clawson <tt><htmlurl url='mailto:sclawson@marker.cs.utah.edu'
        name='&lt;sclawson@marker.cs.utah.edu&gt;'></tt>
  <item>Stephen F. Combs <tt><htmlurl url='mailto:combssf@salem.ge.com'
        name='&lt;combssf@salem.ge.com&gt;'></tt>
  <item>Stephen Farrell <tt><htmlurl url='mailto:stephen@farrell.org'
        name='&lt;stephen@farrell.org&gt;'></tt>
  <item>Stephen Hocking <tt><htmlurl url='mailto:sysseh@devetir.qld.gov.au'
        name='&lt;sysseh@devetir.qld.gov.au&gt;'></tt>
  <item>Stephen J. Roznowski <tt><htmlurl url='mailto:sjr@home.net'
        name='&lt;sjr@home.net&gt;'></tt>
  <item>Stephen McKay <tt><htmlurl url='mailto:syssgm@devetir.qld.gov.au'
        name='&lt;syssgm@devetir.qld.gov.au&gt;'></tt>
  <item>Stephen Melvin <tt><htmlurl url='mailto:melvin@zytek.com'
        name='&lt;melvin@zytek.com&gt;'></tt>
  <item>Steve Bauer <tt><htmlurl url='mailto:sbauer@rock.sdsmt.edu'
        name='&lt;sbauer@rock.sdsmt.edu&gt;'></tt>
  <item>Steve Deering <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Steve Gerakines <tt><htmlurl url='mailto:steve2@genesis.tiac.net'
        name='&lt;steve2@genesis.tiac.net&gt;'></tt>
  <item>Steve Gericke <tt><htmlurl url='mailto:steveg@comtrol.com'
        name='&lt;steveg@comtrol.com&gt;'></tt>
  <item>Steve Piette <tt><htmlurl url='mailto:steve@simon.chi.il.US'
        name='&lt;steve@simon.chi.il.US&gt;'></tt>
  <item>Steve Schwarz <tt><htmlurl url='mailto:schwarz@alpharel.com'
        name='&lt;schwarz@alpharel.com&gt;'></tt>
  <item>Steven G. Kargl <tt><htmlurl url='mailto:kargl@troutmask.apl.washington.edu'
        name='&lt;kargl@troutmask.apl.washington.edu&gt;'></tt>
  <item>Steven H. Samorodin <tt><htmlurl url='mailto:samorodi@NUXI.com'
        name='&lt;samorodi@NUXI.com&gt;'></tt>
  <item>Steven McCanne <tt><htmlurl url='mailto:mccanne@cs.berkeley.edu'
        name='&lt;mccanne@cs.berkeley.edu&gt;'></tt>
  <item>Steven Plite <tt><htmlurl url='mailto:splite@purdue.edu'
        name='&lt;splite@purdue.edu&gt;'></tt>
  <item>Steven Wallace <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Stuart Henderson <tt><htmlurl
        url='mailto:stuart@internationalschool.co.uk'
        name='&lt;stuart@internationalschool.co.uk&gt;'></tt>
  <item>Sue Blake <tt><htmlurl url='mailto:sue@welearn.com.au'
        name='&lt;sue@welearn.com.au&gt;'></tt>
  <item>Sugiura Shiro <tt><htmlurl url='mailto:ssugiura@duo.co.jp'
        name='&lt;ssugiura@duo.co.jp&gt;'></tt>
  <item>Sujal Patel <tt><htmlurl url='mailto:smpatel@wam.umd.edu'
        name='&lt;smpatel@wam.umd.edu&gt;'></tt>
  <item>Sune Stjerneby <tt><htmlurl url='mailto:stjerneby@usa.net'
        name='&lt;stjerneby@usa.net&gt;'></tt>
  <item>Suzuki Yoshiaki <tt><htmlurl url='mailto:zensyo@ann.tama.kawasaki.jp'
        name='&lt;zensyo@ann.tama.kawasaki.jp&gt;'></tt>
  <item>Tadashi Kumano <tt><htmlurl url='mailto:kumano@strl.nhk.or.jp'
        name='&lt;kumano@strl.nhk.or.jp&gt;'></tt>
  <item>Taguchi Takeshi <tt><htmlurl url='mailto:taguchi@tohoku.iij.ad.jp'
        name='&lt;taguchi@tohoku.iij.ad.jp&gt;'></tt>
  <item>Takahashi Yoshihiro <tt><htmlurl url='mailto:nyan@dd.catv.ne.jp'
        name='&lt;nyan@dd.catv.ne.jp&gt;'></tt>
  <item>Takahiro Yugawa <tt><htmlurl url='mailto:yugawa@orleans.rim.or.jp'
        name='&lt;yugawa@orleans.rim.or.jp&gt;'></tt>
  <item>Takanori Watanabe <tt><htmlurl url='mailto:takawata@shidahara1.planet.sci.kobe-u.ac.jp'
        name='&lt;takawata@shidahara1.planet.sci.kobe-u.ac.jp&gt;'></tt>
  <item>Takashi Mega <tt><htmlurl url='mailto:mega@minz.org'
        name='&lt;mega@minz.org&gt;'></tt>
  <item>Takashi Uozu <tt><htmlurl url='mailto:j1594016@ed.kagu.sut.ac.jp'
        name='&lt;j1594016@ed.kagu.sut.ac.jp&gt;'></tt>
  <item>Takayuki Ariga <tt><htmlurl url='mailto:a00821@cc.hc.keio.ac.jp'
        name='&lt;a00821@cc.hc.keio.ac.jp&gt;'></tt>
  <item>Takeru NAIKI <tt><htmlurl url='mailto:naiki@bfd.es.hokudai.ac.jp'
        name='&lt;naiki@bfd.es.hokudai.ac.jp&gt;'></tt>
  <item>Takeshi Amaike <tt><htmlurl url='mailto:amaike@iri.co.jp'
        name='&lt;amaike@iri.co.jp&gt;'></tt>
  <item>Takeshi MUTOH <tt><htmlurl url='mailto:mutoh@info.nara-k.ac.jp'
        name='&lt;mutoh@info.nara-k.ac.jp&gt;'></tt>
  <item>Takeshi Ohashi <tt><htmlurl url='mailto:ohashi@mickey.ai.kyutech.ac.jp'
        name='&lt;ohashi@mickey.ai.kyutech.ac.jp&gt;'></tt>
  <item>Takeshi WATANABE <tt><htmlurl url='mailto:watanabe@crayon.earth.s.kobe-u.ac.jp'
        name='&lt;watanabe@crayon.earth.s.kobe-u.ac.jp&gt;'></tt>
  <item>Takuya SHIOZAKI <tt><htmlurl url='mailto:tshiozak@makino.ise.chuo-u.ac.jp'
        name='&lt;tshiozak@makino.ise.chuo-u.ac.jp&gt;'></tt>
  <item>Tatoku Ogaito <tt><htmlurl url='mailto:tacha@tera.fukui-med.ac.jp'
        name='&lt;tacha@tera.fukui-med.ac.jp&gt;'></tt>
  <item>Tatsumi HOSOKAWA <tt><htmlurl url='mailto:hosokawa@jp.FreeBSD.org'
        name='&lt;hosokawa@jp.FreeBSD.org&gt;'></tt>
  <item>Ted Buswell <tt><htmlurl url='mailto:tbuswell@mediaone.net'
        name='&lt;tbuswell@mediaone.net&gt;'></tt>
  <item>Ted Faber <tt><htmlurl url='mailto:faber@isi.edu'
        name='&lt;faber@isi.edu&gt;'></tt>
  <item>Ted Lemon <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Terry Lambert <tt><htmlurl url='mailto:terry@lambert.org'
        name='&lt;terry@lambert.org&gt;'></tt>
  <item>Terry Lee <tt><htmlurl url='mailto:terry@uivlsi.csl.uiuc.edu'
        name='&lt;terry@uivlsi.csl.uiuc.edu&gt;'></tt>
  <item>Tetsuya Furukawa <tt><htmlurl url='mailto:tetsuya@secom-sis.co.jp'
        name='&lt;tetsuya@secom-sis.co.jp&gt;'></tt>
  <item>Theo de Raadt <tt><htmlurl url='mailto:deraadt@OpenBSD.org'
        name='&lt;deraadt@OpenBSD.org&gt;'></tt>
  <item>Thomas <tt><htmlurl url='mailto:thomas@mathematik.uni-Bremen.de'
        name='&lt;thomas@mathematik.uni-Bremen.de&gt;'></tt>
  <item>Thomas D. Dean <tt><htmlurl url='mailto:tomdean@ix.netcom.com'
        name='&lt;tomdean@ix.netcom.com&gt;'></tt>
  <item>Thomas David Rivers <tt><htmlurl url='mailto:rivers@dignus.com'
        name='&lt;rivers@dignus.com&gt;'></tt>
  <item>Thomas G. McWilliams <tt><htmlurl url='mailto:tgm@netcom.com'
        name='&lt;tgm@netcom.com&gt;'></tt>
  <item>Thomas Gellekum <tt><htmlurl url='mailto:thomas@ghpc8.ihf.rwth-aachen.de'
        name='&lt;thomas@ghpc8.ihf.rwth-aachen.de&gt;'></tt>
  <item>Thomas Graichen <tt><htmlurl url='mailto:graichen@omega.physik.fu-berlin.de'
        name='&lt;graichen@omega.physik.fu-berlin.de&gt;'></tt>
  <item>Thomas K&ouml;nig <tt><htmlurl
        url='mailto:Thomas.Koenig@ciw.uni-karlsruhe.de'
        name='&lt;Thomas.Koenig@ciw.uni-karlsruhe.de&gt;'></tt>
  <item>Thomas Ptacek <tt><htmlurl url='mailto:unknown'
        name='&lt;unknown&gt;'></tt>
  <item>Thomas Stromberg <tt><htmlurl url='mailto:tstrombe@rtci.com'
        name='&lt;tstrombe@rtci.com&gt;'></tt>
  <item>Thomas Valentino Crimi <tt><htmlurl url='mailto:tcrimi+@andrew.cmu.edu'
        name='&lt;tcrimi+@andrew.cmu.edu&gt;'></tt>
  <item>Thomas Wintergerst <tt><htmlurl url='mailto:thomas@lemur.nord.de'
        name='&lt;thomas@lemur.nord.de&gt;'></tt>
  <item>&THORN;&oacute;r&eth;ur &Iacute;varsson <tt><htmlurl
        url='mailto:totii@est.is'
        name='&lt;totii@est.is&gt;'></tt>
  <item>Tim Kientzle <tt><htmlurl url='mailto:kientzle@netcom.com'
        name='&lt;kientzle@netcom.com&gt;'></tt>
  <item>Tim Singletary <tt><htmlurl url='mailto:tsingle@sunland.gsfc.nasa.gov'
        name='&lt;tsingle@sunland.gsfc.nasa.gov&gt;'></tt>
  <item>Tim Wilkinson <tt><htmlurl url='mailto:tim@sarc.city.ac.uk'
        name='&lt;tim@sarc.city.ac.uk&gt;'></tt>
  <item>Timo J. Rinne <tt><htmlurl url='mailto:tri@iki.fi'
        name='&lt;tri@iki.fi&gt;'></tt>
  <item>Todd Miller <tt><htmlurl url='mailto:millert@openbsd.org'
        name='&lt;millert@openbsd.org&gt;'></tt>
  <item>Tom <tt><htmlurl url='mailto:root@majestix.cmr.no'
        name='&lt;root@majestix.cmr.no&gt;'></tt>
  <item>Tom <tt><htmlurl url='mailto:tom@sdf.com'
        name='&lt;tom@sdf.com&gt;'></tt>
  <item>Tom Gray - DCA <tt><htmlurl url='mailto:dcasba@rain.org'
        name='&lt;dcasba@rain.org&gt;'></tt>
  <item>Tom Hukins <tt><htmlurl url='mailto:tom@eborcom.com'
        name='&lt;tom@eborcom.com&gt;'></tt>
  <item>Tom Jobbins <tt><htmlurl url='mailto:tom@tom.tj'
        name='&lt;tom@tom.tj&gt;'></tt>
  <item>Tom Pusateri <tt><htmlurl url='mailto:pusateri@juniper.net'
        name='&lt;pusateri@juniper.net&gt;'></tt>
  <item>Tom Rush <tt><htmlurl url='mailto:tarush@mindspring.com'
        name='&lt;tarush@mindspring.com&gt;'></tt>
  <item>Tom Samplonius <tt><htmlurl url='mailto:tom@misery.sdf.com'
        name='&lt;tom@misery.sdf.com&gt;'></tt>
  <item>Tomohiko Kurahashi <tt><htmlurl url='mailto:kura@melchior.q.t.u-tokyo.ac.jp'
        name='&lt;kura@melchior.q.t.u-tokyo.ac.jp&gt;'></tt>
  <item>Tony Kimball <tt><htmlurl url='mailto:alk@Think.COM'
        name='&lt;alk@Think.COM&gt;'></tt>
  <item>Tony Li <tt><htmlurl url='mailto:tli@jnx.com'
        name='&lt;tli@jnx.com&gt;'></tt>
  <item>Tony Lynn <tt><htmlurl url='mailto:wing@cc.nsysu.edu.tw'
        name='&lt;wing@cc.nsysu.edu.tw&gt;'></tt>
  <item>Torbjorn Granlund <tt><htmlurl url='mailto:tege@matematik.su.se'
        name='&lt;tege@matematik.su.se&gt;'></tt>
  <item>Toshihiko ARAI <tt><htmlurl url='mailto:toshi@tenchi.ne.jp'
        name='&lt;toshi@tenchi.ne.jp&gt;'></tt>
  <item>Toshihiko SHIMOKAWA <tt><htmlurl url='mailto:toshi@tea.forus.or.jp'
        name='&lt;toshi@tea.forus.or.jp&gt;'></tt>
  <item>Toshihiro Kanda <tt><htmlurl url='mailto:candy@kgc.co.jp'
        name='&lt;candy@kgc.co.jp&gt;'></tt>
  <item>Toshiomi Moriki <tt><htmlurl url='mailto:Toshiomi.Moriki@ma1.seikyou.ne.jp'
        name='&lt;Toshiomi.Moriki@ma1.seikyou.ne.jp&gt;'></tt>
  <item>Trefor S. <tt><htmlurl url='mailto:trefor@flevel.co.uk'
        name='&lt;trefor@flevel.co.uk&gt;'></tt>
  <item>Trevor Blackwell <tt><htmlurl url='mailto:tlb@viaweb.com'
        name='&lt;tlb@viaweb.com&gt;'></tt>
  <item>URATA Shuichiro <tt><htmlurl url='mailto:s-urata@nmit.tmg.nec.co.jp'
        name='&lt;s-urata@nmit.tmg.nec.co.jp&gt;'></tt>
  <item>Ugo Paternostro <tt><htmlurl url='mailto:paterno@dsi.unifi.it'
        name='&lt;paterno@dsi.unifi.it&gt;'></tt>
  <item>Ulf Kieber <tt><htmlurl url='mailto:kieber@sax.de'
        name='&lt;kieber@sax.de&gt;'></tt>
  <item>Ulli Linzen <tt><htmlurl url='mailto:ulli@perceval.camelot.de'
        name='&lt;ulli@perceval.camelot.de&gt;'></tt>
  <item>Ustimenko Semen <tt><htmlurl url='mailto:semen@iclub.nsu.ru'
        name='&lt;semen@iclub.nsu.ru&gt;'></tt>
  <item>Uwe Arndt <tt><htmlurl url='mailto:arndt@mailhost.uni-koblenz.de'
        name='&lt;arndt@mailhost.uni-koblenz.de&gt;'></tt>
  <item>Vadim Chekan <tt><htmlurl url='mailto:vadim@gc.lviv.ua'
        name='&lt;vadim@gc.lviv.ua&gt;'></tt>
  <item>Vadim Kolontsov <tt><htmlurl url='mailto:vadim@tversu.ac.ru'
        name='&lt;vadim@tversu.ac.ru&gt;'></tt>
  <item>Vadim Mikhailov <tt><htmlurl url='mailto:mvp@braz.ru'
        name='&lt;mvp@braz.ru&gt;'></tt>
  <item>Van Jacobson <tt><htmlurl url='mailto:van@ee.lbl.gov'
        name='&lt;van@ee.lbl.gov&gt;'></tt>
  <item>Vasily V. Grechishnikov <tt><htmlurl url='mailto:bazilio@ns1.ied-vorstu.ac.ru'
        name='&lt;bazilio@ns1.ied-vorstu.ac.ru&gt;'></tt>
  <item>Vasim Valejev <tt><htmlurl url='mailto:vasim@uddias.diaspro.com'
        name='&lt;vasim@uddias.diaspro.com&gt;'></tt>
  <item>Vernon J. Schryver <tt><htmlurl url='mailto:vjs@mica.denver.sgi.com'
        name='&lt;vjs@mica.denver.sgi.com&gt;'></tt>
  <item>Vic Abell <tt><htmlurl url='mailto:abe@cc.purdue.edu'
        name='&lt;abe@cc.purdue.edu&gt;'></tt>
  <item>Ville Eerola <tt><htmlurl url='mailto:ve@sci.fi'
        name='&lt;ve@sci.fi&gt;'></tt>
  <item>Vincent Poy <tt><htmlurl url='mailto:vince@venus.gaianet.net'
        name='&lt;vince@venus.gaianet.net&gt;'></tt>
  <item>Vincenzo Capuano <tt><htmlurl url='mailto:VCAPUANO@vmprofs.esoc.esa.de'
        name='&lt;VCAPUANO@vmprofs.esoc.esa.de&gt;'></tt>
  <item>Virgil Champlin <tt><htmlurl url='mailto:champlin@pa.dec.com'
        name='&lt;champlin@pa.dec.com&gt;'></tt>
  <item>Vladimir A. Jakovenko <tt><htmlurl url='mailto:vovik@ntu-kpi.kiev.ua'
        name='&lt;vovik@ntu-kpi.kiev.ua&gt;'></tt>
  <item>Vladimir Kushnir <tt><htmlurl url='mailto:kushn@mail.kar.net'
        name='&lt;kushn@mail.kar.net&gt;'></tt>
  <item>Vsevolod Lobko <tt><htmlurl url='mailto:seva@alex-ua.com'
        name='&lt;seva@alex-ua.com&gt;'></tt>
  <item>W. Gerald Hicks <tt><htmlurl url='mailto:wghicks@bellsouth.net'
        name='&lt;wghicks@bellsouth.net&gt;'></tt>
  <item>W. Richard Stevens <tt><htmlurl url='mailto:rstevens@noao.edu'
        name='&lt;rstevens@noao.edu&gt;'></tt>
  <item>Walt Howard <tt><htmlurl url='mailto:howard@ee.utah.edu'
        name='&lt;howard@ee.utah.edu&gt;'></tt>
  <item>Warren Toomey <tt><htmlurl url='mailto:wkt@csadfa.cs.adfa.oz.au'
        name='&lt;wkt@csadfa.cs.adfa.oz.au&gt;'></tt>
  <item>Wayne Scott <tt><htmlurl url='mailto:wscott@ichips.intel.com'
        name='&lt;wscott@ichips.intel.com&gt;'></tt>
  <item>Werner Griessl <tt><htmlurl url='mailto:werner@btp1da.phy.uni-bayreuth.de'
        name='&lt;werner@btp1da.phy.uni-bayreuth.de&gt;'></tt>
  <item>Wes Santee <tt><htmlurl url='mailto:wsantee@wsantee.oz.net'
        name='&lt;wsantee@wsantee.oz.net&gt;'></tt>
  <item>Wietse Venema <tt><htmlurl url='mailto:wietse@wzv.win.tue.nl'
        name='&lt;wietse@wzv.win.tue.nl&gt;'></tt>
  <item>Wilfredo Sanchez <tt><htmlurl url='mailto:wsanchez@apple.com'
        name='&lt;wsanchez@apple.com&gt;'></tt>
  <item>Wiljo Heinen <tt><htmlurl url='mailto:wiljo@freeside.ki.open.de'
        name='&lt;wiljo@freeside.ki.open.de&gt;'></tt>
  <item>Wilko Bulte <tt><htmlurl url='mailto:wilko@yedi.iaf.nl'
        name='&lt;wilko@yedi.iaf.nl&gt;'></tt>
  <item>Willem Jan Withagen <tt><htmlurl url='mailto:wjw@surf.IAE.nl'
        name='&lt;wjw@surf.IAE.nl&gt;'></tt>
  <item>William Jolitz <tt><htmlurl url='mailto:withheld'
        name='&lt;withheld&gt;'></tt>
  <item>William Liao <tt><htmlurl url='mailto:william@tale.net'
        name='&lt;william@tale.net&gt;'></tt>
  <item>Wojtek Pilorz <tt><htmlurl url='mailto:wpilorz@celebris.bdk.lublin.pl'
        name='&lt;wpilorz@celebris.bdk.lublin.pl&gt;'></tt>
  <item>Wolfgang Helbig <tt><htmlurl url='mailto:helbig@ba-stuttgart.de'
        name='&lt;helbig@ba-stuttgart.de&gt;'></tt>
  <item>Wolfgang Solfrank <tt><htmlurl url='mailto:ws@tools.de'
        name='&lt;ws@tools.de&gt;'></tt>
  <item>Wolfgang Stanglmeier <tt><htmlurl url='mailto:wolf@FreeBSD.org'
        name='&lt;wolf@FreeBSD.org&gt;'></tt>
  <item>Wu Ching-hong <tt><htmlurl url='mailto:woju@FreeBSD.ee.Ntu.edu.TW'
        name='&lt;woju@FreeBSD.ee.Ntu.edu.TW&gt;'></tt>
  <item>Yarema <tt><htmlurl url='mailto:yds@ingress.com'
        name='&lt;yds@ingress.com&gt;'></tt>
  <item>Yaroslav Terletsky <tt><htmlurl url='mailto:ts@polynet.lviv.ua'
        name='&lt;ts@polynet.lviv.ua&gt;'></tt>
  <item>Yen-Shuo Su <tt><htmlurl url='mailto:yssu@CCCA.NCTU.edu.tw'
        name='&lt;yssu@CCCA.NCTU.edu.tw&gt;'></tt>
  <item>Ying-Chieh Liao <tt><htmlurl url='mailto:ijliao@csie.NCTU.edu.tw'
        name='&lt;ijliao@csie.NCTU.edu.tw&gt;'></tt>
  <item>Yixin Jin <tt><htmlurl url='mailto:yjin@rain.cs.ucla.edu'
        name='&lt;yjin@rain.cs.ucla.edu&gt;'></tt>
  <item>Yoshiaki Uchikawa <tt><htmlurl url='mailto:yoshiaki@kt.rim.or.jp'
        name='&lt;yoshiaki@kt.rim.or.jp&gt;'></tt>
  <item>Yoshihiko OHTA <tt><htmlurl url='mailto:yohta@bres.tsukuba.ac.jp'
        name='&lt;yohta@bres.tsukuba.ac.jp&gt;'></tt>
  <item>Yoshihisa NAKAGAWA <tt><htmlurl url='mailto:y-nakaga@ccs.mt.nec.co.jp'
        name='&lt;y-nakaga@ccs.mt.nec.co.jp&gt;'></tt>
  <item>Yoshikazu Goto <tt><htmlurl url='mailto:gotoh@ae.anritsu.co.jp'
        name='&lt;gotoh@ae.anritsu.co.jp&gt;'></tt>
  <item>Yoshimasa Ohnishi <tt><htmlurl url='mailto:ohnishi@isc.kyutech.ac.jp'
        name='&lt;ohnishi@isc.kyutech.ac.jp&gt;'></tt>
  <item>Yoshishige Arai <tt><htmlurl url='mailto:ryo2@on.rim.or.jp'
        name='&lt;ryo2@on.rim.or.jp&gt;'></tt>
  <item>Yuichi MATSUTAKA <tt><htmlurl url='mailto:matutaka@osa.att.ne.jp'
        name='&lt;matutaka@osa.att.ne.jp&gt;'></tt>
  <item>Yujiro MIYATA <tt><htmlurl url='mailto:miyata@bioele.nuee.nagoya-u.ac.jp'
        name='&lt;miyata@bioele.nuee.nagoya-u.ac.jp&gt;'></tt>
  <item>Yukihiro Nakai <tt><htmlurl url='mailto:nacai@iname.com'
        name='&lt;nacai@iname.com&gt;'></tt>
  <item>Yusuke Nawano <tt><htmlurl url='mailto:azuki@azkey.org'
        name='&lt;azuki@azkey.org&gt;'></tt>
  <item>Yuval Yarom <tt><htmlurl url='mailto:yval@cs.huji.ac.il'
        name='&lt;yval@cs.huji.ac.il&gt;'></tt>
  <item>Yves Fonk <tt><htmlurl url='mailto:yves@cpcoup5.tn.tudelft.nl'
        name='&lt;yves@cpcoup5.tn.tudelft.nl&gt;'></tt>
  <item>Yves Fonk <tt><htmlurl url='mailto:yves@dutncp8.tn.tudelft.nl'
        name='&lt;yves@dutncp8.tn.tudelft.nl&gt;'></tt>
  <item>Zach Heilig <tt><htmlurl url='mailto:zach@gaffaneys.com'
        name='&lt;zach@gaffaneys.com&gt;'></tt>
  <item>Zahemszhky Gabor <tt><htmlurl url='mailto:zgabor@code.hu'
        name='&lt;zgabor@code.hu&gt;'></tt>
  <item>Zhong Ming-Xun <tt><htmlurl url='mailto:zmx@mail.CDPA.nsysu.edu.tw'
        name='&lt;zmx@mail.CDPA.nsysu.edu.tw&gt;'></tt>
  <item>arci <tt><htmlurl url='mailto:vega@sophia.inria.fr'
        name='&lt;vega@sophia.inria.fr&gt;'></tt>
  <item>der Mouse <tt><htmlurl url='mailto:mouse@Collatz.McRCIM.McGill.EDU'
        name='&lt;mouse@Collatz.McRCIM.McGill.EDU&gt;'></tt>
  <item>frf <tt><htmlurl url='mailto:frf@xocolatl.com'
        name='&lt;frf@xocolatl.com&gt;'></tt>
  <item>Ege Rekk <tt><htmlurl url='mailto:aagero@aage.priv.no'
        name='&lt;aagero@aage.priv.no&gt;'></tt>
</itemize>

<sect><heading>386BSD Patch Kit Patch Contributors</heading>

<p>(in alphabetical order by first name):

<itemize>
  <item>Adam Glass <tt><htmlurl url='mailto:glass@postgres.berkeley.edu'
        name='&lt;glass@postgres.berkeley.edu&gt;'></tt>
  <item>Adrian Hall <tt><htmlurl url='mailto:adrian@ibmpcug.co.uk'
        name='&lt;adrian@ibmpcug.co.uk&gt;'></tt>
  <item>Andrey A. Chernov <tt><htmlurl url='mailto:ache@astral.msk.su'
        name='&lt;ache@astral.msk.su&gt;'></tt>
  <item>Andrew Herbert <tt><htmlurl url='mailto:andrew@werple.apana.org.au'
        name='&lt;andrew@werple.apana.org.au&gt;'></tt>
  <item>Andrew Moore <tt><htmlurl url='mailto:alm@netcom.com'
        name='&lt;alm@netcom.com&gt;'></tt>
  <item>Andy Valencia <tt><htmlurl url='mailto:ajv@csd.mot.com'
        name='&lt;ajv@csd.mot.com&gt;'></tt>
        <tt><htmlurl url='mailto:jtk@netcom.com'
        name='&lt;jtk@netcom.com&gt;'></tt>
  <item>Arne Henrik Juul <tt><htmlurl url='mailto:arnej@Lise.Unit.NO'
        name='&lt;arnej@Lise.Unit.NO&gt;'></tt>
  <item>Bakul Shah <tt><htmlurl url='mailto:bvs@bitblocks.com'
        name='&lt;bvs@bitblocks.com&gt;'></tt>
  <item>Barry Lustig <tt><htmlurl url='mailto:barry@ictv.com'
        name='&lt;barry@ictv.com&gt;'></tt>
  <item>Bob Wilcox <tt><htmlurl url='mailto:bob@obiwan.uucp'
        name='&lt;bob@obiwan.uucp&gt;'></tt>
  <item>Branko Lankester
  <item>Brett Lymn <tt><htmlurl url='mailto:blymn@mulga.awadi.com.AU'
        name='&lt;blymn@mulga.awadi.com.AU&gt;'></tt>
  <item>Charles Hannum <tt><htmlurl url='mailto:mycroft@ai.mit.edu'
        name='&lt;mycroft@ai.mit.edu&gt;'></tt>
  <item>Chris G. Demetriou <tt><htmlurl url='mailto:cgd@postgres.berkeley.edu'
        name='&lt;cgd@postgres.berkeley.edu&gt;'></tt>
  <item>Chris Torek <tt><htmlurl url='mailto:torek@ee.lbl.gov'
        name='&lt;torek@ee.lbl.gov&gt;'></tt>
  <item>Christoph Robitschko <tt><htmlurl url='mailto:chmr@edvz.tu-graz.ac.at'
        name='&lt;chmr@edvz.tu-graz.ac.at&gt;'></tt>
  <item>Daniel Poirot <tt><htmlurl url='mailto:poirot@aio.jsc.nasa.gov'
        name='&lt;poirot@aio.jsc.nasa.gov&gt;'></tt>
  <item>Dave Burgess <tt><htmlurl url='mailto:burgess@hrd769.brooks.af.mil'
        name='&lt;burgess@hrd769.brooks.af.mil&gt;'></tt>
  <item>Dave Rivers <tt><htmlurl url='mailto:rivers@ponds.uucp'
        name='&lt;rivers@ponds.uucp&gt;'></tt>
  <item>David Dawes <tt><htmlurl url='mailto:dawes@physics.su.OZ.AU'
        name='&lt;dawes@physics.su.OZ.AU&gt;'></tt>
  <item>David Greenman <tt><htmlurl url='mailto:dg@Root.COM'
        name='&lt;dg@Root.COM&gt;'></tt>
  <item>Eric J. Haug <tt><htmlurl url='mailto:ejh@slustl.slu.edu'
        name='&lt;ejh@slustl.slu.edu&gt;'></tt>
  <item>Felix Gaehtgens <tt><htmlurl
        url='mailto:felix@escape.vsse.in-berlin.de'
        name='&lt;felix@escape.vsse.in-berlin.de&gt;'></tt>
  <item>Frank Maclachlan <tt><htmlurl url='mailto:fpm@crash.cts.com'
        name='&lt;fpm@crash.cts.com&gt;'></tt>
  <item>Gary A. Browning <tt><htmlurl url='mailto:gab10@griffcd.amdahl.com'
        name='&lt;gab10@griffcd.amdahl.com&gt;'></tt>
  <item>Gary Howland <tt><htmlurl url='mailto:gary@hotlava.com'
        name='&lt;gary@hotlava.com&gt;'></tt>
  <item>Geoff Rehmet <tt><htmlurl url='mailto:csgr@alpha.ru.ac.za'
        name='&lt;csgr@alpha.ru.ac.za&gt;'></tt>
  <item>Goran Hammarback <tt><htmlurl url='mailto:goran@astro.uu.se'
        name='&lt;goran@astro.uu.se&gt;'></tt>
  <item>Guido van Rooij <tt><htmlurl url='mailto:guido@gvr.org'
        name='&lt;guido@gvr.org&gt;'></tt>
  <item>Guy Harris <tt><htmlurl url='mailto:guy@auspex.com'
        name='&lt;guy@auspex.com&gt;'></tt>
  <item>Havard Eidnes <tt><htmlurl url='mailto:Havard.Eidnes@runit.sintef.no'
        name='&lt;Havard.Eidnes@runit.sintef.no&gt;'></tt>
  <item>Herb Peyerl <tt><htmlurl url='mailto:hpeyerl@novatel.cuc.ab.ca'
        name='&lt;hpeyerl@novatel.cuc.ab.ca&gt;'></tt>
  <item>Holger Veit <tt><htmlurl url='mailto:Holger.Veit@gmd.de'
        name='&lt;Holger.Veit@gmd.de&gt;'></tt>
  <item>Ishii Masahiro, R. Kym Horsell
  <item>J.T. Conklin <tt><htmlurl url='mailto:jtc@cygnus.com'
        name='&lt;jtc@cygnus.com&gt;'></tt>
  <item>Jagane D Sundar <tt><htmlurl url='mailto: jagane@netcom.com '
        name='&lt; jagane@netcom.com &gt;'></tt>
  <item>James Clark <tt><htmlurl url='mailto:jjc@jclark.com'
        name='&lt;jjc@jclark.com&gt;'></tt>
  <item>James Jegers <tt><htmlurl url='mailto:jimj@miller.cs.uwm.edu'
        name='&lt;jimj@miller.cs.uwm.edu&gt;'></tt>
  <item>James W. Dolter
  <item>James da Silva <tt><htmlurl url='mailto:jds@cs.umd.edu'
        name='&lt;jds@cs.umd.edu&gt;'></tt> et al
  <item>Jay Fenlason <tt><htmlurl url='mailto:hack@datacube.com'
        name='&lt;hack@datacube.com&gt;'></tt>
  <item>Jim Wilson <tt><htmlurl url='mailto:wilson@moria.cygnus.com'
        name='&lt;wilson@moria.cygnus.com&gt;'></tt>
  <item>J&ouml;rg Lohse <tt><htmlurl
        url='mailto:lohse@tech7.informatik.uni-hamburg.de'
        name='&lt;lohse@tech7.informatik.uni-hamburg.de&gt;'></tt>
  <item>J&ouml;rg Wunsch <tt><htmlurl
        url='mailto:joerg_wunsch@uriah.heep.sax.de'
        name='&lt;joerg_wunsch@uriah.heep.sax.de&gt;'></tt>
  <item>John Dyson - <tt><htmlurl url='mailto:formerly dyson@ref.tfs.com'
        name='&lt;formerly dyson@ref.tfs.com&gt;'></tt>
  <item>John Woods <tt><htmlurl url='mailto:jfw@eddie.mit.edu'
        name='&lt;jfw@eddie.mit.edu&gt;'></tt>
  <item>Jordan K. Hubbard <tt><htmlurl url='mailto:jkh@whisker.hubbard.ie'
        name='&lt;jkh@whisker.hubbard.ie&gt;'></tt>
  <item>Julian Elischer <tt><htmlurl url='mailto:julian@dialix.oz.au'
        name='&lt;julian@dialix.oz.au&gt;'></tt>
  <item>Julian Stacey <tt><htmlurl url='mailto:jhs@freebsd.org'
        name='&lt;jhs@freebsd.org&gt;'></tt> 
  <item>Karl Dietz <tt><htmlurl url='mailto:Karl.Dietz@triplan.com'
        name='&lt;Karl.Dietz@triplan.com&gt;'></tt>
  <item>Karl Lehenbauer <tt><htmlurl url='mailto:karl@NeoSoft.com'
        name='&lt;karl@NeoSoft.com&gt;'></tt>
        <tt><htmlurl url='mailto:karl@one.neosoft.com'
        name='&lt;karl@one.neosoft.com&gt;'></tt>
  <item>Keith Bostic <tt><htmlurl url='mailto:bostic@toe.CS.Berkeley.EDU'
        name='&lt;bostic@toe.CS.Berkeley.EDU&gt;'></tt>
  <item>Ken Hughes
  <item>Kent Talarico <tt><htmlurl url='mailto:kent@shipwreck.tsoft.net'
        name='&lt;kent@shipwreck.tsoft.net&gt;'></tt>
  <item>Kevin Lahey <tt><htmlurl url='mailto:kml%rokkaku.UUCP@mathcs.emory.edu'
        name='&lt;kml%rokkaku.UUCP@mathcs.emory.edu&gt;'></tt>
        <tt><htmlurl url='mailto:kml@mosquito.cis.ufl.edu'
        name='&lt;kml@mosquito.cis.ufl.edu&gt;'></tt>
  <item>Marc Frajola <tt><htmlurl url='mailto:marc@dev.com'
        name='&lt;marc@dev.com&gt;'></tt>
  <item>Mark Tinguely <tt><htmlurl url='mailto:tinguely@plains.nodak.edu'
        name='&lt;tinguely@plains.nodak.edu&gt;'></tt>
        <tt><htmlurl url='mailto:tinguely@hookie.cs.ndsu.NoDak.edu'
        name='&lt;tinguely@hookie.cs.ndsu.NoDak.edu&gt;'></tt>
  <item>Martin Renters <tt><htmlurl url='mailto:martin@tdc.on.ca'
        name='&lt;martin@tdc.on.ca&gt;'></tt>
  <item>Michael Clay <tt><htmlurl url='mailto:mclay@weareb.org'
        name='&lt;mclay@weareb.org&gt;'></tt>
  <item>Michael Galassi <tt><htmlurl url='mailto:nerd@percival.rain.com'
        name='&lt;nerd@percival.rain.com&gt;'></tt>
  <item>Mike Durkin <tt><htmlurl url='mailto:mdurkin@tsoft.sf-bay.org'
        name='&lt;mdurkin@tsoft.sf-bay.org&gt;'></tt>
  <item>Naoki Hamada <tt><htmlurl url='mailto:nao@tom-yam.or.jp'
        name='&lt;nao@tom-yam.or.jp&gt;'></tt>
  <item>Nate Williams <tt><htmlurl url='mailto:nate@bsd.coe.montana.edu'
        name='&lt;nate@bsd.coe.montana.edu&gt;'></tt>
  <item>Nick Handel <tt><htmlurl url='mailto:nhandel@NeoSoft.com'
        name='&lt;nhandel@NeoSoft.com&gt;'></tt> 
        <tt><htmlurl url='mailto:nick@madhouse.neosoft.com'
        name='&lt;nick@madhouse.neosoft.com&gt;'></tt>
  <item>Pace Willisson <tt><htmlurl url='mailto:pace@blitz.com'
        name='&lt;pace@blitz.com&gt;'></tt>
  <item>Paul Kranenburg <tt><htmlurl url='mailto:pk@cs.few.eur.nl'
        name='&lt;pk@cs.few.eur.nl&gt;'></tt>
  <item>Paul Mackerras <tt><htmlurl url='mailto:paulus@cs.anu.edu.au'
        name='&lt;paulus@cs.anu.edu.au&gt;'></tt>
  <item>Paul Popelka <tt><htmlurl url='mailto:paulp@uts.amdahl.com'
        name='&lt;paulp@uts.amdahl.com&gt;'></tt>
  <item>Peter da Silva <tt><htmlurl url='mailto:peter@NeoSoft.com'
        name='&lt;peter@NeoSoft.com&gt;'></tt>
  <item>Phil Sutherland <tt><htmlurl url='mailto:philsuth@mycroft.dialix.oz.au'
        name='&lt;philsuth@mycroft.dialix.oz.au&gt;'></tt>
  <item>Poul-Henning Kamp<tt><htmlurl url='mailto:phk@FreeBSD.ORG'
        name='&lt;phk@FreeBSD.ORG&gt;'></tt>
  <item>Ralf Friedl <tt><htmlurl url='mailto:friedl@informatik.uni-kl.de'
        name='&lt;friedl@informatik.uni-kl.de&gt;'></tt>
  <item>Rick Macklem <tt><htmlurl url='mailto:root@snowhite.cis.uoguelph.ca'
        name='&lt;root@snowhite.cis.uoguelph.ca&gt;'></tt>
  <item>Robert D. Thrush <tt><htmlurl url='mailto:rd@phoenix.aii.com'
        name='&lt;rd@phoenix.aii.com&gt;'></tt>
  <item>Rodney W. Grimes <tt><htmlurl url='mailto:rgrimes@cdrom.com'
        name='&lt;rgrimes@cdrom.com&gt;'></tt>
  <item>Sascha Wildner <tt><htmlurl url='mailto:swildner@channelz.GUN.de'
        name='&lt;swildner@channelz.GUN.de&gt;'></tt>
  <item>Scott Burris <tt><htmlurl url='mailto:scott@pita.cns.ucla.edu'
        name='&lt;scott@pita.cns.ucla.edu&gt;'></tt>
  <item>Scott Reynolds <tt><htmlurl url='mailto:scott@clmqt.marquette.mi.us'
        name='&lt;scott@clmqt.marquette.mi.us&gt;'></tt>
  <item>Sean Eric Fagan <tt><htmlurl url='mailto:sef@kithrup.com'
        name='&lt;sef@kithrup.com&gt;'></tt>
  <item>Simon J Gerraty <tt><htmlurl url='mailto:sjg@melb.bull.oz.au'
        name='&lt;sjg@melb.bull.oz.au&gt;'></tt>
        <tt><htmlurl url='mailto:sjg@zen.void.oz.au'
        name='&lt;sjg@zen.void.oz.au&gt;'></tt>
  <item>Stephen McKay <tt><htmlurl url='mailto:syssgm@devetir.qld.gov.au'
        name='&lt;syssgm@devetir.qld.gov.au&gt;'></tt>
  <item>Terry Lambert <tt><htmlurl url='mailto:terry@icarus.weber.edu'
        name='&lt;terry@icarus.weber.edu&gt;'></tt>
  <item>Terry Lee <tt><htmlurl url='mailto:terry@uivlsi.csl.uiuc.edu'
        name='&lt;terry@uivlsi.csl.uiuc.edu&gt;'></tt>
  <item>Tor Egge <tt><htmlurl url='mailto:Tor.Egge@idi.ntnu.no'
        name='&lt;Tor.Egge@idi.ntnu.no&gt;'></tt>
  <item>Warren Toomey <tt><htmlurl url='mailto:wkt@csadfa.cs.adfa.oz.au'
        name='&lt;wkt@csadfa.cs.adfa.oz.au&gt;'></tt>
  <item>Wiljo Heinen <tt><htmlurl url='mailto:wiljo@freeside.ki.open.de'
        name='&lt;wiljo@freeside.ki.open.de&gt;'></tt>
  <item>William Jolitz <tt><htmlurl url='mailto:withheld'
        name='&lt;withheld&gt;'></tt>
  <item>Wolfgang Solfrank <tt><htmlurl url='mailto:ws@tools.de'
        name='&lt;ws@tools.de&gt;'></tt>
  <item>Wolfgang Stanglmeier <tt><htmlurl url='mailto:wolf@dentaro.GUN.de'
        name='&lt;wolf@dentaro.GUN.de&gt;'></tt>
  <item>Yuval Yarom <tt><htmlurl url='mailto:yval@cs.huji.ac.il'
        name='&lt;yval@cs.huji.ac.il&gt;'></tt>
</itemize>