-
Notifications
You must be signed in to change notification settings - Fork 1
/
donations.html
4974 lines (4956 loc) · 121 KB
/
donations.html
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- 97-05-27: People who have donated stuff to OpenBSD -->
<head>
<meta name=KEYWORDS content="OpenBSD,donations,operating system,Unix,Un*x,BSD,linux,secure,secure,secure">
<meta name="robots" content="nofollow">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Doações para o OpenBSD</title>
</head>
<body bgcolor="#ffffff" text="#000000" link="#23238E">
<a href="index.html"><img alt="[OpenBSD]" height="30" width="141" src="../images/smalltitle.gif" border="0"></a>
<p>
<h2><font color="#e00000">Doações</font></h2>
<hr>
O OpenBSD não possui nenhum grande patrocinador nem um modelo de
negócios. Ele é um esforço de desenvolvimento de software guiado
por voluntários e orientado à qualidade, que acredita que o valor
que ele provê à comunidade resultará em contribuições para mantê-lo
vivo.
<p>
Naturalmente, o projeto OpenBSD necessita de fundos para operar devido
aos custos de eletricidade, custos de acesso à internet e os problemas
de atualização de hardware que todos nós conhecemos. Por essa razão, o
projeto vende CDs, Camisetas e pôsteres a cada 6 meses quando o projeto
faz um lançamento.
Quando você compra um CD do OpenBSD em uma conferência ou de alguma das
lojas listadas na nossa
<a href="../orders.html">página de pedidos de CD-ROM</a>, você está
ajudando a aumentar as chances do OpenBSD continuar a fazer novos
lançamentos.
Os lucros de todas as nossas vendas vêm através do nosso principal
fabricante/distribuidor de CD-ROM, o Computer Shop de Calgary, e
então financiam diretamente o líder do projeto. O dinheiro restante
é usado para pagar os custos de infraestrutura, junto com a assistência
da <a href="http://www.openbsdfoundation.org">Fundação OpenBSD</a>.
<p>
Alternativamente, também é possível fazer doações financeiras ou de
<a href="../want.html">hardware</a>, nesse caso o seu nome será listado
na nossa <a href="donations.html">Página de Doações</a>.
Se você deseja que sua doação seja referenciada a outro nome, ou que um
link para a sua página Web seja mostrado, envie um comentário junto com
a sua transação. (Nós vamos verificar as URLs que as pessoas nos passam;
por motivos de impostos, as doações precisam se parecer com doações, e
nós não vamos permitir que nossa página de doações se transforme em
uma página de links publicitários.)
<p>
<b>Em todos os casos, essas contribuições para o projeto são
consideradas como de caridade.</b>
O projeto OpenBSD não fornece nada em específico em retorno a essas
doações, mas simplesmente continua a escrever bom software livre para o
mundo.
<p>
<hr>
Existem cinco modos para fazer uma doação financeira ao projeto:
<ul>
<li><font color="#e00000">Cheques</font><br>
Simplesmente envie um cheque de doação em CAD/EUR/USD endereçado a
Theo de Raadt, porque<br>
os cheques endereçados ao "OpenBSD" não podem ser resgatados.
(Ou contate <a href="mailto:[email protected]">Theo de Raadt</a>
para outras ideias.)
<p>
Theo de Raadt<br>
OpenBSD<br>
812 23rd Ave SE<br>
Calgary, Alberta, Canada T2G 1N8<p>
<p>
<li><font color="#e00000">Cartão de crédito</font><br>
Nosso sistema de pedidos online é capaz de realizar transações seguras
para debitar
<a href="https://https.openbsd.org/cgi-bin/donations">
doações na maioria dos cartões de crédito</a>.<br>
Ou você pode combinar sua doação com
<a href="https://https.openbsd.org/cgi-bin/order">uma compra de um de
nossos outros itens</a>.
<p>
<li><font color="#e00000">IBAN + BIC</font><br>
Para transferências bancárias internacionais, você pode usar
<a href="../bank-donation.html">as transferências IBAN ou SWIFT/BIC</a>.
<p>
<li><font color="#e00000">PayPal</font>
<br> Agora doações via PayPal podem ser feitas para ajudar o Projeto OpenBSD.
Elas podem ser realizadas uma de cada vez ou regularmente (automaticamente,
uma vez por mês) seguindo sua aprovação prévia no sistema do PayPal.
Os valores das doações estarão expressos em dólares canadenses, euro
ou dólar americano (CAD/EUR/USD), podendo ser feitas na página da
<a HREF=http://www.openbsdfoundation.org/donations.html>Fundação OpenBSD</A>.
<p>
<li><font color="#e00000">A Fundação OpenBSD</font><br>
Para as pessoas impossibilitadas de efetuar as doações ao projeto, a
<a href="http://www.openbsdfoundation.org">Fundação OpenBSD</a> é uma
<a href="http://en.wikipedia.org/wiki/Non-profit_organization#Canada">
associação canadense sem fins lucrativos</a> que pode aceitar grandes
contribuições financeiras e emitir recibos. Em certas situações, os
recibos podem ser considerados como justificativas de custos
profissionais, então isso é certamente uma consideração para algumas
organizações ou comércios. Podem existir benefícios em termos de
exposição para as corporações contribuintes, pois a Fundação pode
estar interessada em participar dos comunicados da imprensa.
<p>
A Fundação utiliza essas contribuições para ajudar o OpenBSD de
acordo com as regras de contrato da Fundação; tipicamente, isso
significa que eles ajudam com os custos de algumas
<a href="../hackathons.html">hackathons</a> e com as necessidades da
infraestrutura. Contate os diretores da fundação no endereço
<a href="mailto:[email protected]">[email protected]</a>
para mais informações.
</ul>
<hr>
<p>
Pelo motivo de que as doações não são dedutíveis como contribuições de
caridade, elas podem ser dedutíveis como custos operacionais (ou procure
a <a href="http://www.openbsdfoundation.org">Fundação OpenBSD</a>
para uma maneira melhor de fazer uma doação), e se alguma pessoa tem
essa intenção, ela é aconselhada a procurar o seu contador. Em alguns
países, as corporações podem fazer doações dedutíveis sob os termos
da "Boa Vontade". Aqueles que precisam de recibos exatos de contribuição
devem conversar com a
<a href="http://www.openbsdfoundation.org">Fundação OpenBSD</a>.
<p>
Nós temos uma <a href="../want.html">lista de hardwares</a> que
gostaríamos de ver doados para o projeto. Gostaríamos que as pessoas
verificassem essa lista e a comparassem com o seu estoque pessoal ou
corporativo de peças velhas. Entre outras razões, a lista existe para
que os membros do projeto possam adquirir dispositivos que devem ser
suportados pelo sistema, permitindo que as futuras versões possam vir
com um melhor suporte a esses dispositivos.
<p>
<a name="people"></a>
As seguintes pessoas e organizações (listadas em ordem cronológica)
contribuíram com dinheiro, equipamentos ou serviços para os projetos
OpenBSD, OpenSSH, OpenBGPD ou OpenOSPFD.
<p>
<hr>
<table border=0 cellspacing=0 cellpadding=2 width="95%">
<tr>
<td valign="top" width="25%">
<ul>
<li><a rel="nofollow" href="http://www.theos.com/deraadt/">Theo de Raadt</a>
<li>Danny Dulai
<li>Willowglen Singapore
<li>Mike Price
<li><a rel="nofollow" href="http://www.rtmx.com">RTMX, Inc.</a>
<li><a rel="nofollow" href="http://www.courtesan.com/todd">Todd Miller</a>, author of <a rel="nofollow" href="http://www.courtesan.com/sudo/">sudo</a>.
<li>Jeff Homer
<li><a rel="nofollow" href="http://www.pacifier.com/">Pacifier Computers</a>
<li>Andy Sharp
<li>Clint Adam Smith
<li>Fred Holliss
<li>Denton Gentry
<li><a rel="nofollow" href="http://www.oss.de">Open System Solutions GmbH</a>
<li>Rob Urban
<li>Chris Townsend
<li>Mark Evenson
<li>Tim Spencer
<li>John Stone
<li>Ken Stailey
<li>Jason Downs
<li><a rel="nofollow" href="http://www.pw.com/">Price Waterhouse</a>
<li>Algorithmics Ltd.
<li>D.J. Gregor
<li>Hatem Zaghloul
<li>Michael Stolarchuk
<li><a rel="nofollow" href="http://www.appli.se/">Applitron Datasystem AB</a>
<li>Network Management
<li>Chris Petro
<li>Ian McWilliam
<li>Richard Johnson
<li>Matthew Patton
<li>Wojciech Tryc
<li>Undergraduate Projects Lab, UW Madison Computer Sciences Dept
<li>Matt Beschta
<li>Todd Fries
<li>Mark Cordingly
<li><a rel="nofollow" href="http://www.etext.org/~pauls/">Paul Southworth</a>
<li>Taco van Ieperen
<li>Hiroo Yamagata
<li>Marco S. Hyman
<li>Secure Networks, Inc.
<li>Ben Black
<li>Michael Shalayeff
<li>New Hack City
<li>Michael Park
<li>Josh Lynch
<li>Matthew Potter
<li>Janne Johansson
<li><a rel="nofollow" href="http://www.petersson.se/~zap">Jonas Petersson</a>
<li>Matti Ristinmaa
<li><a rel="nofollow" href="http://www.stacken.kth.se">Stacken, KTH</a>
<li><a rel="nofollow" href="http://niklas.hallqvist.se">Niklas Hallqvist</a>
<li><a rel="nofollow" href="http://www.cyclic.com">Cyclic Software</a>, authors of CVS.
<li><a rel="nofollow" href="http://www.ascend.com">Ascend Communications</a>
<li><a rel="nofollow" href="http://www.monkey.org">The primates at monkey.org</a>
<li>Louis Bertrand
<li>Neil Hendin
<li>Jennifer Myers
<li><a rel="nofollow" href="http://www.ieng.com/">Internet Engineering Group</a>
<li><a rel="nofollow" href="http://www.cwiq.com/">CWI (NetWorkShop)</a>
<li>Kenneth R. Westerback
<li>Diana Eichert
<li>R. Robert Willmann Jr
<li>Cambridge Technology Partners, Enterprise Security Services
<li>D. J. Bernstein, author of <a rel="nofollow" href="http://www.qmail.org">qmail</a>.
<li>NMG Sweden AB
<li>Brian Mitchell
<li>Chris Cappuccio
<li><a rel="nofollow" href="http://www.darwinsys.com/">Ian Darwin</a>
<li>Jason Taylor
<li><a rel="nofollow" href="http://www.empirenet.net/">Empire Net</a>
<li><a rel="nofollow" href="http://www.netsec.net">Network Security Technologies, Inc.</a>
<li><a rel="nofollow" href="http://www.crt.se">Carlstedt Research & Technology AB</a>
<li><a rel="nofollow" href="http://www.thewrittenword.com">The Written Word</a>
<li><a rel="nofollow" href="http://www.knowledge.com">Knowledge Matters Ltd</a>
<li><a rel="nofollow" href="http://www.ey.com">Ernst & Young</a>
<li><a rel="nofollow" href="http://www.taxistockholm.se">Taxi Stockholm</a>
<li>Invertex
<li>Thorsten Lockert
<li>Hugh Graham
<li>Keith A. Watson
<li>Daryl Sando, <a rel="nofollow" href="http://www.mbaj.com">Martin Boal Anthony & Johnson Architects</a>
<li>N.W. Choe, <a rel="nofollow" href="http://www.environs.com/">Online Environs, Inc.</a>
<li>Hal Pomeranz
<li><a rel="nofollow" href="http://www.usenix.org">The USENIX Association</a>
<li><a rel="nofollow" href="http://www.thought.net/jason">Jason Wright</a>
<li>Adam Rogoyski
<li>Andrew M. Hoerter
<li>Douglas Beaver
<li>Michael Kennett
<li><a rel="nofollow" href="http://www.it.kth.se/">IT, KTH</a>
<li>Jeff Schneiter
<li>Rick Jones
<li>Chris Linn
<li>Richard Kolb II
<li>Gregory Perry
<li>Nicholas Bellamy
<li><a rel="nofollow" href="http://www.citi.umich.edu/u/honey">Peter Honeyman</a>
<li>Tamotsu Kanoh
<li>Wouter Slegers
<li>Tom Willis
<li>Geoffrey W. Steckel
<li>Geff Underwood
<li>Ben Hutchinson
<li>Francisco Roque
<li>David Goldberg
<li>Jason Ackley
<li>Allen Wong
<li>Ronald M Penna Jr
<li>Michael DuFresne
<li>Shayne White
<li>Aaron Campbell
<li>Scott Brown
<li>The Linux Store
<li>David Alten
<li><a rel="nofollow" href="http://www.ubergeeks.com">Adrian Filipi-Martin</a>
<li>Gantcho I. Mantchorov
<li>Jeff Sickel
<li>David A. Madore
<li>S. Ryan Quick
<li>Anthony Panos
<li>Chad Gross
<li>Faried Ibrahim
<li>J Lincoln Brown
<li>Christopher William Hisgen
<li>Niall Murphy
<li>Christian Stork
<li>Matt Penna
<li>Chris Hancock
<li>Kazuhisa Ichikawa
<li>Jos Polman
<li>Mike DuFresne
<li>Art Freeman
<li>Ho Soo Khim
<li>Jim Lawson
<li>John Krug
<li>Fan Li Tai
<li><a rel="nofollow" href="http://www.wad-s.com">John's Industrial Surplus</a>
<li><a rel="nofollow" href="http://www.hiverworld.com/">Hiverworld</a>
<li>Angelos D. Keromytis
<li>The City of Calgary (Waterworks)
<li>Andrew W. Smith
<li>Brian Jacoby
<li>John Clifton
<li>Ike Naar
<li>Henry F Lyles III
<li>Rodney Hopkins
<li>Rusty
<li>John Ioannidis
<li>SoftQuad Software Inc.
<li>Sean Macguire, author of <a rel="nofollow" href="http://www.bb4.com">Big Brother</a>.
<li>John Kerbawy
<li>Marc Schroeder
<li>Darren Larson
<li>Zvonimir Hlousek
<li>Yoshimasa Kawamoto
<li>Corey D Brenner
<li>Robert L. Hume
<li>Mark Anderson
<li>Paul Brunk
<li>Toni Teski
<li>Michael Williams
<li>William Lloyd
<li>Michael Gwilliam
<li>Donald R. Coulson
<li>Kjell E. Grotland
<li>Nizam Sayeed
<li>Dale Smyth
<li>Brian Cohen
<li>Tom Rutledge
<li>Alexander C. Derbes
<li>D. Leu
<li>David Rabiega
<li>Jean-Marc Dufour
<li>J. Maynard Gelinas
<li>Tim Mathams
<li>Eugene D. Regad
<li><a rel="nofollow" href="http://www.obtuse.com/">Obtuse Systems Corporation</a>
<li><a rel="nofollow" href="http://www.carleton.edu">Carleton College</a>
<li>Network Applications Group, <a rel="nofollow" href="http://www.illuminet.com">Illuminet, Inc.</a>
<li><a rel="nofollow" href="http://www.elab.kth.se/">Elab, KTH</a>
<li><a rel="nofollow" href="http://www.uchsc.edu/">University of Colorado Health Sciences Center</a>
<li><a rel="nofollow" href="http://www.cfug.org">The Connecticut Free UNIX Group</a>
<li>Henry M. Pierce
<li>Aaron Summers
<li>Richard B. Dervan
<li>Daniel B. Giffin
<li><a rel="nofollow" href="http://www.zedz.net/">Alex de Joode</a>
<li>Ate Brink
<li>Carlos Fernández
<li>Douglas Shawhan
<li>Pedro Augusto Oliveira Alves
<li>Karl Wagner
<li>W. Frank Warren
<li>Jerry Alexandratos
<li>John Martínez
<li>Steven O. Pauly
<li>Go Watanabe
<li>Andrew Hermetz
<li>Xavier Beaudouin
<li>Robert Depenbrock
<li>Jussi Jaakonaho
<li>Sang Thong Chang
<li>Chris K. Young
<li>Brian LoBue
<li>David Hankins
<li>Matthew Cerha
<li>Bala Ganeshan
<li>Louis Eagle
<li>David Buckley
<li>Francesco G. Benedini
<li>Ian Main
<li>Colin Phipps
<li>Etienne Moreau
<li>Jean Chouanard
<li>James Graves
<li>Noah Gibbs
<li>Luis E. G. Ontanon
<li>Kourosh Ghassemieh
<li>Simon Carr
<li>Steve Singles
<li>Stephen Hooper
<li>Rajat Datta
<li>Pitrich Karl
<li>David R. Linn
<li>James Duncan Murphy
<li>Christopher Stillson
<li>Eric Brophy
<li>Norman Jaffe
<li>Stuart Eichert
<li>Joseph Cosco
<li>Kjell Wooding
<li>Tumbleweed Electron Wranglers
<li>Scott R. Thomas
<li>Josh Archambault
<li>Paul Wang
<li>BroadBand Office, Inc.
<li>Shane Guthrie
<li>Breen C. Ouellette
<li>Aaron Segura
<li><a rel="nofollow" href="http://www.vortex.de/">ICP-Vortex</a>
<li>Robert Malmgren
<li><a rel="nofollow" href="http://www.kvarnhjulet.se/">Montessoriskolan Kvarnhjulet</a>
<li>Chuck Gagnon
<li>Paul K. Landers
<li>Rick Bradley
<li>Peter van Schaick
<li>John Lengeling
<li><a rel="nofollow" href="http://www.xircom.com">Xircom</a>
<li>Hugh Kennedy
<li>Nathan Bates
<li>Will Sarka
<li>Nathaniel Johnston
<li>Bryan Blackburn
<li>Abdul Rehman Gani
<li>Wolfgang Teschner
<li>Joseph Hansen
<li>Brian Atkins
<li>Ryan McRonald
<li>Ralph D. Jenson
<li>John A. Barbuto
<li>Paul Weissmann
<li>Dwight Leu
<li>Adam Vissing
<li>Chris Jones
<li>Shawn K. Tagseth
<li>Wesley Connell
<li>Daniel Liebster
<li>Karl Pitrich
<li>Robert MacLeod
<li>Scott Worley
<li>Fujiwara Teruyoshi
<li>Sylvain Dusart
<li>Takao Hotta
<li>Peter Burtt
<li>Tor Houghton
<li>Aaron Culliney
<li><a rel="nofollow" href="http://www.2keys.ca">2Keys Corporation</a>
<li>Michael S. Bradley, Jr.
<li>Brent Huffman
<li>Fabio da Silva Cunha
<li>Bill Hamilton
<li>David K Lents
<li>Jason Gaxiola
<li>Denny M. Hallett
<li>Federico Grauf
<li>Jonathan Shoemaker
<li>Todd Owen
<li>Daniel J. Gregor, Jr
<li>Thomas Brupbacher
<li>Peter Stern
<li>Julien Nadeau
<li>Chris Wicklein
<li>Henric Jungheim
<li>Robert L. Lineberger
<li>Kevin K Smith
<li>Peter Strömberg
<li>Linh Pham
<li>Boris Fabbro
<li>Jeff Garzik
<li>Jean-Claude Christophe
<li>Colin Coghill
<li>Kent Hundley
<li>Paul Hewitt
<li>Carlos Gonzales
<li>Tom Pettigrew
<li>Abel O. Nelson
<li>Espen Randen
<li>Adam N. Thompson
<li>Dave Deihl (Carleton College)
<li>Ryan Erwin
<li>Jonathan Katz
<li>Allan Peda
<li>Brian Fritz
<li>Christopher D. Morgan
<li>Darian Rackham
<li>David Fetrow
<li>David Starnar
<li>Donald F. Allen II
<li>Douglas Putnam
<li>Ed Wehbe
<li>Erik Biever
<li>Eugene Dragoev
<li>Hakan Hamurcu
<li>Ian Jensen
<li>Igor Popovic
<li>J. Neal Richter
<li>Jason Stout
<li>Jim Pazarena
<li>Joey Morris
<li>John E. Vincent
<li>John Farragher
<li>John Hutcherson
<li>Joseph Moran
<li>Justin Simms
<li>Kevin Reis
<li>Lamar Zabielski
<li>Mark Dalton
<li>Martin A. Flynn
<li>Mohammad Rizal Othman
<li>Neal Delmonico
<li><a rel="nofollow" href="http://www.marty44.net">Martin Boehme</a>
<li>Markus Förster
<li>Paul Drake
<li>Roman Kurjewicz
<li>Scott Eitel
<li>Sean Russel
<li>Stephen Fuqua
<li>Kirk Strauser
<li>Albert Chin-A-Young
<li>Waldemar Brodkorb
<li>William B. Pietri
<li>First Options Chicago
<li>Exotec, Inc
<li><a rel="nofollow" href="http://www.wowk.com">George A. Wowk</a>
<li>Jay L. Jaroslav
<li>Chuck Yerkes
<li>Nicholas Merrill
<li><a rel="nofollow" href="http://www.calyx.net">Calyx Internet Access</a>
<li>Brad & Wayne Slavin, WebHEAT.com
<li>William H. Backman
<li>Michael Roark
<li>Yourie Fominouf
<li>Doug Lee
<li>Manuel A. Ulloa
<li>Christopher J. Rooney
<li>Jon T. Radel
<li>Luke R. Bakken
<li>Alistair Kerr
<li><a rel="nofollow" href="http://sunsite.ualberta.ca">The University Of Alberta SunSITE</a>
<li>Dimitar Stoikov
<li>Evan P. Cordes
<li>Sean Cavanaugh
<li>Garance Drosehn
<li>Mark Allen
<li>Guan Yang
<li>Darrin Johnson
<li><a rel="nofollow" href="http://www.adaptec.com">Adaptec, Inc</a>
<li>William Dell Wisner
<li>Dan Bylund
<li>William Woods
<li>Sidney A. Cammeresi IV
<li>Mats O Jansson
<li><a rel="nofollow" href="http://www.asacomputers.com">ASA Computers, Inc</a>
<li>Chad Dougherty
<li>Canada Disk & Tape
<li>Doug Wong
<li>Nigel Canning
<li>Magnus Bodin
<li>Rick Owens
<li>Brad Passwaters
<li>James Trumpbour
<li>Martin Lightheart
<li>Jason Chan
<li>Andre Lucas
<li>Hans Kremers
<li>Dane Foster
<li>Takuzo Ohara
<li>Marco Snoek
<li>Yary Hluchan
<li>Andreas Forsgren
<li>Drew Poland
<li>Belinda Mccardle
<li>David Bryan
<li>Heather Bryan
<li>Sam Wilson
<li>Thomas Insel
<li>Matthias Kilian
<li>Brandt Kurowski
<li>Grant Boyle
<li>B. Johannessen
<li>Flavio Curti
<li>Al Mutairi Mohammad
<li><a rel="nofollow" href="http://www.hawk.com">Hawk Technologies, Inc</a>
<li>John Todd
<li>David Kamishlian
<li>Val Tirman
<li>James L. Fisher
<li>Ramon F. McDougall
<li>m²ic M² Ingénierie et Conseil
<li>David Medberry
<li>James Spann
<li>Matthieu Herrb
<li>Michael Tackett
<li>Eric Wayte
<li>Ian Guthrie
<li>Morten A. Middelthon, <a rel="nofollow" href="http://www.freenix.no">Freenix Norge</a>
<li>Norman A. Abookire
<li>Patrick Maupin
<li>Scott A. Morris
<li>Javier Vázquez
<li>Scott Balfour
<li>Patrick Maher & <a rel="nofollow" href="http://www.pcmcia.org">PCMCIA Org.</a>
<li>Brad Cavanagh
<li><a rel="nofollow" href="http://www.highpoint-tech.com/">HighPoint-Tech</a>
<li>Ron Skoog
<li>Gardner Cohen
<li>ADMtek
<li>Scott McMahon
<li>Abraham Al-Saleh
<li>Alf Schlichting
<li>Andre Marenke
<li>Andrew Wingate
<li>BS Web Services
<li>Benedikt Heinen
<li>Benjamin Crowell
<li>Bill Saunders
<li>Blake Willis
<li>Bradley Schneider
<li>Brandon J Creighton
<li>Carson Chittom
<li>Chris Ferebee
<li>Christian Rueger
<li>Cristian Bratu
<li>Dan Price
<li>Dave Shanker
<li>David Cathcart
<li>David Steinberg
<li>Doug Clements
<li>Francis Kayiwa
<li>Giorgio Balestrieri
<li><a rel="nofollow" href="http://www.dixongroup.net">DixonGroup Consulting</a>
<li>Leo R. Lundgren
<li><a rel="nofollow" href="http://www.maxvr.de/">Wolfgang Anger</a>
<li><a rel="nofollow" href="http://www.sickness.it/">Diego Righi</a>
<li>L. V. Lammert, <a rel="nofollow" href="http://www.omnitec.net/">Omnitec Corporation</a>
<li><a rel="nofollow" href="http://www.phinzup.com/">Mike Pugh</a>
<li>Kamal Hilmi Othman
<li><a rel="nofollow" href="http://www.netmachine.pt/">Netmachine</a>
<li>DREAMWVR.COM
<li>Aurilee Gamboa
<li>Jason Dixon
<li>Jesse Kornblum
<li>Russell Davies
<li>John P Callahan
<li>Ted Bardusch
<li>David Love
<li>Scott Wells
<li>Damien Sullivan
<li>David Shao
<li>Erik Kennedy
<li>David Neal
<li>Gregg Dippold
<li>Jason Stevens
<li>Ziemowit Laski
<li>Jamie Madden
<li>Matt Hess
<li>Ron Watkins
<li>Timothy Dyck
<li>Jari Kivela
<li>Joshua Hill
<li>David Thomson
<li>Patrick Wagstrom
<li>Vern Staats
<li>Steven M. Jones
<li>Jack Cherney
<li>Kirklan D. Reeves
<li>Gilles Peskine
<li>Patrick J. Conley
<li>Felipe Saint-Jean
<li>Chad C. Keep
<li>Steven Lee Salkin, Jr.
<li>Edward Berner
<li>Guenter Schallert
<li>Robert Pierce, 2Keys
<li>Homer W Smith
<li>Mark Rustad
<li>Brenda Larcom
<li>John Bruce
<li>Paul Grinnell
<li>Bengt Kleberg
<li>William del Solar
<li>Warren Hardy
<li>Martin O'Nions
<li>Robert Weiler
<li>Don Shockey
<li>Daniel B. Freeman
<li>Steven J. Hill
<li>S. Spans
<li>Ralph Jenson
<li>Enno Rey
<li>Matthias Hölzl
<li>Bogica Gojkov
<li>Martin Crossley
<li>Tor Roberts
<li>Eric Jackson
<li>Christian Gruber
<li>Willard Dennis
<li>Al Lipscomb
<li><a rel="nofollow" href="http://www.athabascau.ca">University of Athabasca</a>
<li>Mike Nicewonger
<li>Joshua Stein
<li>Adam Thompson
<li>Ola Storkitt
<li><a rel="nofollow" href="http://www.nocom.se">Nocom</a>
<li>Mark Baenziger
<li>Kolbjorn Halvorsen
<li>Samuel Sanders
<li>Daniel Weeks
<li>Renaissance Energy
<li>Joe Warren-Meeks
<li>Patrick Hawley
<li><a rel="nofollow" href="http://www.3ware.com">3Ware</a>
<li><a rel="nofollow" href="http://www.ami.com">AMI</a>
<li>Stephane Matis
<li>Mark Stovall
<li>Armando Atienza
<li>Wesley Griffin
<li>Ryan M. Waters
<li>Roger Mach
<li>Neil Ryan
<li>Thomas D Malin
<li>Emily Ratliff
<li><a rel="nofollow" href="http://www.jackmccarthy.com/">Jack McCarthy</a>
<li>Warren Bishop
<li>Roberto Gelleni
<li>David M. Anderson
<li>Karl Hoffman
<li>Marc Provitt
<li>James A. Nash
<li>Barton Longacre
<li>Evan Franklin
<li>Sreeram Ramachandran
<li>Virginia Yue
<li>Jesse Burns
<li>Doug Johnson
<li>Johan Helsingius
<li>Scott Ellis
<li>Kristin Wolfe
<li>Andreas Eye
<li>Ted Ji
<li>Doug Wyatt
<li>Olier Raby
<li>Joe Pearson
<li>Jan Niemann
<li>Yamagata Hiroo
<li>Frankie Ridout
<li>Brian P. Quigley
<li>Darryl Braaten
<li>David J Jackson
<li>David Kempe
<li>J. Derek Davis
<li>Sean McGeever
<li>Greg Broiles
<li>Mike McGraw
<li>Joseph Lazzaro
<li>Seth Schroeder
<li>Jens Link
<li>Dylan Harris
<li>Bayu Krisna
<li>Mike Starke
<li>Fergus O'Rorke
<li>Lisa Applegate
<li>Tristan Lawrence
<li>Douglas Boldt
<li>Gordon MacPherson
<li>Diego Tobon
<li>Matthew Squires
<li>Robert Millán Hernández
<li>Andrew Wood
<li>Jacek Artymiak
<li>Leo Frantz
<li>Tilmann Steinberg
<li>Chris Zimman
<li>David Morris
<li>James B. Greer
<li>Leonardo Calagday
<li>Kevin Georgison
<li>Joshua J. Weber
<li><a rel="nofollow" href="http://www.powercrypt.com">GTGI</a>
<li>Sotiris Ioannidis, University of Pennsylvania
<li><a rel="nofollow" href="http://www.compaq.com">Compaq Computer Corp.</a>
<li>Felix Kronlage
<li>Chris Murphy
<li>Chuck Mattern
<li>David W. Krause
<li>Ed Grether
<li>Nathan Binkert
<li><a rel="nofollow" href="http://www.bottemanne.net">Aernoudt Bottemanne</a>
<li>Ray Schneider
<li>Mark Lamb
<li>D. K. Thorpe
<li>Mike Pechkin
<li>Rain Forest Puppy
<li>Neil McNeight
<li>Vince Nigro
<li><a rel="nofollow" href="http://www.cda.com/">Thomson Financial</a>
<li>Scott Atwood
<li>Jim Zajkowski
<li>Adam Lucas
<li>Daniel Hartmeier
<li>Christian David
<li><a rel="nofollow" href="http://www.cw.com/se/">Cable & Wireless Sweden</a>
<li><a rel="nofollow" href="http://www.connectcom.net">ConnectCom Solutions, Inc.</a>
<li><a rel="nofollow" href="http://www.initio.com">Initio Corporation</a>
<li><a rel="nofollow" href="http://www.tekram.com.tw">Tekram Technology Co., Ltd.</a>
<li>Binary Marketing Inc.
<li>Stuart Occleshaw
<li><a rel="nofollow" href="http://www.rrinc.com/">Recognition Research, Inc.</a>
<li>Brad Smith
<li>Summerfield's Limited
<li>Jacomo Dimmit Boca Piccolini
<li>James Rippas
<li>Martin Samuelsson
<li>Alex Le Fevre
<li>Mark Callaghan
<li>Pedro Alexandre Timoteo
<li>Borislav Danailov Ivanov
<li>Richard T. Mckinney
<li>Ernie Cline
<li>Arild Jensen
<li>Graham Nicholls
<li>Horacio Menezo Ganau
<li>Charles Gagnon
<li>Ray Meluch
<li>Boris Smilga
<li>Chris Fairbourne
<li>Michael Gerzabek
<li>Christian Rusch
<li>Alessandro de Manzano
<li>Nathan M. Bultman
<li>Martín Quiroga
<li>Andrew Rawnsley
<li>Kenneth C. Crater
<li>Didier Jordana
<li>David Johns
<li>Kurt Miller
<li>Richard Cagny
<li>Richard Moe
<li>Mike O'Dell
<li>Michael H. Buselli
<li>Tom Smolcnop
<li>Michael Small
<li>Daniel Salagean
<li>Eric Edgeworth
<li>Sigrid Feddern
<li>Aurel Schwarzentruber
<li>Matthew A. Schnoor
<li>Peter P. Clark
<li>John Chiment
<li>Jason Gunnoe
<li>Nigel Cole
<li>Anthony N. Wijeyegoonewardene
<li>William Laakkonen
<li>David Deckert
<li>Tim Palmer
<li>George Lewis
<li>Volker Kindermann
<li>W.C. Allen
<li>R. Emory Lundberg, <a rel="nofollow" href="http://www.hellyeah.com/">hellyeah! networks</a>
<li>Chris Kuethe
<li>Rik Kershaw-Moore
<li>Joseph W. Shaw, II
<li><a rel="nofollow" href="http://www.nCircle.com">nCircle</a>
<li>Jon Williams
<li>Todd Guse
<li>Ryan Russell
<li>Federico Lucifredi
<li>Chris Foote
<li><a rel="nofollow" href="http://www.cyclades.com">Cyclades Corporation</a>
<li><a rel="nofollow" href="http://www.loktechnology.com">Lok Technology</a>
<li><a rel="nofollow" href="http://www.envescent.com">Envescent, LLC®</a>
<li>Anthony Lambiris
<li>Ed 'gizmo' Moreau
<li>Michael Y. Holcomb
<li>Ice-Fox Networks
<li><a rel="nofollow" href="http://www.cirano.qc.ca/">CIRANO</a>
<li>Miles Sabin
<li>Mike Alfano
<li>Steven E. Kalbach
<li>Zeke Gibson
<li>Christopher Plummer
<li>Pericin Aleksandar
<li>Daniele M Barbosa
<li>Vincent Szopa
<li>Jonathan M. Prigot
<li>Erich Petzwinkler
<li>Steven Lindell
<li>David T. Brady
<li>P. D. P. Pennock
<li>Huy Vu
<li>Charles E. A. Finney
<li>Theodore Coolidge
<li>Markus Minihold
<li>Lars Josephsen
<li>James Zuelow
<li>Antonio Borba
<li>Gilles Lacarriere
<li>Don Phillips
<li>Christopher Figge
<li>Andrew M. Lewis
<li>Joel Schneider
<li>Mike Miller
<li>John Josephson
<li>Stephen Cawley
<li>Sebastian Meiling
<li>Jean-Michel Pulfer
<li>Justin Miller
<li>Jak Daemon
<li>Mike Kirkorian
<li>P. T. Withington
<li>Michael C. Ibarra
<li>Alexander Farber
<li>Anthony W. LaRue
<li>Chad Musson
<li>Andreas Gundacker
<li>Malome Khomo
<li>Carlton Houston
<li>Giuliano Carlini
<li>Miles McCredie
<li>Adam Bradley
<li>Matt Campbell
<li>Colm Donelan
<li>Jesse Trucks
<li>Chris Heerschap
<li>Pedro López
<li>Coly Georges
<li>Chris Ebenezer
<li>Stephen Grau
<li>Cary Renquist
<li><a rel="nofollow" href="http://www.oeko.net/">Toni Müller</a>
<li>Jess Winter
<li>Jeremiah Kiely
<li>Olivier Arseneau
<li>Nathan Olla
<li>Juan Orzaez
<li>Bob Kitella
<li>Miod Vallat
<li>Michael Glamm
<li>Chris Bensend
<li>Simon Lok
<li>Jake Luck
<li><a rel="nofollow" href="http://www.sentex.net">Sentex Communications</a>
<li>Achille Braquelaire
<li>Terrence Walters
<li>Jamie Walker
<li>Sebastian Stark
<li>Darby Johnston
<li>August Flassig
<li>Josh Brandt
<li>Harold Sinclair
<li>Arrigo Triulzi
<li><a rel="nofollow" href="http://www.hyperhosting.com/">HyperHosting</a>
<li>Brian Camp
<li>Geoff Thé
<li>0x00ff00 CTF team
<li>Ted Fiedler
<li>Gilbert Fernandes
<li>Jim Rhyness
<li>Dean Bullock
<li>John Campo
<li>Josh Rivel
<li>Daniel Harnett
<li>Andrew Isaacson
<li>Paul Hart
<li>Steve Latif
<li>Andrey Smagin
<li>Sam Smith
<li>Jan-Uwe Finck
<li>Roger Vetterberg
<li>Craig Barraclough
<li>Karim Elmaizi
<li>Thierry Deval
<li><a rel="nofollow" href="http://www.upnix.com/">Upnix Hosting Solutions</a>
<li>Patric Fors
<li>David Langhorst
<li>Laudon Williams
<li>Marina Brown & Laura Potter
<li>Redbus Interhouse Plc.
<li>Mark Lamb & Michael Pardee
<li>Christopher Holden
<li>Sven Esbjerg
<li>Matthias Bauer
<li><a rel="nofollow" href="http://www.dvd.reviewer.co.uk/">DVD Reviewer</a>
<li>Stichting HAL 2001
<li>Green Information
<li>Shamim Mohamed
<li><a rel="nofollow" href="http://www.3acesolutions.com/">3 Ace Solutions</a>
<li>Rogier Quaak
<li>Goetz Fischer
<li><a rel="nofollow" href="http://www.hitmedia.com/">Hit Media</a>
<li><a rel="nofollow" href="http://www.farm.org/~dk/">Dmitry Kohmanyuk</a>
<li><a rel="nofollow" href="http://www.mindcry.org">David Hill</a>
<li>Paul McLean
<li>Brian McGroarty
<li>Mike Gleason
<li>Peter Debono
<li>David Klann
<li><a rel="nofollow" href="http://www.sfobug.org">The San Francisco OpenBSD Users Group</a>
<li>Vince Broz
<li>Matt Critcher
<li><a rel="nofollow" href="http://www.cllglobal.org">CLL Global Research Foundation</a>
<li>Lyon College Computer Science
<li>Chris Hedemark
<li><a rel="nofollow" href="http://pwo.de/">Peter W. Osel</a>
<li>Robert Sussland
<li>Dutch HCC 68000 gebruikersgroep
<li>Jerome Verhasselt
<li><a rel="nofollow" href="http://www.vencon.com">Vencon Technologies Inc.</a>
<li>Sheryl A van Otterloo
<li>Federico Noferi
<li>Wendell Tucker
<li>Karl-Andre' Skevik
<li>Boris JM Fabbro
<li>Herbert McNew
<li>James Phillips
<li>James A Griffin
<li>William Lusk
<li>Geoff Steckel
<li>Dana Booth
<li>Kurt Seifried