NetBSD-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: port-i386/48016



The following reply was made to PR port-i386/48016; it has been noted by GNATS.

From: <Vivek_Dharmadhikari%DELL.com@localhost>
To: <gnats-bugs%gnats.NetBSD.org@localhost>
Cc: 
Subject: Re: port-i386/48016
Date: Thu, 4 Jul 2013 20:23:01 -0500

 --_000_A5B985BD62DE2943886F9B23F410AF1F01B76F213BFEAUSX7MCPC10_
 Content-Type: text/plain; charset="us-ascii"
 Content-Transfer-Encoding: quoted-printable
 
 Add support for Intel Centerton SOC's Integrated UART
 
 -   Updated PCI database to add entry for Centerton Integrated UART.
 
 -   Updated consinit to use Integrated UART as early console.
 
 -   Replaced PCI BAR address in hexadecimal with PCI_BAR* macros for better=
  code readability.
 
 -   User should make sure that following entries are present in kernel conf=
  file in order to use this driver.
 
 puc* at pci? Dev ? function ?
 
 options    PUCCN
 
 Index: arch/x86/x86/consinit.c
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
 RCS file: /cvsroot/src/sys/arch/x86/x86/consinit.c,v
 retrieving revision 1.24
 diff -u -r1.24 consinit.c
 --- arch/x86/x86/consinit.c     13 Oct 2012 17:58:55 -0000 1.24
 +++ arch/x86/x86/consinit.c     5 Jul 2013 01:08:40 -0000
 @@ -37,6 +37,7 @@
 #include <sys/bus.h>
 #include <machine/bootinfo.h>
 #include <arch/x86/include/genfb_machdep.h>
 +#include <dev/cons.h>
  #include "genfb.h"
 #include "vga.h"
 @@ -99,6 +100,11 @@
 int comcnmode =3D CONMODE;
 #endif /* NCOM */
 +#if (PUCCN > 0)
 +void comcnprobe(struct consdev *cn);
 +void comcninit(struct consdev *cn);
 +#endif /* PUCCN */
 +
 const struct btinfo_console default_consinfo =3D {
     {0, 0},
     CONSDEVNAME,
 @@ -212,7 +218,11 @@
           if (comcnattach(x86_bus_space_io, addr, speed,
                     COM_FREQ, COM_TYPE_NORMAL, comcnmode))
                panic("can't init serial console @%x", consinfo->addr);
 -
 +#if (PUCCN > 0)
 +          /* Use PCI com serial port as system console */
 +          comcnprobe(NULL);
 +          comcninit(NULL);
 +#endif
           return;
     }
 #endif
 Index: dev/pci/pcidevs
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
 RCS file: /cvsroot/src/sys/dev/pci/pcidevs,v
 retrieving revision 1.1158
 diff -u -r1.1158 pcidevs
 --- dev/pci/pcidevs  13 Jun 2013 06:11:34 -0000 1.1158
 +++ dev/pci/pcidevs  5 Jul 2013 01:08:40 -0000
 @@ -3525,6 +3525,7 @@
 product INTEL CP_SCS_REGS 0xd157     Core Processor System Control and Stat=
 us Registers
 product INTEL CP_MISC_REGS     0xd158     Core Processor Miscellaneous Regi=
 sters
 product INTEL HANKSVILLE  0xf0fe     HANKSVILLE LAN Controller
 +product INTEL CENTERTON_UART   0x0c5f     Centerton Processor Integrated P=
 CI UART
 
  /* Intergraph products */
 Index: dev/pci/pcidevs.h
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
 RCS file: /cvsroot/src/sys/dev/pci/pcidevs.h,v
 retrieving revision 1.1150
 diff -u -r1.1150 pcidevs.h
 --- dev/pci/pcidevs.h 13 Jun 2013 06:11:54 -0000 1.1150
 +++ dev/pci/pcidevs.h 5 Jul 2013 01:08:41 -0000
 @@ -1,4 +1,4 @@
 -/*  $NetBSD: pcidevs.h,v 1.1150 2013/06/13 06:11:54 matt Exp $ */
 +/*  $NetBSD$   */
  /*
   * THIS FILE AUTOMATICALLY GENERATED.  DO NOT EDIT.
 @@ -3532,6 +3532,7 @@
 #define   PCI_PRODUCT_INTEL_CP_SCS_REGS   0xd157          /* Core Processor=
  System Control and Status Registers */
 #define   PCI_PRODUCT_INTEL_CP_MISC_REGS  0xd158          /* Core Processor=
  Miscellaneous Registers */
 #define   PCI_PRODUCT_INTEL_HANKSVILLE    0xf0fe          /* HANKSVILLE LAN=
  Controller */
 +#define   PCI_PRODUCT_INTEL_CENTERTON_UART     0x0c5f          /* Centerto=
 n Processor Integrated PCI UART */
 
  /* Intergraph products */
 Index: dev/pci/pcidevs_data.h
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
 RCS file: /cvsroot/src/sys/dev/pci/pcidevs_data.h,v
 retrieving revision 1.1149
 diff -u -r1.1149 pcidevs_data.h
 --- dev/pci/pcidevs_data.h 13 Jun 2013 06:11:54 -0000 1.1149
 +++ dev/pci/pcidevs_data.h 5 Jul 2013 01:08:41 -0000
 @@ -1,4 +1,4 @@
 -/*  $NetBSD: pcidevs_data.h,v 1.1149 2013/06/13 06:11:54 matt Exp $ */
 +/*  $NetBSD$   */
  /*
   * THIS FILE AUTOMATICALLY GENERATED.  DO NOT EDIT.
 @@ -5823,96 +5823,98 @@
         20388, 10366, 7772, 19061, 0,
         PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_HANKSVILLE,
          20435, 4534, 6225, 0,
 +        PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_CENTERTON_UART,
 +        20446, 10366, 692, 615, 10885, 0,
         PCI_VENDOR_INTERGRAPH, PCI_PRODUCT_INTERGRAPH_4D50T,
 -        20446, 20457, 0,
 +        20456, 20467, 0,
         PCI_VENDOR_INTERGRAPH, PCI_PRODUCT_INTERGRAPH_4D60T,
 -        20446, 20463, 0,
 +        20456, 20473, 0,
         PCI_VENDOR_INTERSIL, PCI_PRODUCT_INTERSIL_MINI_PCI_WLAN,
 -        20469, 5525, 7454, 0,
 +        20479, 5525, 7454, 0,
         PCI_VENDOR_INTERSIL, PCI_PRODUCT_INTERSIL_MINI_PCI_3877,
 -        20478, 20484, 5525, 7454, 0,
 +        20488, 20494, 5525, 7454, 0,
         PCI_VENDOR_INTERSIL, PCI_PRODUCT_INTERSIL_MINI_PCI_3890,
 -        20478, 20491, 5525, 7454, 0,
 +        20488, 20501, 5525, 7454, 0,
         PCI_VENDOR_INVERTEX, PCI_PRODUCT_INVERTEX_AEON,
 -        20498, 0,
 +        20508, 0,
         PCI_VENDOR_IODATA, PCI_PRODUCT_IODATA_CBIDE2,
 -        20503, 20517, 6396, 0,
 +        20513, 20527, 6396, 0,
         PCI_VENDOR_IODATA, PCI_PRODUCT_IODATA_CBSCII,
 -        20531, 20538, 6440, 0,
 +        20541, 20548, 6440, 0,
         PCI_VENDOR_IODATA, PCI_PRODUCT_IODATA_RSAPCI,
 -        20553, 13578, 10492, 0,
 +        20563, 13578, 10492, 0,
         PCI_VENDOR_IODATA, PCI_PRODUCT_IODATA_GVBCTV5DL,
 -        20561, 20576, 20579, 0,
 +        20571, 20586, 20589, 0,
         PCI_VENDOR_ITE, PCI_PRODUCT_ITE_IT8152,
 -        20585, 6729, 6333, 0,
 +        20595, 6729, 6333, 0,
         PCI_VENDOR_ITE, PCI_PRODUCT_ITE_IT8211,
 -        20592, 6396, 6225, 0,
 +        20602, 6396, 6225, 0,
         PCI_VENDOR_ITE, PCI_PRODUCT_ITE_IT8212,
 -        20599, 6396, 6225, 0,
 +        20609, 6396, 6225, 0,
         PCI_VENDOR_ITE, PCI_PRODUCT_ITE_IT8888,
          6607, 6333, 0,
         PCI_VENDOR_ITE, PCI_PRODUCT_ITE_IT8892,
          15142, 6333, 0,
         PCI_VENDOR_ITT, PCI_PRODUCT_ITT_AGX016,
 -        20606, 0,
 +        20616, 0,
         PCI_VENDOR_ITT, PCI_PRODUCT_ITT_ITT3204,
 -        20613, 6684, 6689, 0,
 +        20623, 6684, 6689, 0,
         PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB360,
 -        20621, 8249, 6225, 0,
 +        20631, 8249, 6225, 0,
         PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB361,
 -        20628, 20635, 6225, 0,
 +        20638, 20645, 6225, 0,
         PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB362,
 -        20645, 8249, 6225, 0,
 +        20655, 8249, 6225, 0,
         PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB363,
 -        20652, 20635, 6225, 0,
 +        20662, 20645, 6225, 0,
         PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB365,
 -        20659, 20635, 6225, 0,
 +        20669, 20645, 6225, 0,
         PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB366,
 -        20666, 20635, 6225, 0,
 +        20676, 20645, 6225, 0,
         PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB368,
 -        20673, 20680, 6225, 0,
 +        20683, 20690, 6225, 0,
         PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB38X_SD,
 -        20685, 8259, 6729, 6225, 0,
 +        20695, 8259, 6729, 6225, 0,
         PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB38X_MMC,
 -        20685, 20692, 6729, 6225, 0,
 +        20695, 20702, 6729, 6225, 0,
         PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB38X_MS,
 -        20685, 4513, 20699, 6729, 6225, 0,
 +        20695, 4513, 20709, 6729, 6225, 0,
         PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB38X_XD,
 -        20685, 20705, 6729, 6225, 0,
 +        20695, 20715, 6729, 6225, 0,
         PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB388_SD,
 -        20708, 8259, 6729, 6225, 0,
 +        20718, 8259, 6729, 6225, 0,
         PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB388_MMC,
 -        20708, 20692, 6729, 6225, 0,
 +        20718, 20702, 6729, 6225, 0,
         PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB388_MS,
 -        20708, 4513, 20699, 6729, 6225, 0,
 +        20718, 4513, 20709, 6729, 6225, 0,
         PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB388_XD,
 -        20708, 20705, 6729, 6225, 0,
 +        20718, 20715, 6729, 6225, 0,
         PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMC250,
 -        20715, 5479, 5487, 6225, 0,
 +        20725, 5479, 5487, 6225, 0,
         PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMC260,
 -        20722, 2439, 5487, 6225, 0,
 +        20732, 2439, 5487, 6225, 0,
         PCI_VENDOR_JNI, PCI_PRODUCT_JNI_JNIC1460,
 -        20729, 20739, 5679, 0,
 +        20739, 20749, 5679, 0,
         PCI_VENDOR_JNI, PCI_PRODUCT_JNI_JNIC1560,
 -        20753, 10019, 20739, 5679, 0,
 +        20763, 10019, 20749, 5679, 0,
         PCI_VENDOR_JNI, PCI_PRODUCT_JNI_FCI1063,
 -        20763, 20739, 5679, 0,
 +        20773, 20749, 5679, 0,
         PCI_VENDOR_JNI, PCI_PRODUCT_JNI_FCX26562,
 -        20772, 10019, 20739, 5679, 0,
 +        20782, 10019, 20749, 5679, 0,
         PCI_VENDOR_JNI, PCI_PRODUCT_JNI_FCX6562,
 -        20782, 20739, 5679, 0,
 +        20792, 20749, 5679, 0,
         PCI_VENDOR_JUNIPER, PCI_PRODUCT_JUNIPER_XCLK0,
 -        20791, 20804, 20810, 20818, 0,
 +        20801, 20814, 20820, 20828, 0,
         PCI_VENDOR_KTI, PCI_PRODUCT_KTI_NE2KETHER,
          5487, 0,
         PCI_VENDOR_LMC, PCI_PRODUCT_LMC_HSSI,
 -        20820, 3027, 0,
 +        20830, 3027, 0,
         PCI_VENDOR_LMC, PCI_PRODUCT_LMC_DS3,
 -        20825, 3027, 0,
 +        20835, 3027, 0,
         PCI_VENDOR_LMC, PCI_PRODUCT_LMC_SSI,
 -        20829, 0,
 +        20839, 0,
         PCI_VENDOR_LMC, PCI_PRODUCT_LMC_DS1,
 -        20833, 0,
 +        20843, 0,
         PCI_VENDOR_LAVA, PCI_PRODUCT_LAVA_TWOSP_2S,
          10019, 10492, 0,
         PCI_VENDOR_LAVA, PCI_PRODUCT_LAVA_QUATTRO_AB,
 @@ -5950,529 +5952,529 @@
         PCI_VENDOR_LAVA, PCI_PRODUCT_LAVA_PARALLELB,
          10019, 16943, 0,
         PCI_VENDOR_LEADTEK, PCI_PRODUCT_LEADTEK_S3_805,
 -        5296, 20837, 0,
 +        5296, 20847, 0,
         PCI_VENDOR_LEVELONE, PCI_PRODUCT_LEVELONE_LXT1001,
 -        20841, 5502, 5487, 0,
 +        20851, 5502, 5487, 0,
         PCI_VENDOR_LINEARSYS, PCI_PRODUCT_LINEARSYS_DVB_TX,
 -        20850, 20854, 0,
 +        20860, 20864, 0,
         PCI_VENDOR_LINEARSYS, PCI_PRODUCT_LINEARSYS_DVB_RX,
 -        20850, 20866, 0,
 +        20860, 20876, 0,
         PCI_VENDOR_LINKSYS, PCI_PRODUCT_LINKSYS_EG1032,
 -        20875, 20882, 20885, 5479, 3888, 5679, 0,
 +        20885, 20892, 20895, 5479, 3888, 5679, 0,
         PCI_VENDOR_LINKSYS, PCI_PRODUCT_LINKSYS_EG1064,
 -        20893, 20882, 20885, 5479, 3888, 5679, 0,
 +        20903, 20892, 20895, 5479, 3888, 5679, 0,
         PCI_VENDOR_LINKSYS, PCI_PRODUCT_LINKSYS_PCMPC200,
 -        20900, 0,
 +        20910, 0,
         PCI_VENDOR_LINKSYS, PCI_PRODUCT_LINKSYS_PCM200,
          6285, 0,
         PCI_VENDOR_LINKSYS2, PCI_PRODUCT_LINKSYS2_IPN2220,
 -        20909, 20913, 4739, 4534, 5679, 20918, 20923, 0,
 +        20919, 20923, 4739, 4534, 5679, 20928, 20933, 0,
         PCI_VENDOR_LITEON, PCI_PRODUCT_LITEON_82C168,
 -        20927, 20941, 5589, 5487, 0,
 +        20937, 20951, 5589, 5487, 0,
         PCI_VENDOR_LITEON, PCI_PRODUCT_LITEON_82C115,
 -        20948, 20955, 20961, 5589, 5487, 0,
 +        20958, 20965, 20971, 5589, 5487, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0440,
 -        20965, 20973, 20978, 0,
 +        20975, 20983, 20988, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0441,
 -        20978, 0,
 +        20988, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0442,
 -        20978, 0,
 +        20988, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0443,
 -        20978, 0,
 +        20988, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0444,
 -        20978, 0,
 +        20988, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0445,
 -        20978, 0,
 +        20988, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0446,
 -        20978, 0,
 +        20988, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0447,
 -        20978, 0,
 +        20988, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0448,
 -        20978, 0,
 +        20988, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0449,
 -        20978, 0,
 +        20988, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_044a,
 -        20978, 0,
 +        20988, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_044b,
 -        20978, 0,
 +        20988, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_044c,
 -        20978, 0,
 +        20988, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_044d,
 -        20978, 0,
 +        20988, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_044e,
 -        20978, 0,
 +        20988, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0450,
 -        20978, 0,
 +        20988, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0451,
 -        20978, 0,
 +        20988, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0452,
 -        20978, 0,
 +        20988, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0453,
 -        20978, 0,
 +        20988, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0454,
 -        20978, 0,
 +        20988, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0455,
 -        20978, 0,
 +        20988, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0456,
 -        20978, 0,
 +        20988, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0457,
 -        20978, 0,
 +        20988, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0458,
 -        20978, 0,
 +        20988, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0459,
 -        20978, 0,
 +        20988, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_045a,
 -        20978, 0,
 +        20988, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_VENUSMODEM,
 -        20986, 5534, 0,
 +        20996, 5534, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_OR3LP26,
 -        20992, 20997, 5926, 21002, 615, 21009, 20388, 0,
 +        21002, 21007, 5926, 21012, 615, 21019, 20388, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_OR3TP12,
 -        20992, 20997, 5926, 21014, 615, 21009, 20388, 0,
 +        21002, 21007, 5926, 21024, 615, 21019, 20388, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_USBHC,
          6721, 6729, 6225, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_USBHC2,
          13578, 6721, 6729, 6225, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_FW322_323,
 -        21021, 14406, 14411, 6729, 6225, 0,
 +        21031, 14406, 14411, 6729, 6225, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_FW643_PCIE,
 -        21031, 18408, 14406, 21037, 6729, 6225, 0,
 +        21041, 18408, 14406, 21047, 6729, 6225, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_ET1310,
 -        21043, 5502, 5487, 0,
 +        21053, 5502, 5487, 0,
         PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_ET1301,
 -        21050, 5589, 5487, 0,
 +        21060, 5589, 5487, 0,
         PCI_VENDOR_MACRONIX, PCI_PRODUCT_MACRONIX_MX98713,
 -        21057, 21065, 5589, 5487, 0,
 +        21067, 21075, 5589, 5487, 0,
         PCI_VENDOR_MACRONIX, PCI_PRODUCT_MACRONIX_MX987x5,
 -        21072, 21065, 5589, 5487, 0,
 +        21082, 21075, 5589, 5487, 0,
         PCI_VENDOR_MADGE, PCI_PRODUCT_MADGE_SMARTRN2,
 -        12813, 16306, 615, 21080, 21089, 0,
 +        12813, 16306, 615, 21090, 21099, 0,
         PCI_VENDOR_MADGE, PCI_PRODUCT_MADGE_COLLAGE25,
 -        21093, 16350, 6895, 5679, 0,
 +        21103, 16350, 6895, 5679, 0,
         PCI_VENDOR_MADGE, PCI_PRODUCT_MADGE_COLLAGE155,
 -        21093, 21101, 6895, 5679, 0,
 +        21103, 21111, 6895, 5679, 0,
         PCI_VENDOR_MAGMA, PCI_PRODUCT_MAGMA_SERIAL16,
 -        13038, 19781, 21105, 0,
 +        13038, 19781, 21115, 0,
         PCI_VENDOR_MAGMA, PCI_PRODUCT_MAGMA_SERIAL4,
 -        6556, 19781, 21105, 0,
 +        6556, 19781, 21115, 0,
         PCI_VENDOR_MATROX, PCI_PRODUCT_MATROX_ATLAS,
 -        21114, 21118, 21125, 0,
 +        21124, 21128, 21135, 0,
         PCI_VENDOR_MATROX, PCI_PRODUCT_MATROX_MILLENNIUM,
 -        21114, 21135, 21146, 21152, 0,
 +        21124, 21145, 21156, 21162, 0,
         PCI_VENDOR_MATROX, PCI_PRODUCT_MATROX_MYSTIQUE,
 -        21114, 21162, 21171, 0,
 +        21124, 21172, 21181, 0,
         PCI_VENDOR_MATROX, PCI_PRODUCT_MATROX_MILLENNIUM2,
 -        21114, 21135, 7361, 21178, 0,
 +        21124, 21145, 7361, 21188, 0,
         PCI_VENDOR_MATROX, PCI_PRODUCT_MATROX_MILLENNIUM2_AGP,
 -        21114, 21135, 7361, 21184, 8068, 0,
 +        21124, 21145, 7361, 21194, 8068, 0,
         PCI_VENDOR_MATROX, PCI_PRODUCT_MATROX_G200_PCI,
 -        21114, 21193, 615, 0,
 +        21124, 21203, 615, 0,
         PCI_VENDOR_MATROX, PCI_PRODUCT_MATROX_G200_AGP,
 -        21114, 21193, 8068, 0,
 +        21124, 21203, 8068, 0,
         PCI_VENDOR_MATROX, PCI_PRODUCT_MATROX_G200E_SE,
 -        21114, 21198, 21204, 0,
 +        21124, 21208, 21214, 0,
         PCI_VENDOR_MATROX, PCI_PRODUCT_MATROX_G400_AGP,
 -        21114, 21220, 8068, 0,
 +        21124, 21230, 8068, 0,
         PCI_VENDOR_MATROX, PCI_PRODUCT_MATROX_G200EW,
 -        21114, 21225, 0,
 +        21124, 21235, 0,
         PCI_VENDOR_MATROX, PCI_PRODUCT_MATROX_IMPRESSION,
 -        21114, 21232, 0,
 +        21124, 21242, 0,
         PCI_VENDOR_MATROX, PCI_PRODUCT_MATROX_G100_PCI,
 -        21114, 21243, 615, 0,
 +        21124, 21253, 615, 0,
         PCI_VENDOR_MATROX, PCI_PRODUCT_MATROX_G100_AGP,
 -        21114, 21243, 8068, 0,
 +        21124, 21253, 8068, 0,
         PCI_VENDOR_MATROX, PCI_PRODUCT_MATROX_G550_AGP,
 -        21114, 21248, 8068, 0,
 +        21124, 21258, 8068, 0,
         PCI_VENDOR_MEDIAQ, PCI_PRODUCT_MEDIAQ_MQ200,
 -        21253, 0,
 +        21263, 0,
         PCI_VENDOR_MELLANOX, PCI_PRODUCT_MELLANOX_MT23108,
 -       21259, 21270, 0,
 +        21269, 21280, 0,
         PCI_VENDOR_MELLANOX, PCI_PRODUCT_MELLANOX_MT23108_PCI,
 -        21259, 615, 6333, 21270, 0,
 +        21269, 615, 6333, 21280, 0,
         PCI_VENDOR_MELLANOX, PCI_PRODUCT_MELLANOX_MT25204_OLD,
 -        21259, 8732, 21278, 21281, 21286, 0,
 +        21269, 8732, 21288, 21291, 21296, 0,
         PCI_VENDOR_MELLANOX, PCI_PRODUCT_MELLANOX_MT25204,
 -        21259, 8732, 21278, 21293, 0,
 +        21269, 8732, 21288, 21303, 0,
         PCI_VENDOR_MELLANOX, PCI_PRODUCT_MELLANOX_MT25208_COMPAT,
 -        21259, 8732, 21301, 21304, 21311, 21314, 21320, 0,
 +        21269, 8732, 21311, 21314, 21321, 21324, 21330, 0,
         PCI_VENDOR_MELLANOX, PCI_PRODUCT_MELLANOX_MT25208,
 -        21259, 8732, 21301, 21333, 0,
 +        21269, 8732, 21311, 21343, 0,
         PCI_VENDOR_MELLANOX, PCI_PRODUCT_MELLANOX_MT25408_SDR,
 -        21341, 21350, 21354, 0,
 +        21351, 21360, 21364, 0,
         PCI_VENDOR_MELLANOX, PCI_PRODUCT_MELLANOX_MT25408_DDR,
 -        21341, 21363, 21354, 0,
 +        21351, 21373, 21364, 0,
         PCI_VENDOR_MELLANOX, PCI_PRODUCT_MELLANOX_MT25408_QDR,
 -        21341, 21367, 21371, 6740, 21376, 21354, 0,
 +        21351, 21377, 21381, 6740, 21386, 21364, 0,
         PCI_VENDOR_MELLANOX, PCI_PRODUCT_MELLANOX_MT25408_EN,
 -        21341, 21384, 21387, 21371, 6740, 21376, 21354, 0,
 +        21351, 21394, 21397, 21381, 6740, 21386, 21364, 0,
         PCI_VENDOR_MELLANOX, PCI_PRODUCT_MELLANOX_MT25408_DDR_2,
 -        21341, 21363, 21371, 6740, 21394, 21354, 0,
 +        21351, 21373, 21381, 6740, 21404, 21364, 0,
         PCI_VENDOR_MELLANOX, PCI_PRODUCT_MELLANOX_MT25408_QDR_2,
 -        21341, 21367, 21371, 6740, 21394, 21354, 0,
 +        21351, 21377, 21381, 6740, 21404, 21364, 0,
         PCI_VENDOR_MELLANOX, PCI_PRODUCT_MELLANOX_MT25408_EN_2,
 -        21341, 21384, 21387, 21371, 6740, 21394, 21354, 0,
 +        21351, 21394, 21397, 21381, 6740, 21404, 21364, 0,
         PCI_VENDOR_MICROMEMORY, PCI_PRODUCT_MICROMEMORY_5415CN,
 -        21400, 4513, 10458, 0,
 -        PCI_VENDOR_MICROMEMORY, PCI_PRODUCT_MICROMEMORY_5425CN,
          21410, 4513, 10458, 0,
 +        PCI_VENDOR_MICROMEMORY, PCI_PRODUCT_MICROMEMORY_5425CN,
 +        21420, 4513, 10458, 0,
         PCI_VENDOR_MICROSOFT, PCI_PRODUCT_MICROSOFT_MN120,
 -        21420, 5589, 5487, 12772, 5679, 0,
 +        21430, 5589, 5487, 12772, 5679, 0,
         PCI_VENDOR_MICREL, PCI_PRODUCT_MICREL_KSZ8841,
          5589, 5487, 0,
         PCI_VENDOR_MICREL, PCI_PRODUCT_MICREL_KSZ8842,
 -        21427, 6181, 7887, 5589, 5487, 0,
 +        21437, 6181, 7887, 5589, 5487, 0,
         PCI_VENDOR_MIDDLE_DIGITAL, PCI_PRODUCT_MIDDLE_DIGITAL_WEASEL_VGA,
 -        21436, 18522, 7967, 0,
 +        21446, 18522, 7967, 0,
         PCI_VENDOR_MIDDLE_DIGITAL, PCI_PRODUCT_MIDDLE_DIGITAL_WEASEL_SERIAL=
 ,
 -        21436, 10492, 7887, 0,
 +        21446, 10492, 7887, 0,
         PCI_VENDOR_MIDDLE_DIGITAL, PCI_PRODUCT_MIDDLE_DIGITAL_WEASEL_CONTRO=
 L,
 -        21436, 8388, 0,
 +        21446, 8388, 0,
         PCI_VENDOR_MITSUBISHIELEC, PCI_PRODUCT_MITSUBISHIELEC_TORNADO,
 -        21443, 14756, 8068, 0,
 +        21453, 14756, 8068, 0,
         PCI_VENDOR_MOT, PCI_PRODUCT_MOT_MPC105,
 -        21451, 21458, 6729, 6333, 0,
 +        21461, 21468, 6729, 6333, 0,
         PCI_VENDOR_MOT, PCI_PRODUCT_MOT_MPC106,
 -        21466, 21473, 6729, 6333, 0,
 +        21476, 21483, 6729, 6333, 0,
         PCI_VENDOR_MOT, PCI_PRODUCT_MOT_MPC8240,
 -        21483, 21491, 6729, 6333, 0,
 +        21493, 21501, 6729, 6333, 0,
         PCI_VENDOR_MOT, PCI_PRODUCT_MOT_MPC107,
 -        21500, 21507, 6729, 6333, 0,
 +        21510, 21517, 6729, 6333, 0,
         PCI_VENDOR_MOT, PCI_PRODUCT_MOT_MPC8245,
 -        21519, 21527, 21535, 6729, 6333, 0,
 +        21529, 21537, 21545, 6729, 6333, 0,
         PCI_VENDOR_MOT, PCI_PRODUCT_MOT_MPC8555E,
 -        21539, 0,
 +        21549, 0,
         PCI_VENDOR_MOT, PCI_PRODUCT_MOT_MPC8541,
 -        21548, 0,
 +        21558, 0,
         PCI_VENDOR_MOT, PCI_PRODUCT_MOT_MPC8548E,
          14761, 0,
         PCI_VENDOR_MOT, PCI_PRODUCT_MOT_MPC8548,
          14770, 0,
         PCI_VENDOR_MOT, PCI_PRODUCT_MOT_RAVEN,
 -        21556, 6729, 6333, 647, 21562, 17901, 6225, 0,
 +        21566, 6729, 6333, 647, 21572, 17901, 6225, 0,
         PCI_VENDOR_MOT, PCI_PRODUCT_MOT_FALCON,
 -        21578, 21585, 4513, 6225, 4569, 21589, 0,
 +        21588, 21595, 4513, 6225, 4569, 21599, 0,
         PCI_VENDOR_MOT, PCI_PRODUCT_MOT_HAWK,
 -        21593, 6, 4513, 6225, 647, 615, 6729, 6333, 0,
 +        21603, 6, 4513, 6225, 647, 615, 6729, 6333, 0,
         PCI_VENDOR_MOT, PCI_PRODUCT_MOT_MPC5200B,
 -        21598, 6729, 6333, 0,
 +        21608, 6729, 6333, 0,
         PCI_VENDOR_MOXA, PCI_PRODUCT_MOXA_CP102U,
 -        21607, 0,
 +        21617, 0,
         PCI_VENDOR_MOXA, PCI_PRODUCT_MOXA_C104H,
 -        21614, 0,
 +        21624, 0,
         PCI_VENDOR_MOXA, PCI_PRODUCT_MOXA_CP104,
 -        21620, 0,
 +        21630, 0,
         PCI_VENDOR_MOXA, PCI_PRODUCT_MOXA_CP104V2,
 -        21628, 0,
 +        21638, 0,
         PCI_VENDOR_MOXA, PCI_PRODUCT_MOXA_CP104EL,
 -        21636, 0,
 +        21646, 0,
         PCI_VENDOR_MOXA, PCI_PRODUCT_MOXA_CP114,
 -        21644, 0,
 +        21654, 0,
         PCI_VENDOR_MOXA, PCI_PRODUCT_MOXA_C168H,
 -        21650, 0,
 +        21660, 0,
         PCI_VENDOR_MOXA, PCI_PRODUCT_MOXA_C168U,
 -        21656, 0,
 +        21666, 0,
         PCI_VENDOR_MOXA, PCI_PRODUCT_MOXA_C168EL,
 -        21662, 0,
 +        21672, 0,
         PCI_VENDOR_MOXA, PCI_PRODUCT_MOXA_C168ELA,
 -        21662, 9983, 0,
 +        21672, 9983, 0,
         PCI_VENDOR_MUTECH, PCI_PRODUCT_MUTECH_MV1000,
 -        21669, 0,
 +        21679, 0,
         PCI_VENDOR_MYLEX, PCI_PRODUCT_MYLEX_RAID_V2,
 -        21676, 6220, 21683, 21687, 0,
 +        21686, 6220, 21693, 21697, 0,
         PCI_VENDOR_MYLEX, PCI_PRODUCT_MYLEX_RAID_V3,
 -        21676, 6220, 21698, 21687, 0,
 +        21686, 6220, 21708, 21697, 0,
         PCI_VENDOR_MYLEX, PCI_PRODUCT_MYLEX_RAID_V4,
 -        21676, 6220, 21702, 21687, 0,
 +        21686, 6220, 21712, 21697, 0,
         PCI_VENDOR_MYLEX, PCI_PRODUCT_MYLEX_RAID_V5,
 -        21676, 6220, 21706, 21687, 0,
 +        21686, 6220, 21716, 21697, 0,
         PCI_VENDOR_MYLEX, PCI_PRODUCT_MYLEX_EXTREMERAID_3000,
 -        21710, 14756, 0,
 +        21720, 14756, 0,
         PCI_VENDOR_MYLEX, PCI_PRODUCT_MYLEX_EXTREMERAID_2000,
 -        21710, 1319, 0,
 +        21720, 1319, 0,
         PCI_VENDOR_MYLEX, PCI_PRODUCT_MYLEX_ACCELERAID,
 -        21722, 21733, 0,
 +        21732, 21743, 0,
         PCI_VENDOR_MYLEX, PCI_PRODUCT_MYLEX_ACCELERAID_170,
 -        21722, 21737, 0,
 +        21732, 21747, 0,
         PCI_VENDOR_MYLEX, PCI_PRODUCT_MYLEX_ACCELERAID_160,
 -        21722, 21741, 0,
 +        21732, 21751, 0,
         PCI_VENDOR_MYLEX, PCI_PRODUCT_MYLEX_EXTREMERAID1100,
 -        21710, 21745, 0,
 +        21720, 21755, 0,
         PCI_VENDOR_MYLEX, PCI_PRODUCT_MYLEX_EXTREMERAID,
 -        21710, 21750, 0,
 +        21720, 21760, 0,
         PCI_VENDOR_MYRICOM, PCI_PRODUCT_MYRICOM_MYRINET,
          10407, 0,
         PCI_VENDOR_MYSON, PCI_PRODUCT_MYSON_MTD803,
 -        21760, 21767, 2439, 5487, 6225, 0,
 +        21770, 21777, 2439, 5487, 6225, 0,
         PCI_VENDOR_NDC, PCI_PRODUCT_NDC_NCP130,
 -        21774, 4739, 15973, 0,
 +        21784, 4739, 15973, 0,
         PCI_VENDOR_NDC, PCI_PRODUCT_NDC_NCP130A2,
 -        21774, 8612, 21781, 4739, 15973, 0,
 +        21784, 8612, 21791, 4739, 15973, 0,
         PCI_VENDOR_NETOCTAVE, PCI_PRODUCT_NETOCTAVE_NSP2K,
 -        21784, 0,
 +        21794, 0,
         PCI_VENDOR_NETBOOST, PCI_PRODUCT_NETBOOST_POLICY,
 -        21790, 7607, 0,
 +        21800, 7607, 0,
         PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_SBC,
 -        21797, 6, 6333, 21801, 0,
 +        21807, 6, 6333, 21811, 0,
         PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_ICI,
 -        21797, 21812, 21823, 0,
 +        21807, 21822, 21833, 0,
         PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_PIC,
 -        21797, 17888, 17901, 21801, 0,
 +        21807, 17888, 17901, 21811, 0,
         PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_PCIROOT,
 -        21797, 21836, 21848, 6558, 0,
 +        21807, 21846, 21858, 6558, 0,
         PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_INTERLAKEN,
 -        21797, 21869, 21880, 21883, 0,
 +        21807, 21879, 21890, 21893, 0,
         PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_DEVUSB,
 -        21797, 2427, 6721, 21801, 0,
 +        21807, 2427, 6721, 21811, 0,
         PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_EHCIUSB,
 -        21797, 8024, 6721, 21801, 0,
 +        21807, 8024, 6721, 21811, 0,
         PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_OHCIUSB,
 -        21797, 8019, 6721, 21801, 0,
 +        21807, 8019, 6721, 21811, 0,
         PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_NAE,
 -        21797, 3888, 21893, 21906, 0,
 +        21807, 3888, 21903, 21916, 0,
         PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_POE,
 -        21797, 4487, 21913, 21906, 0,
 +        21807, 4487, 21923, 21916, 0,
         PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_FMN,
 -        21797, 2439, 21922, 3888, 0,
 +        21807, 2439, 21932, 3888, 0,
         PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_DMA,
 -        21797, 490, 21932, 558, 6220, 21906, 0,
 +        21807, 490, 21942, 558, 6220, 21916, 0,
         PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_SAE,
 -        21797, 7975, 21941, 0,
 +        21807, 7975, 21951, 0,
         PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_PKE,
 -        21797, 21953, 21941, 0,
 +        21807, 21963, 21951, 0,
         PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_CDE,
 -        21797, 21961, 21906, 0,
 +        21807, 21971, 21916, 0,
         PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_UART,
 -        21797, 10885, 21801, 0,
 +        21807, 10885, 21811, 0,
         PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_I2C,
 -        21797, 20208, 21801, 0,
 +        21807, 20208, 21811, 0,
         PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_GPIO,
 -        21797, 20189, 21801, 0,
 +        21807, 20189, 21811, 0,
         PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_SYSTEM,
 -        21797, 6, 21801, 0,
 +        21807, 6, 21811, 0,
         PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_JTAG,
 -        21797, 21984, 21883, 0,
 +        21807, 21994, 21893, 0,
         PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_NOR,
 -        21797, 21989, 21993, 21801, 0,
 +        21807, 21999, 22003, 21811, 0,
         PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_NAND,
 -        21797, 21999, 21993, 21801, 0,
 +        21807, 22009, 22003, 21811, 0,
         PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_SPI,
 -        21797, 20204, 21801, 0,
 +        21807, 20204, 21811, 0,
         PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_SDHC,
 -        21797, 22004, 21801, 0,
 +        21807, 22014, 21811, 0,
         PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_RXE,
 -        21797, 22017, 22025, 21941, 0,
 +        21807, 22027, 22035, 21951, 0,
         PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_AHCISATA,
 -        21797, 8254, 8249, 21801, 0,
 +        21807, 8254, 8249, 21811, 0,
         PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_SRIO,
 -        21797, 22036, 22041, 22049, 22055, 21801, 0,
 +        21807, 22046, 22051, 22059, 22065, 21811, 0,
         PCI_VENDOR_NETVIN, PCI_PRODUCT_NETVIN_5000,
          19052, 5487, 0,
         PCI_VENDOR_NEWBRIDGE, PCI_PRODUCT_NEWBRIDGE_CA91CX42,
 -        22059, 22068, 6333, 0,
 +        22069, 22078, 6333, 0,
         PCI_VENDOR_NEWBRIDGE, PCI_PRODUCT_NEWBRIDGE_CA91L826A,
 -        22072, 7361, 615, 6333, 0,
 +        22082, 7361, 615, 6333, 0,
         PCI_VENDOR_NEWBRIDGE, PCI_PRODUCT_NEWBRIDGE_CA91L8260,
 -        22078, 615, 6333, 0,
 +        22088, 615, 6333, 0,
         PCI_VENDOR_NEWBRIDGE, PCI_PRODUCT_NEWBRIDGE_CA91L8261,
 -        22078, 7361, 615, 6333, 0,
 +        22088, 7361, 615, 6333, 0,
         PCI_VENDOR_NATIONALINST, PCI_PRODUCT_NATIONALINST_MXI3,
 -        22088, 615, 22094, 0,
 +       22098, 615, 22104, 0,
         PCI_VENDOR_NS, PCI_PRODUCT_NS_DP83810,
 -        22103, 5589, 5487, 0,
 +        22113, 5589, 5487, 0,
         PCI_VENDOR_NS, PCI_PRODUCT_NS_PC87415,
 -        22111, 6396, 0,
 +        22121, 6396, 0,
         PCI_VENDOR_NS, PCI_PRODUCT_NS_PC87560,
 -        22119, 22125, 8209, 0,
 +        22129, 22135, 8209, 0,
         PCI_VENDOR_NS, PCI_PRODUCT_NS_USB,
          6721, 0,
         PCI_VENDOR_NS, PCI_PRODUCT_NS_DP83815,
 -        22132, 5589, 5487, 0,
 +        22142, 5589, 5487, 0,
         PCI_VENDOR_NS, PCI_PRODUCT_NS_DP83820,
 -        22140, 5502, 5487, 0,
 +        22150, 5502, 5487, 0,
         PCI_VENDOR_NS, PCI_PRODUCT_NS_CS5535_HB,
 -        22148, 6621, 6333, 0,
 +        22158, 6621, 6333, 0,
         PCI_VENDOR_NS, PCI_PRODUCT_NS_CS5535_ISA,
 -        22148, 6607, 6333, 0,
 +        22158, 6607, 6333, 0,
         PCI_VENDOR_NS, PCI_PRODUCT_NS_CS5535_IDE,
 -        22148, 6396, 6225, 0,
 +        22158, 6396, 6225, 0,
         PCI_VENDOR_NS, PCI_PRODUCT_NS_CS5535_AUDIO,
 -        22148, 6824, 6225, 0,
 +        22158, 6824, 6225, 0,
         PCI_VENDOR_NS, PCI_PRODUCT_NS_CS5535_USB,
 -        22148, 6721, 6729, 6225, 0,
 +        22158, 6721, 6729, 6225, 0,
         PCI_VENDOR_NS, PCI_PRODUCT_NS_CS5535_VIDEO,
 -        22148, 234, 6225, 0,
 +        22158, 234, 6225, 0,
         PCI_VENDOR_NS, PCI_PRODUCT_NS_SATURN,
 -        22155, 0,
 +        22165, 0,
         PCI_VENDOR_NS, PCI_PRODUCT_NS_SC1100_IDE,
 -        22162, 615, 6396, 0,
 +        22172, 615, 6396, 0,
         PCI_VENDOR_NS, PCI_PRODUCT_NS_SC1100_AUDIO,
 -        22162, 22169, 0,
 +        22172, 22179, 0,
         PCI_VENDOR_NS, PCI_PRODUCT_NS_SC1100_ISA,
 -        22162, 6607, 6333, 0,
 +        22172, 6607, 6333, 0,
         PCI_VENDOR_NS, PCI_PRODUCT_NS_SC1100_ACPI,
 -        22162, 22181, 0,
 +        22172, 22191, 0,
         PCI_VENDOR_NS, PCI_PRODUCT_NS_SC1100_XBUS,
 -        22162, 22190, 0,
 +        22172, 22200, 0,
         PCI_VENDOR_NS, PCI_PRODUCT_NS_NS87410,
 -        22196, 0,
 +        22206, 0,
         PCI_VENDOR_PHILIPS, PCI_PRODUCT_PHILIPS_SAA7130HL,
 -        22204, 615, 234, 22214, 6689, 0,
 +        22214, 615, 234, 22224, 6689, 0,
         PCI_VENDOR_PHILIPS, PCI_PRODUCT_PHILIPS_SAA7133HL,
 -        22224, 615, 22234, 22214, 6689, 0,
 +        22234, 615, 22244, 22224, 6689, 0,
         PCI_VENDOR_PHILIPS, PCI_PRODUCT_PHILIPS_SAA7134HL,
 -        22238, 615, 22234, 22214, 6689, 0,
 +        22248, 615, 22244, 22224, 6689, 0,
         PCI_VENDOR_PHILIPS, PCI_PRODUCT_PHILIPS_SAA7135HL,
 -        22248, 615, 22234, 22214, 6689, 0,
 +        22258, 615, 22244, 22224, 6689, 0,
         PCI_VENDOR_PHILIPS, PCI_PRODUCT_PHILIPS_SAA7146AH,
 -        22258, 615, 2455, 6333, 0,
 +        22268, 615, 2455, 6333, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_810,
 -        22268, 0,
 +        22278, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_820,
 -        22275, 0,
 +        22285, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_825,
 -        22282, 0,
 +        22292, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_815,
 -        22289, 0,
 +        22299, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_810AP,
 -        22296, 0,
 +        22306, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_860,
 -        22305, 0,
 +        22315, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_1510D,
 -        22312, 0,
 +        22322, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_896,
 -        22321, 0,
 +        22331, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_895,
 -        22328, 0,
 +        22338, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_885,
 -        22335, 0,
 +        22345, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_875,
 -        22342, 0,
 +        22352, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_1510,
 -        22353, 0,
 +        22363, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_895A,
 -        22361, 0,
 +        22371, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_875A,
 -        22369, 0,
 +        22379, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_1010,
 -        22377, 0,
 +        22387, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_1010_2,
 -        22377, 22385, 0,
 +        22387, 22395, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_1030,
 -        22393, 0,
 +        22403, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_1030R,
 -        22409, 0,
 +        22419, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_1030ZC,
 -        22418, 0,
 -        PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_1035,
          22428, 0,
 +        PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_1035,
 +        22438, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_1035ZC,
 -        22436, 0,
 -        PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1064,
          22446, 0,
 +        PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1064,
 +        22456, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1068,
 -        22454, 0,
 +        22464, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1068_2,
 -        22454, 0,
 +        22464, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1064E,
 -        22462, 0,
 +        22472, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1064E_2,
 -        22462, 0,
 +        22472, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1068E,
 -        22471, 0,
 +        22481, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1068E_2,
 -        22471, 0,
 +        22481, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1066E,
 -        22480, 0,
 +        22490, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_MEGARAID_2208,
 -        8325, 22489, 0,
 +        8325, 22499, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1064A,
 -        22497, 0,
 +        22507, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1066,
 -        22506, 0,
 +        22516, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1078,
 -        22514, 615, 0,
 +        22524, 615, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1078_PCIE,
 -        22514, 615, 4329, 0,
 +        22524, 615, 4329, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2116_1,
 -        22522, 0,
 +        22532, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2116_2,
 -        22522, 0,
 +        22532, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2308_3,
 -        22530, 0,
 +        22540, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2004,
 -        22538, 0,
 +        22548, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2008,
 -        22546, 0,
 +        22556, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2008_1,
 -        8325, 22546, 0,
 +        8325, 22556, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2108_3,
 -        22554, 0,
 +        22564, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2108_4,
 -        22554, 0,
 +        22564, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2108_5,
 -        22554, 0,
 +        22564, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2108_1,
 -        8325, 22554, 22562, 22569, 0,
 +        8325, 22564, 22572, 22579, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2108_2,
 -        8325, 22554, 22569, 0,
 +        8325, 22564, 22579, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1078DE,
 -        22574, 0,
 +        22584, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2208_1,
 -        22489, 0,
 +        22499, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2208_2,
 -        22489, 0,
 +        22499, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2208_3,
 -        22489, 0,
 +        22499, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2208_4,
 -        22489, 0,
 +        22499, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2208_5,
 -        22489, 0,
 +        22499, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2208_6,
 -        22489, 0,
 +        22499, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2308_1,
 -        22530, 0,
 +        22540, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2308_2,
 -        22530, 0,
 +        22540, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_875J,
 -        22584, 0,
 +        22594, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC909,
 -        22592, 0,
 +        22602, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC909A,
 -        22598, 0,
 +        22608, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC929,
 -        22605, 0,
 +        22615, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC929_1,
 -        22605, 0,
 +        22615, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC919,
 -        22611, 0,
 +        22621, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC919_1,
 -        22611, 0,
 +        22621, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC929X,
 -        22617, 0,
 +        22627, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC919X,
 -        22624, 0,
 +        22634, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC949X,
 -        22631, 0,
 +        22641, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC939X,
 -        22638, 0,
 +        22648, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC949E,
 -        22645, 0,
 +        22655, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_MEGARAID_320X,
 -        289, 22652, 6440, 22661, 0,
 +        289, 22662, 6440, 22671, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_MEGARAID_320E,
 -        289, 22652, 6440, 22667, 0,
 +        289, 22662, 6440, 22677, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_MEGARAID_300X,
 -        289, 22652, 8249, 22673, 0,
 +        289, 22662, 8249, 22683, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_MEGARAID_SAS,
          8325, 5779, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_MEGARAID_VERDE_ZCR,
 -        8325, 22689, 22695, 0,
 +        8325, 22699, 22705, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_PERC_4SC,
 -        7291, 22699, 0,
 +        7291, 22709, 0,
         PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_PE_GNIC,
 -        4487, 4494, 22704, 5487, 0,
 +        4487, 4494, 22714, 5487, 0,
         PCI_VENDOR_PARALLELS, PCI_PRODUCT_PARALLELS_TOOLS,
 -        22710, 0,
 +        22720, 0,
         PCI_VENDOR_PARALLELS, PCI_PRODUCT_PARALLELS_VIDEO,
          234, 0,
         PCI_VENDOR_PARALLELS, PCI_PRODUCT_PARALLELS_VIDEO2,
 @@ -6480,77 +6482,77 @@
         PCI_VENDOR_NEC, PCI_PRODUCT_NEC_USB,
          6721, 6729, 6225, 0,
         PCI_VENDOR_NEC, PCI_PRODUCT_NEC_VRC4173_CARDU,
 -        22716, 22724, 22732, 0,
 +        22726, 22734, 22742, 0,
         PCI_VENDOR_NEC, PCI_PRODUCT_NEC_POWERVR2,
 -        22737, 22745, 0,
 +        22747, 22755, 0,
         PCI_VENDOR_NEC, PCI_PRODUCT_NEC_PD72872,
 -        22750, 14406, 14411, 6729, 6225, 0,
 +        22760, 14406, 14411, 6729, 6225, 0,
         PCI_VENDOR_NEC, PCI_PRODUCT_NEC_PKUGX001,
 -        22759, 20965, 5534, 0,
 +        22769, 20975, 5534, 0,
         PCI_VENDOR_NEC, PCI_PRODUCT_NEC_PKUGX008,
 -        22770, 0,
 +        22780, 0,
         PCI_VENDOR_NEC, PCI_PRODUCT_NEC_VRC4173_BCU,
 -        22716, 22781, 8388, 22732, 0,
 +        22726, 22791, 8388, 22742, 0,
         PCI_VENDOR_NEC, PCI_PRODUCT_NEC_VRC4173_AC97U,
 -        22716, 8136, 22732, 0,
 +        22726, 8136, 22742, 0,
         PCI_VENDOR_NEC, PCI_PRODUCT_NEC_PD72870,
 -        22785, 14406, 14411, 6729, 6225, 0,
 +        22795, 14406, 14411, 6729, 6225, 0,
         PCI_VENDOR_NEC, PCI_PRODUCT_NEC_PD72871,
 -        22794, 14406, 14411, 6729, 6225, 0,
 +        22804, 14406, 14411, 6729, 6225, 0,
         PCI_VENDOR_NEC, PCI_PRODUCT_NEC_PD720100A,
          9154, 6729, 6225, 0,
         PCI_VENDOR_NEC, PCI_PRODUCT_NEC_PD720400,
 -        22803, 615, 4329, 16154, 22813, 6333, 0,
 +        22813, 615, 4329, 16154, 22823, 6333, 0,
         PCI_VENDOR_NEC, PCI_PRODUCT_NEC_PD720200,
          14604, 6729, 6225, 0,
         PCI_VENDOR_NEC, PCI_PRODUCT_NEC_VA26D,
 -        22823, 7023, 7964, 22829, 0,
 +        22833, 7023, 7964, 22839, 0,
         PCI_VENDOR_NEC, PCI_PRODUCT_NEC_VERSALX,
 -        22823, 7964, 0,
 +        22833, 7964, 0,
         PCI_VENDOR_NEOMAGIC, PCI_PRODUCT_NEOMAGIC_NMMG2070,
 -        22835, 22846, 0,
 +        22845, 22856, 0,
         PCI_VENDOR_NEOMAGIC, PCI_PRODUCT_NEOMAGIC_NMMG128V,
 -        22835, 22853, 0,
 +        22845, 22863, 0,
         PCI_VENDOR_NEOMAGIC, PCI_PRODUCT_NEOMAGIC_NMMG128ZV,
 -        22835, 22858, 0,
 +        22845, 22868, 0,
         PCI_VENDOR_NEOMAGIC, PCI_PRODUCT_NEOMAGIC_NMMG2160,
 -        22835, 22864, 0,
 +        22845, 22874, 0,
         PCI_VENDOR_NEOMAGIC, PCI_PRODUCT_NEOMAGIC_NMMM256AV_VGA,
 -        22870, 22881, 7967, 0,
 +        22880, 22891, 7967, 0,
         PCI_VENDOR_NEOMAGIC, PCI_PRODUCT_NEOMAGIC_NMMM256ZX_VGA,
 -        22870, 22887, 7967, 0,
 +        22880, 22897, 7967, 0,
         PCI_VENDOR_NEOMAGIC, PCI_PRODUCT_NEOMAGIC_NMMM256XLP_AU,
 -        22870, 22893, 6824, 0,
 +        22880, 22903, 6824, 0,
         PCI_VENDOR_NEOMAGIC, PCI_PRODUCT_NEOMAGIC_NMMM256AV_AU,
 -        22870, 22881, 6824, 0,
 +        22880, 22891, 6824, 0,
         PCI_VENDOR_NEOMAGIC, PCI_PRODUCT_NEOMAGIC_NMMM256ZX_AU,
 -        22870, 22887, 6824, 0,
 +        22880, 22897, 6824, 0,
         PCI_VENDOR_NETCHIP, PCI_PRODUCT_NETCHIP_NET2280,
 -        22900, 6721, 2427, 6225, 0,
 +        22910, 6721, 2427, 6225, 0,
         PCI_VENDOR_NETCHIP, PCI_PRODUCT_NETCHIP_NET2282,
 -        22908, 6721, 2427, 6225, 0,
 +        22918, 6721, 2427, 6225, 0,
         PCI_VENDOR_NETGEAR, PCI_PRODUCT_NETGEAR_GA620,
 -        22916, 7636, 5487, 0,
 +        22926, 7636, 5487, 0,
         PCI_VENDOR_NETGEAR, PCI_PRODUCT_NETGEAR_GA620T,
 -        22916, 7647, 5487, 0,
 +        22926, 7647, 5487, 0,
         PCI_VENDOR_NETGEAR, PCI_PRODUCT_NETGEAR_MA301,
 -        22922, 615, 14406, 7446, 0,
 +        22932, 615, 14406, 7446, 0,
         PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9805,
 -        22928, 22933, 7887, 0,
 +        22938, 22943, 7887, 0,
         PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9815,
 -        10019, 22928, 22933, 7887, 0,
 +        10019, 22938, 22943, 7887, 0,
         PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9820,
          6345, 10885, 0,
         PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9835,
 -        10019, 10885, 558, 22928, 22933, 7887, 0,
 +        10019, 10885, 558, 22938, 22943, 7887, 0,
         PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9845,
 -        13041, 10885, 558, 22928, 22933, 7887, 0,
 +        13041, 10885, 558, 22938, 22943, 7887, 0,
         PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9855,
 -        22941, 13041, 10885, 558, 22928, 22933, 7887, 0,
 +        22951, 13041, 10885, 558, 22938, 22943, 7887, 0,
         PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9865,
 -        22946, 13041, 10885, 558, 22928, 22933, 7887, 0,
 +        22956, 13041, 10885, 558, 22938, 22943, 7887, 0,
         PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_MCS9990,
 -        22951, 13041, 6721, 6740, 7887, 0,
 +        22961, 13041, 6721, 6740, 7887, 0,
         PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9901,
          10019, 15580, 10885, 0,
         PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9904,
 @@ -6560,2435 +6562,2435 @@
         PCI_VENDOR_NETSEC, PCI_PRODUCT_NETSEC_7751,
          16039, 0,
         PCI_VENDOR_NEXGEN, PCI_PRODUCT_NEXGEN_NX82C501,
 -        22959, 6621, 6333, 0,
 +        22969, 6621, 6333, 0,
         PCI_VENDOR_NKK, PCI_PRODUCT_NKK_NDR4600,
 -        22968, 6621, 6333, 0,
 +        22978, 6621, 6333, 0,
         PCI_VENDOR_NORTEL, PCI_PRODUCT_NORTEL_BAYSTACK_21,
 -        22976, 22985, 22988, 6492, 22996, 0,
 +        22986, 22995, 22998, 6492, 23006, 0,
         PCI_VENDOR_NUMBER9, PCI_PRODUCT_NUMBER9_I128,
 -        23004, 0,
 +        23014, 0,
         PCI_VENDOR_NUMBER9, PCI_PRODUCT_NUMBER9_I128_2,
 -        23004, 7361, 0,
 +        23014, 7361, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_RIVATNT,
 -        23016, 23021, 0,
 +        23026, 23031, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_RIVATNT2,
 -        23016, 23025, 0,
 +        23026, 23035, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_RIVATNT2U,
 -        23016, 23025, 6935, 0,
 +        23026, 23035, 6935, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_VANTA,
 -        23030, 0,
 +        23040, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_RIVATNT2M64,
 -        23016, 23025, 23036, 23042, 0,
 +        23026, 23035, 23046, 23052, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP04_PCIB,
 -        23045, 6607, 6333, 0,
 +        23055, 6607, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP04_SMBUS,
 -        23045, 8226, 0,
 +        23055, 8226, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP04_IDE,
 -        23045, 6396, 0,
 +        23055, 6396, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP04_SATA,
 -        23045, 8249, 0,
 +        23055, 8249, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP04_LAN1,
 -        23045, 5487, 0,
 +        23055, 5487, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP04_LAN2,
 -        23045, 5487, 0,
 +        23055, 5487, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP04_SATA2,
 -        23045, 8249, 0,
 +        23055, 8249, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE_6800U,
 -        23051, 23059, 6935, 0,
 +        23061, 23069, 6935, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE_6800,
 -        23051, 23059, 0,
 +        23061, 23069, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE_6800LE,
 -        23051, 23059, 9046, 0,
 +        23061, 23069, 9046, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE_6800GT,
 -        23051, 23059, 23064, 0,
 +        23061, 23069, 23074, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE4_PCIB1,
 -        23067, 6607, 6333, 0,
 +        23077, 6607, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE4_PCIB2,
 -        23067, 6607, 6333, 0,
 +        23077, 6607, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE4_SMBUS,
 -        23067, 8226, 0,
 +        23077, 8226, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE4_ATA133,
 -        23067, 23075, 6396, 0,
 +        23077, 23085, 6396, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE4_SATA1,
 -        23067, 10492, 6216, 14351, 0,
 +        23077, 10492, 6216, 14351, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE4_SATA2,
 -        23067, 10492, 6216, 6181, 0,
 +        23077, 10492, 6216, 6181, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE4_LAN1,
 -        23067, 5487, 0,
 +        23077, 5487, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE4_LAN2,
 -        23067, 5487, 0,
 +        23077, 5487, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE4_AC,
 -        23067, 18670, 0,
 +        23077, 18670, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE4_USB,
 -        23067, 6721, 6729, 6225, 0,
 +        23077, 6721, 6729, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE4_USB2,
 -        23067, 9154, 6729, 6225, 0,
 +        23077, 9154, 6729, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE4_PCI,
 -        23067, 615, 6729, 6333, 0,
 +        23077, 615, 6729, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE4_PCIE,
 -        23067, 21371, 6729, 6333, 0,
 +        23077, 21381, 6729, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE4_MEM,
 -        23067, 4513, 6225, 0,
 +        23077, 4513, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_PCIB,
 -        23082, 6607, 6333, 0,
 +        23092, 6607, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_SMBUS,
 -        23082, 8226, 6225, 0,
 +        23092, 8226, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_ATA133,
 -        23082, 23075, 6396, 0,
 +        23092, 23085, 6396, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_LAN,
 -        23082, 5487, 0,
 +        23092, 5487, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_OHCI,
 -        23082, 6721, 6729, 6225, 0,
 +        23092, 6721, 6729, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_EHCI,
 -        23082, 9154, 6729, 6225, 0,
 +        23092, 9154, 6729, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_MCPT_AC,
 -        23082, 23090, 18670, 0,
 +        23092, 23100, 18670, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_MCPT_AP,
 -        23082, 23090, 6824, 811, 22732, 0,
 +        23092, 23100, 6824, 811, 22742, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_PPB,
 -        23082, 8055, 6333, 0,
 +        23092, 8055, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_FW,
 -        23082, 8441, 6225, 0,
 +        23092, 8441, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_400_PCIB,
 -        23082, 6935, 23096, 6607, 6333, 0,
 +        23092, 6935, 23106, 6607, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_400_SMBUS,
 -        23082, 6935, 23096, 8226, 6225, 0,
 +        23092, 6935, 23106, 8226, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_400_ATA133,
 -        23082, 6935, 23096, 23075, 6396, 0,
 +        23092, 6935, 23106, 23085, 6396, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_400_LAN1,
 -        23082, 6935, 23096, 5487, 0,
 +        23092, 6935, 23106, 5487, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_400_OHCI,
 -        23082, 6935, 23096, 6721, 6729, 6225, 0,
 +        23092, 6935, 23106, 6721, 6729, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_400_EHCI,
 -        23082, 6935, 23096, 9154, 6729, 6225, 0,
 +        23092, 6935, 23106, 9154, 6729, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_400_MCPT_AC,
 -        23082, 6935, 23096, 18670, 0,
 +        23092, 6935, 23106, 18670, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_400_PPB,
 -        23082, 6935, 23096, 8055, 6333, 0,
 +        23092, 6935, 23106, 8055, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_400_LAN2,
 -        23082, 6935, 23096, 5487, 0,
 +        23092, 6935, 23106, 5487, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_400_SATA,
 -        23082, 6935, 23096, 10492, 6216, 6225, 0,
 +        23092, 6935, 23106, 10492, 6216, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_ALADDINTNT2,
 -        23100, 23025, 0,
 +        23110, 23035, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_PCIB,
 -        23108, 6607, 6333, 0,
 +        23118, 6607, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_PCHB,
 -        23108, 6621, 6333, 0,
 +        23118, 6621, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_PPB2,
 -        23108, 8055, 0,
 +        23118, 8055, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_SMBUS,
 -        23108, 8226, 6225, 0,
 +        23118, 8226, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_ATA133,
 -        23108, 23075, 6396, 0,
 +        23118, 23085, 6396, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_LAN1,
 -        23108, 5487, 0,
 +        23118, 5487, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_OHCI,
 -        23108, 6721, 6729, 6225, 0,
 +        23118, 6721, 6729, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_EHCI,
 -        23108, 9154, 6729, 6225, 0,
 +        23118, 9154, 6729, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_MCPT_AC,
 -        23108, 23090, 18670, 0,
 +        23118, 23100, 18670, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_PPB,
 -        23108, 8055, 6333, 0,
 +        23118, 8055, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_LAN4,
 -        23108, 5487, 19164, 0,
 +        23118, 5487, 19164, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_250_PCIB,
 -        23108, 23116, 6607, 6333, 0,
 +        23118, 23126, 6607, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_250_PCHB,
 -        23108, 23116, 6621, 6333, 0,
 +        23118, 23126, 6621, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_250_AGP,
 -        23108, 23116, 8068, 0,
 +        23118, 23126, 8068, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_250_SATA,
 -        23108, 23116, 10492, 6216, 6225, 0,
 +        23118, 23126, 10492, 6216, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_250_SMBUS,
 -        23108, 23116, 8226, 6225, 0,
 +        23118, 23126, 8226, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_250_ATA133,
 -        23108, 23116, 23075, 6396, 0,
 +        23118, 23126, 23085, 6396, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_250_LAN,
 -        23108, 23116, 5487, 0,
 +        23118, 23126, 5487, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_250_OHCI,
 -        23108, 23116, 6721, 6729, 6225, 0,
 +        23118, 23126, 6721, 6729, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_250_EHCI,
 -        23108, 23116, 9154, 6729, 6225, 0,
 +        23118, 23126, 9154, 6729, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_250_MCPT_AC,
 -        23108, 23116, 23090, 18670, 0,
 +        23118, 23126, 23100, 18670, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_250_PPB,
 -        23108, 23116, 8055, 6333, 0,
 +        23118, 23126, 8055, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_250_SATA2,
 -        23108, 23116, 10492, 6216, 6225, 0,
 +        23118, 23126, 10492, 6216, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADROFX3400,
 -        23120, 23127, 10292, 0,
 +        23130, 23137, 10292, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO4_280NVS2,
 -        23130, 23138, 23142, 0,
 +        23140, 23148, 23152, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADROFX1300,
 -        23120, 23127, 23146, 0,
 +        23130, 23137, 23156, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCEPCX4300,
 -        23051, 23151, 23155, 0,
 +        23061, 23161, 23165, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE256,
 -        23051, 23160, 0,
 +        23061, 23170, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCEDDR,
 -        23051, 21363, 0,
 +        23061, 21373, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO,
 -        23120, 0,
 +        23130, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE2MX,
 -        23164, 23173, 0,
 +        23174, 23183, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE2MX200,
 -        23164, 23173, 23176, 0,
 +        23174, 23183, 23186, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE2GO,
 -        23164, 23184, 0,
 +        23174, 23194, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO2_MXR,
 -        23187, 23195, 0,
 +        23197, 23205, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE6600GT,
 -        23051, 23202, 23064, 0,
 +        23061, 23212, 23074, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE6600,
 -        23051, 23202, 0,
 +        23061, 23212, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE6600_2,
 -        23051, 23202, 0,
 +        23061, 23212, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE6600GO,
 -        23051, 23202, 23184, 0,
 +        23061, 23212, 23194, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE6610XL,
 -        23051, 23207, 5577, 0,
 +        23061, 23217, 5577, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE6600GO_2,
 -        23051, 23202, 23184, 0,
 +        23061, 23212, 23194, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADROFX5500,
 -        23120, 23127, 23212, 0,
 +        23130, 23137, 23222, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADROFX540,
 -        23120, 23127, 23217, 0,
 +        23130, 23137, 23227, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE6200,
 -        23051, 19909, 0,
 +        23061, 19909, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE2,
 -        23164, 23221, 0,
 +        23174, 23231, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE2DDR,
 -        23164, 23221, 23225, 0,
 +        23174, 23231, 23235, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE2BR,
 -        23164, 23221, 0,
 +        23174, 23231, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO2,
 -        23187, 0,
 +        23197, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE6200TC,
 -        23051, 23231, 0,
 +        23061, 23241, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE6200LE,
 -        23051, 23238, 0,
 +        23061, 23248, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE4_MX460,
 -        23245, 23173, 23254, 0,
 +        23255, 23183, 23264, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE4_MX440,
 -        23245, 23173, 23258, 0,
 +        23255, 23183, 23268, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE4_MX420,
 -        23245, 23173, 23262, 0,
 +        23255, 23183, 23272, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF4_MX440_SE,
 -        23245, 23173, 23258, 23266, 0,
 +        23255, 23183, 23268, 23276, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO4_500XGL,
 -        23130, 23269, 0,
 +        23140, 23279, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO4_200NVS,
 -        23130, 23276, 0,
 +        23140, 23286, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF4_MX440_8X,
 -        23245, 23173, 23258, 23287, 0,
 +        23255, 23183, 23268, 23297, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF4_MX440_SE_8X,
 -        23245, 23173, 23258, 23266, 23287, 0,
 +        23255, 23183, 23268, 23276, 23297, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF4_MX420_8X,
 -        23245, 23173, 23262, 23287, 0,
 +        23255, 23183, 23272, 23297, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO4_580XGL,
 -        23130, 23295, 23299, 0,
 +        23140, 23305, 23309, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO4_280NVS,
 -        23130, 23138, 23142, 0,
 +        23140, 23148, 23152, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO4_380XGL,
 -        23130, 23303, 23299, 0,
 +        23140, 23313, 23309, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADROFX4600,
 -        23120, 23127, 23307, 0,
 +        23130, 23137, 23317, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE2_IGP,
 -        23164, 692, 10310, 0,
 +        23174, 692, 10310, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE_MCP_AC,
 -        23312, 23319, 18670, 0,
 +        23322, 23329, 18670, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_XBOX_SMBUS,
 -        23323, 23312, 8226, 6225, 0,
 +        23333, 23322, 8226, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE_ATA100,
 -        23312, 23328, 6396, 0,
 +        23322, 23338, 6396, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE_USB,
 -        23312, 6721, 0,
 +        23322, 6721, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE_LAN,
 -        23312, 5487, 0,
 +        23322, 5487, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE_7300LE,
 -        23051, 23335, 9046, 0,
 +        23061, 23345, 9046, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_PCHB,
 -        23082, 6621, 6333, 0,
 +        23092, 6621, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_PPB2,
 -        23082, 8055, 6333, 0,
 +        23092, 8055, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_MEM1,
 -        23082, 4513, 6225, 0,
 +        23092, 4513, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_MEM2,
 -        23082, 4513, 6225, 0,
 +        23092, 4513, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_MEM3,
 -        23082, 4513, 6225, 0,
 +        23092, 4513, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_MEM4,
 -        23082, 4513, 6225, 0,
 +        23092, 4513, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_MEM5,
 -        23082, 4513, 6225, 0,
 +        23092, 4513, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF4_MX_IGP,
 -        23245, 23173, 692, 10310, 0,
 +        23255, 23183, 692, 10310, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE3,
 -        23340, 0,
 +        23350, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE3_TI200,
 -        23340, 23349, 10052, 0,
 +        23350, 23359, 10052, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE3_TI500,
 -        23340, 23349, 23352, 0,
 +        23350, 23359, 23362, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO_DCC,
 -        23120, 23356, 0,
 +        23130, 23366, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE_6150,
 -        23051, 23360, 0,
 +        23061, 23370, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE_6150LE,
 -        23051, 23360, 9046, 0,
 +        23061, 23370, 9046, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE4_TI4600,
 -        23245, 23349, 23307, 0,
 +        23255, 23359, 23317, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE4_TI4400,
 -        23245, 23349, 23365, 0,
 +        23255, 23359, 23375, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE4_TI4200,
 -        23245, 23349, 23370, 0,
 +        23255, 23359, 23380, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO4_900XGL,
 -        23130, 23375, 0,
 +        23140, 23385, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO4_750XGL,
 -        23130, 23382, 0,
 +        23140, 23392, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO4_700XGL,
 -        23130, 23389, 0,
 +        23140, 23399, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE430_PCIB,
 -        23396, 6607, 6333, 0,
 +        23406, 6607, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE430_SMBUS,
 -        23396, 8226, 6225, 0,
 +        23406, 8226, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE430_ATA133,
 -        23396, 23075, 6396, 6225, 0,
 +        23406, 23085, 6396, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE430_SATA1,
 -        23396, 10492, 6216, 6225, 0,
 +        23406, 10492, 6216, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE430_SATA2,
 -        23396, 10492, 6216, 6225, 0,
 +        23406, 10492, 6216, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE430_LAN1,
 -        23396, 5479, 5487, 6225, 0,
 +        23406, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE430_LAN2,
 -        23396, 5479, 5487, 6225, 0,
 +        23406, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE430_AC,
 -        23396, 18670, 6824, 6225, 0,
 +        23406, 18670, 6824, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE430_HDA,
 -        23396, 19137, 19142, 6824, 6225, 0,
 +        23406, 19137, 19142, 6824, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE430_OHCI,
 -        23396, 6721, 6225, 0,
 +        23406, 6721, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE430_EHCI,
 -        23396, 9154, 6225, 0,
 +        23406, 9154, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE430_PPB,
 -        23396, 8055, 6333, 0,
 +        23406, 8055, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE430_HB,
 -        23396, 6729, 6333, 0,
 +        23406, 6729, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE430_MC,
 -        23396, 4513, 6225, 0,
 +        23406, 4513, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_MC2,
 -        23406, 4513, 6225, 6181, 0,
 +        23416, 4513, 6225, 6181, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_MC3,
 -        23406, 4513, 6225, 6192, 0,
 +        23416, 4513, 6225, 6192, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF4_TI_4800,
 -        23245, 23349, 23410, 0,
 +        23255, 23359, 23420, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF4_TI_4200_8X,
 -        23245, 23349, 23370, 23287, 0,
 +        23255, 23359, 23380, 23297, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF4_TI_4800_SE,
 -        23245, 23349, 23410, 23266, 0,
 +        23255, 23359, 23420, 23276, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF4_TI_4200_GO,
 -        23245, 23349, 23370, 23184, 8068, 23415, 0,
 +        23255, 23359, 23380, 23194, 8068, 23425, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO4_980_XGL,
 -        23130, 23418, 23299, 0,
 +        23140, 23428, 23309, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO4_780_XGL,
 -        23130, 23422, 23299, 0,
 +        23140, 23432, 23309, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO_FX_1500,
 -        23120, 23127, 23426, 0,
 +        23130, 23137, 23436, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_XBOXFB,
 -        23323, 23431, 23437, 0,
 +        23333, 23441, 23447, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_XBOX_PCHB,
 -        23323, 23312, 6621, 6333, 0,
 +        23333, 23322, 6621, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_HB_02F0,
 -        23406, 6729, 6333, 23444, 0,
 +        23416, 6729, 6333, 23454, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_HB_02F1,
 -        23406, 6729, 6333, 23453, 0,
 +        23416, 6729, 6333, 23463, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_HB_02F2,
 -        23406, 6729, 6333, 23462, 0,
 +        23416, 6729, 6333, 23472, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_HB_02F3,
 -        23406, 6729, 6333, 23471, 0,
 +        23416, 6729, 6333, 23481, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_HB_02F4,
 -        23406, 6729, 6333, 23480, 0,
 +        23416, 6729, 6333, 23490, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_HB_02F5,
 -        23406, 6729, 6333, 23489, 0,
 +        23416, 6729, 6333, 23499, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_HB_02F6,
 -        23406, 6729, 6333, 23498, 0,
 +        23416, 6729, 6333, 23508, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_HB_02F7,
 -        23406, 6729, 6333, 23507, 0,
 +        23416, 6729, 6333, 23517, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_MC5,
 -        23406, 4513, 6225, 13812, 0,
 +        23416, 4513, 6225, 13812, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_MC4,
 -        23406, 4513, 6225, 6556, 0,
 +        23416, 4513, 6225, 6556, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_MC0,
 -        23406, 4513, 6225, 20818, 0,
 +        23416, 4513, 6225, 20828, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_PPB_02FB,
 -        23406, 615, 4329, 6333, 23516, 0,
 +        23416, 615, 4329, 6333, 23526, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_PPB_02FC,
 -        23406, 615, 4329, 6333, 23525, 0,
 +        23416, 615, 4329, 6333, 23535, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_PPB_02FD,
 -        23406, 615, 4329, 6333, 23534, 0,
 +        23416, 615, 4329, 6333, 23544, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_MC1,
 -        23406, 4513, 6225, 14351, 0,
 +        23416, 4513, 6225, 14351, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_HB_02FF,
 -        23406, 6729, 6333, 23543, 0,
 +        23416, 6729, 6333, 23553, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE_FX5800U,
 -        23051, 23127, 23552, 6935, 0,
 +        23061, 23137, 23562, 6935, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE_FX5800,
 -        23051, 23127, 23552, 0,
 +        23061, 23137, 23562, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO_FX_2000,
 -        23120, 23127, 1319, 0,
 +        23130, 23137, 1319, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO_FX_1000,
 -        23120, 23127, 14095, 0,
 +        23130, 23137, 14095, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF_FX5600U,
 -        23051, 23127, 10157, 6935, 0,
 +        23061, 23137, 10157, 6935, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF_FX5600,
 -        23051, 23127, 10157, 0,
 +        23061, 23137, 10157, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF_FX5600_SE,
 -        23051, 23127, 10157, 23266, 0,
 +        23061, 23137, 10157, 23276, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF_FX5200U,
 -        23051, 23127, 23557, 6935, 0,
 +        23061, 23137, 23567, 6935, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF_FX5200,
 -        23051, 23127, 23557, 0,
 +        23061, 23137, 23567, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF_FX5200SE,
 -        23051, 23127, 23562, 0,
 +        23061, 23137, 23572, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO_FX_500,
 -        23120, 23127, 23352, 0,
 +        23130, 23137, 23362, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF_FX5900U,
 -        23051, 23127, 23569, 6935, 0,
 +        23061, 23137, 23579, 6935, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF_FX5900,
 -        23051, 23127, 23569, 0,
 +        23061, 23137, 23579, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF_FX5900XT,
 -        23051, 23127, 23574, 0,
 +        23061, 23137, 23584, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF_FX5950U,
 -        23051, 23127, 23581, 6935, 0,
 +        23061, 23137, 23591, 6935, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO_FX_3000,
 -        23120, 23127, 14756, 0,
 +        23130, 23137, 14756, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF_FX5700_LE,
 -        23051, 23127, 23586, 9046, 0,
 +        23061, 23137, 23596, 9046, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_LPC2,
 -        23312, 23591, 8222, 6333, 0,
 +        23322, 23601, 8222, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_ISA,
 -        23312, 23591, 6607, 6333, 0,
 +        23322, 23601, 6607, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_LPC,
 -        23312, 23591, 8222, 6333, 0,
 +        23322, 23601, 8222, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_SMB,
 -        23312, 23591, 8226, 6225, 0,
 +        23322, 23601, 8226, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_MEM,
 -        23312, 23591, 4513, 6225, 0,
 +        23322, 23601, 4513, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_MEM2,
 -        23312, 23591, 4513, 6225, 0,
 +        23322, 23601, 4513, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_IDE,
 -        23312, 23591, 23075, 6396, 6225, 0,
 +        23322, 23601, 23085, 6396, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_OHCI,
 -        23312, 23591, 8019, 6721, 6225, 0,
 +        23322, 23601, 8019, 6721, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_EHCI,
 -        23312, 23591, 8024, 6721, 6225, 0,
 +        23322, 23601, 8024, 6721, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_PPB,
 -        23312, 23591, 8055, 6333, 0,
 +        23322, 23601, 8055, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_HDA,
 -        23312, 23591, 19137, 19142, 6824, 6225, 0,
 +        23322, 23601, 19137, 19142, 6824, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_LAN1,
 -        23312, 23591, 5479, 5487, 6225, 0,
 +        23322, 23601, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_LAN2,
 -        23312, 23591, 5479, 5487, 6225, 0,
 +        23322, 23601, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_PCIE,
 -        23312, 23591, 21836, 23597, 7887, 0,
 +        23322, 23601, 21846, 23607, 7887, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_PCIE2,
 -        23312, 23591, 21836, 23597, 7887, 0,
 +        23322, 23601, 21846, 23607, 7887, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_SATA,
 -        23312, 23591, 10492, 6216, 6225, 0,
 +        23322, 23601, 10492, 6216, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_SATA2,
 -        23312, 23591, 10492, 6216, 6225, 0,
 +        23322, 23601, 10492, 6216, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF_GO_7600,
 -        23051, 23184, 23601, 0,
 +        23061, 23194, 23611, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_ISA,
 -        23312, 23606, 6607, 6333, 0,
 +        23322, 23616, 6607, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_HDA,
 -        23312, 23606, 19137, 19142, 6824, 6225, 0,
 +        23322, 23616, 19137, 19142, 6824, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_LAN1,
 -        23312, 23606, 5479, 5487, 6225, 0,
 +        23322, 23616, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_LAN2,
 -        23312, 23606, 5479, 5487, 6225, 0,
 +        23322, 23616, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_SATA,
 -        23312, 23606, 10492, 6216, 6225, 0,
 +        23322, 23616, 10492, 6216, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_PPB_1,
 -        23312, 23606, 8055, 6333, 0,
 +        23322, 23616, 8055, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_PPB_2,
 -        23312, 23606, 8055, 6333, 0,
 +        23322, 23616, 8055, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_MEM,
 -        23312, 23606, 4513, 6225, 0,
 +        23322, 23616, 4513, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_SMB,
 -        23312, 23606, 8226, 6225, 0,
 +        23322, 23616, 8226, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_IDE,
 -        23312, 23606, 23075, 6396, 6225, 0,
 +        23322, 23616, 23085, 6396, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_LAN3,
 -        23312, 23606, 5479, 5487, 6225, 0,
 +        23322, 23616, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_LAN4,
 -        23312, 23606, 5479, 5487, 6225, 0,
 +        23322, 23616, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_HDA2,
 -        23312, 23606, 19137, 19142, 6824, 6225, 0,
 +        23322, 23616, 19137, 19142, 6824, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_OHCI,
 -        23312, 23606, 8019, 6721, 6225, 0,
 +        23322, 23616, 8019, 6721, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_EHCI,
 -        23312, 23606, 8024, 6721, 6225, 0,
 +        23322, 23616, 8024, 6721, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_PCI,
 -        23312, 23606, 8055, 6333, 0,
 +        23322, 23616, 8055, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_SMC,
 -        23312, 23606, 6, 6848, 6225, 0,
 +        23322, 23616, 6, 6848, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_MEM2,
 -        23312, 23606, 4513, 6225, 0,
 +        23322, 23616, 4513, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_SATA2,
 -        23312, 23606, 10492, 6216, 6225, 0,
 +        23322, 23616, 10492, 6216, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_SATA3,
 -        23312, 23606, 10492, 6216, 6225, 0,
 +        23322, 23616, 10492, 6216, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE_8600GTS,
 -        23051, 23612, 23221, 0,
 +        23061, 23622, 23231, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE_8600GT,
 -        23051, 23612, 23064, 0,
 +        23061, 23622, 23074, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF_8500_GT,
 -        23051, 9077, 23064, 0,
 +        23061, 9077, 23074, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF_8400M_GS,
 -        23051, 23617, 23623, 0,
 +        23061, 23627, 23633, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO_NVS140M,
 -        23120, 23142, 23626, 0,
 +        23130, 23152, 23636, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_ISA,
 -        23312, 23631, 6607, 6333, 0,
 +        23322, 23641, 6607, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_LPC1,
 -        23312, 23631, 23637, 6333, 0,
 +        23322, 23641, 23647, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_LPC2,
 -        23312, 23631, 23637, 6333, 0,
 +        23322, 23641, 23647, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_LPC3,
 -        23312, 23631, 23637, 6333, 0,
 +        23322, 23641, 23647, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_MEM,
 -        23312, 23631, 4513, 6225, 0,
 +        23322, 23641, 4513, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_MEM2,
 -        23312, 23631, 4513, 6225, 0,
 +        23322, 23641, 4513, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_SMB,
 -        23312, 23631, 8226, 6225, 0,
 +        23322, 23641, 8226, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_SMU,
 -        23312, 23631, 6, 6848, 22732, 0,
 +        23322, 23641, 6, 6848, 22742, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_IDE,
 -        23312, 23631, 23075, 6396, 6225, 0,
 +        23322, 23641, 23085, 6396, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_PCI,
 -        23312, 23631, 615, 6333, 0,
 +        23322, 23641, 615, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_HDA_1,
 -        23312, 23631, 19137, 19142, 6824, 6225, 0,
 +        23322, 23641, 19137, 19142, 6824, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_HDA_2,
 -        23312, 23631, 19137, 19142, 6824, 6225, 0,
 +        23322, 23641, 19137, 19142, 6824, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_AHCI_1,
 -        23312, 23631, 8254, 6225, 0,
 +        23322, 23641, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_AHCI_2,
 -        23312, 23631, 8254, 6225, 0,
 +        23322, 23641, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_AHCI_3,
 -        23312, 23631, 8254, 6225, 0,
 +        23322, 23641, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_AHCI_4,
 -        23312, 23631, 8254, 6225, 0,
 +        23322, 23641, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_LAN1,
 -        23312, 23631, 5479, 5487, 6225, 0,
 +        23322, 23641, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_LAN2,
 -        23312, 23631, 5479, 5487, 6225, 0,
 +        23322, 23641, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_LAN3,
 -        23312, 23631, 5479, 5487, 6225, 0,
 +        23322, 23641, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_LAN4,
 -        23312, 23631, 5479, 5487, 6225, 0,
 +        23322, 23641, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_USB_1,
 -        23312, 23631, 6721, 6225, 0,
 +        23322, 23641, 6721, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_USB_2,
 -        23312, 23631, 6721, 6225, 0,
 +        23322, 23641, 6721, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_USB_3,
 -        23312, 23631, 6721, 6225, 0,
 +        23322, 23641, 6721, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_USB_4,
 -        23312, 23631, 6721, 6225, 0,
 +        23322, 23641, 6721, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_PPB_1,
 -        23312, 23631, 8055, 6333, 0,
 +        23322, 23641, 8055, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_PPB_2,
 -        23312, 23631, 8055, 6333, 0,
 +        23322, 23641, 8055, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_PPB_3,
 -        23312, 23631, 8055, 6333, 0,
 +        23322, 23641, 8055, 6333, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_SATA,
 -        23312, 23631, 10492, 6216, 6225, 0,
 +        23322, 23641, 10492, 6216, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_SATA2,
 -        23312, 23631, 10492, 6216, 6225, 0,
 +        23322, 23641, 10492, 6216, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_SATA3,
 -        23312, 23631, 10492, 6216, 6225, 0,
 +        23322, 23641, 10492, 6216, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_SATA4,
 -        23312, 23631, 10492, 6216, 6225, 0,
 +        23322, 23641, 10492, 6216, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_SMB,
 -        23312, 23645, 8226, 6225, 0,
 +        23322, 23655, 8226, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_LAN1,
 -        23312, 23645, 5479, 5487, 6225, 0,
 +        23322, 23655, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_LAN2,
 -        23312, 23645, 5479, 5487, 6225, 0,
 +        23322, 23655, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_LAN3,
 -        23312, 23645, 5479, 5487, 6225, 0,
 +        23322, 23655, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_LAN4,
 -        23312, 23645, 5479, 5487, 6225, 0,
 +        23322, 23655, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_SATA,
 -        23312, 23645, 10492, 6216, 6225, 0,
 +        23322, 23655, 10492, 6216, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_SATA2,
 -        23312, 23645, 10492, 6216, 6225, 0,
 +        23322, 23655, 10492, 6216, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_SATA3,
 -        23312, 23645, 10492, 6216, 6225, 0,
 +        23322, 23655, 10492, 6216, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_SATA4,
 -        23312, 23645, 10492, 6216, 6225, 0,
 +        23322, 23655, 10492, 6216, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_AHCI_1,
 -        23312, 23645, 8254, 6225, 0,
 +        23322, 23655, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_AHCI_2,
 -        23312, 23645, 8254, 6225, 0,
 +        23322, 23655, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_AHCI_3,
 -        23312, 23645, 8254, 6225, 0,
 +        23322, 23655, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_AHCI_4,
 -        23312, 23645, 8254, 6225, 0,
 +        23322, 23655, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_AHCI_5,
 -        23312, 23645, 8254, 6225, 0,
 +        23322, 23655, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_AHCI_6,
 -        23312, 23645, 8254, 6225, 0,
 +        23322, 23655, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_AHCI_7,
 -        23312, 23645, 8254, 6225, 0,
 +        23322, 23655, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_AHCI_8,
 -        23312, 23645, 8254, 6225, 0,
 +        23322, 23655, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_HDA_1,
 -        23312, 23645, 19137, 19142, 6824, 6225, 0,
 +        23322, 23655, 19137, 19142, 6824, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_HDA_2,
 -        23312, 23645, 19137, 19142, 6824, 6225, 0,
 +        23322, 23655, 19137, 19142, 6824, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_IDE,
 -        23312, 23645, 23075, 6396, 6225, 0,
 +        23322, 23655, 23085, 6396, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_IDE,
 -        23312, 23651, 23075, 6396, 6225, 0,
 +        23322, 23661, 23085, 6396, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE8400GS,
 -        23051, 23657, 23623, 0,
 +        23061, 23667, 23633, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_IDE,
 -        23312, 23662, 23075, 6396, 6225, 0,
 +        23322, 23672, 23085, 6396, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_LAN1,
 -        23312, 23662, 5479, 5487, 6225, 0,
 +        23322, 23672, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_LAN2,
 -        23312, 23662, 5479, 5487, 6225, 0,
 +        23322, 23672, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_LAN3,
 -        23312, 23662, 5479, 5487, 6225, 0,
 +        23322, 23672, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_LAN4,
 -        23312, 23662, 5479, 5487, 6225, 0,
 +        23322, 23672, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_HDA_1,
 -        23312, 23662, 19137, 19142, 6824, 6225, 0,
 +        23322, 23672, 19137, 19142, 6824, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_HDA_2,
 -        23312, 23662, 19137, 19142, 6824, 6225, 0,
 +        23322, 23672, 19137, 19142, 6824, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_HDA_3,
 -        23312, 23662, 19137, 19142, 6824, 6225, 0,
 +        23322, 23672, 19137, 19142, 6824, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_HDA_4,
 -        23312, 23662, 19137, 19142, 6824, 6225, 0,
 +        23322, 23672, 19137, 19142, 6824, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_SMB,
 -        23312, 23651, 8226, 6225, 0,
 +        23322, 23661, 8226, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_LAN1,
 -        23312, 23651, 5479, 5487, 6225, 0,
 +        23322, 23661, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_LAN2,
 -        23312, 23651, 5479, 5487, 6225, 0,
 +        23322, 23661, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_LAN3,
 -        23312, 23651, 5479, 5487, 6225, 0,
 +        23322, 23661, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_LAN4,
 -        23312, 23651, 5479, 5487, 6225, 0,
 +        23322, 23661, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_AHCI_1,
 -        23312, 23651, 8254, 6225, 0,
 +        23322, 23661, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_AHCI_2,
 -        23312, 23651, 8254, 6225, 0,
 +        23322, 23661, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_AHCI_3,
 -        23312, 23651, 8254, 6225, 0,
 +        23322, 23661, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_AHCI_4,
 -        23312, 23651, 8254, 6225, 0,
 +        23322, 23661, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_AHCI_5,
 -        23312, 23651, 8254, 6225, 0,
 +        23322, 23661, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_AHCI_6,
 -        23312, 23651, 8254, 6225, 0,
 +        23322, 23661, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_AHCI_7,
 -        23312, 23651, 8254, 6225, 0,
 +        23322, 23661, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_AHCI_8,
 -        23312, 23651, 8254, 6225, 0,
 +        23322, 23661, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_AHCI_9,
 -        23312, 23651, 8254, 6225, 0,
 +        23322, 23661, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_AHCI_10,
 -        23312, 23651, 8254, 6225, 0,
 +        23322, 23661, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_AHCI_11,
 -        23312, 23651, 8254, 6225, 0,
 +        23322, 23661, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_AHCI_12,
 -        23312, 23651, 8254, 6225, 0,
 +        23322, 23661, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_HDA_1,
 -        23312, 23651, 19137, 19142, 6824, 6225, 0,
 +        23322, 23661, 19137, 19142, 6824, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_HDA_2,
 -        23312, 23651, 19137, 19142, 6824, 6225, 0,
 +        23322, 23661, 19137, 19142, 6824, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP78S_SMB,
 -        23312, 23668, 8226, 6225, 0,
 +        23322, 23678, 8226, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE_210,
 -        23051, 23675, 0,
 +        23061, 23685, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_SMB,
 -        23312, 23679, 8226, 6225, 0,
 +        23322, 23689, 8226, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_LAN1,
 -        23312, 23679, 5479, 5487, 6225, 0,
 +        23322, 23689, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_LAN2,
 -        23312, 23679, 5479, 5487, 6225, 0,
 +        23322, 23689, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_LAN3,
 -        23312, 23679, 5479, 5487, 6225, 0,
 +        23322, 23689, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_LAN4,
 -       23312, 23679, 5479, 5487, 6225, 0,
 +        23322, 23689, 5479, 5487, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_1,
 -        23312, 23662, 8254, 6225, 0,
 +        23322, 23672, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_2,
 -        23312, 23662, 8254, 6225, 0,
 +        23322, 23672, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_3,
 -        23312, 23662, 8254, 6225, 0,
 +        23322, 23672, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_4,
 -        23312, 23662, 8254, 6225, 0,
 +        23322, 23672, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_5,
 -        23312, 23662, 8254, 6225, 0,
 +        23322, 23672, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_6,
 -        23312, 23662, 8254, 6225, 0,
 +        23322, 23672, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_7,
 -        23312, 23662, 8254, 6225, 0,
 +        23322, 23672, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_8,
 -        23312, 23662, 8254, 6225, 0,
 +        23322, 23672, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_9,
 -        23312, 23662, 8254, 6225, 0,
 +        23322, 23672, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_10,
 -        23312, 23662, 8254, 6225, 0,
 +        23322, 23672, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_11,
 -        23312, 23662, 8254, 6225, 0,
 +        23322, 23672, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_12,
 -        23312, 23662, 8254, 6225, 0,
 +        23322, 23672, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_AHCI_1,
 -        23312, 23679, 8254, 6225, 0,
 +        23322, 23689, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_AHCI_2,
 -        23312, 23679, 8254, 6225, 0,
 +        23322, 23689, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_AHCI_3,
 -        23312, 23679, 8254, 6225, 0,
 +        23322, 23689, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_AHCI_4,
 -        23312, 23679, 8254, 6225, 0,
 +        23322, 23689, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_AHCI_5,
 -        23312, 23679, 8254, 6225, 0,
 +        23322, 23689, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_AHCI_6,
 -        23312, 23679, 8254, 6225, 0,
 +        23322, 23689, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_AHCI_7,
 -        23312, 23679, 8254, 6225, 0,
 +        23322, 23689, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_AHCI_8,
 -        23312, 23679, 8254, 6225, 0,
 +        23322, 23689, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_AHCI_9,
 -        23312, 23679, 8254, 6225, 0,
 +        23322, 23689, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_AHCI_10,
 -        23312, 23679, 8254, 6225, 0,
 +        23322, 23689, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_AHCI_11,
 -        23312, 23679, 8254, 6225, 0,
 +        23322, 23689, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_AHCI_12,
 -        23312, 23679, 8254, 6225, 0,
 +        23322, 23689, 8254, 6225, 0,
         PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF116,
 -        23051, 23685, 23689, 23349, 0,
 +        23061, 23695, 23699, 23359, 0,
         PCI_VENDOR_NVIDIA_SGS, PCI_PRODUCT_NVIDIA_SGS_RIVA128,
 -        23693, 9507, 0,
 +        23703, 9507, 0,
         PCI_VENDOR_OAKTECH, PCI_PRODUCT_OAKTECH_OTI1007,
 -        23698, 0,
 +        23708, 0,
         PCI_VENDOR_OLICOM, PCI_PRODUCT_OLICOM_OC3136,
 -        23705, 23718, 16306, 0,
 +        23715, 23728, 16306, 0,
         PCI_VENDOR_OLICOM, PCI_PRODUCT_OLICOM_OC3139,
 -        23729, 23738, 16306, 5783, 5789, 0,
 +        23739, 23748, 16306, 5783, 5789, 0,
         PCI_VENDOR_OLICOM, PCI_PRODUCT_OLICOM_OC3140,
 -        23747, 23760, 5783, 5789, 16306, 0,
 +        23757, 23770, 5783, 5789, 16306, 0,
         PCI_VENDOR_OLICOM, PCI_PRODUCT_OLICOM_OC3250,
 -        23770, 23778, 5783, 5789, 16306, 0,
 +        23780, 23788, 5783, 5789, 16306, 0,
         PCI_VENDOR_OLICOM, PCI_PRODUCT_OLICOM_OC3530,
 -        23785, 23760, 5783, 5789, 5912, 0,
 +        23795, 23770, 5783, 5789, 5912, 0,
         PCI_VENDOR_OLICOM, PCI_PRODUCT_OLICOM_OC3141,
 -        23793, 23760, 5783, 5789, 16306, 0,
 +        23803, 23770, 5783, 5789, 16306, 0,
         PCI_VENDOR_OLICOM, PCI_PRODUCT_OLICOM_OC3540,
 -        23801, 23760, 23809, 23814, 0,
 +        23811, 23770, 23819, 23824, 0,
         PCI_VENDOR_OLICOM, PCI_PRODUCT_OLICOM_OC3150,
 -        23823, 23760, 23718, 16306, 0,
 +        23833, 23770, 23728, 16306, 0,
         PCI_VENDOR_OLICOM, PCI_PRODUCT_OLICOM_OC2805,
 -        23831, 5487, 0,
 +        23841, 5487, 0,
         PCI_VENDOR_OLICOM, PCI_PRODUCT_OLICOM_OC2325,
 -        23839, 5487, 5589, 0,
 +        23849, 5487, 5589, 0,
         PCI_VENDOR_OLICOM, PCI_PRODUCT_OLICOM_OC2183,
 -        23847, 5487, 0,
 +        23857, 5487, 0,
         PCI_VENDOR_OLICOM, PCI_PRODUCT_OLICOM_OC2326,
 -        23860, 23868, 5487, 0,
 +        23870, 23878, 5487, 0,
         PCI_VENDOR_OLICOM, PCI_PRODUCT_OLICOM_OC2327,
 -        23878, 5589, 5487, 0,
 +        23888, 5589, 5487, 0,
         PCI_VENDOR_OLICOM, PCI_PRODUCT_OLICOM_OC6151,
 -        23891, 21101, 8782, 6895, 0,
 +        23901, 21111, 8782, 6895, 0,
         PCI_VENDOR_OLICOM, PCI_PRODUCT_OLICOM_OCATM,
          6895, 0,
         PCI_VENDOR_OPTI, PCI_PRODUCT_OPTI_82C557,
 -        23904, 0,
 +        23914, 0,
         PCI_VENDOR_OPTI, PCI_PRODUCT_OPTI_82C558,
 -        23911, 0,
 +        23921, 0,
         PCI_VENDOR_OPTI, PCI_PRODUCT_OPTI_82C568,
 -        23918, 0,
 +        23928, 0,
         PCI_VENDOR_OPTI, PCI_PRODUCT_OPTI_82D568,
 -        23925, 0,
 +        23935, 0,
         PCI_VENDOR_OPTI, PCI_PRODUCT_OPTI_82C621,
 -        23932, 0,
 +        23942, 0,
         PCI_VENDOR_OPTI, PCI_PRODUCT_OPTI_82C822,
 -        23939, 0,
 +        23949, 0,
         PCI_VENDOR_OPTI, PCI_PRODUCT_OPTI_82C861,
 -        23946, 0,
 +        23956, 0,
         PCI_VENDOR_OPTI, PCI_PRODUCT_OPTI_82C700,
 -        23953, 0,
 +        23963, 0,
         PCI_VENDOR_OPTI, PCI_PRODUCT_OPTI_82C701,
 -        23960, 0,
 +        23970, 0,
         PCI_VENDOR_OXFORDSEMI, PCI_PRODUCT_OXFORDSEMI_VSCOM_PCI011H,
 -        23967, 0,
 +        23977, 0,
         PCI_VENDOR_OXFORDSEMI, PCI_PRODUCT_OXFORDSEMI_OX16PCI954,
 -        23972, 0,
 +        23982, 0,
         PCI_VENDOR_OXFORDSEMI, PCI_PRODUCT_OXFORDSEMI_OX16PCI954K,
 -        23983, 0,
 +        23993, 0,
         PCI_VENDOR_OXFORDSEMI, PCI_PRODUCT_OXFORDSEMI_EXSYS_EX41092,
 -        23995, 24001, 0,
 +        24005, 24011, 0,
         PCI_VENDOR_OXFORDSEMI, PCI_PRODUCT_OXFORDSEMI_OXCB950,
 -        24010, 0,
 +        24020, 0,
         PCI_VENDOR_OXFORDSEMI, PCI_PRODUCT_OXFORDSEMI_OXMPCI954,
 -        24018, 0,
 +        24028, 0,
         PCI_VENDOR_OXFORDSEMI, PCI_PRODUCT_OXFORDSEMI_OXMPCI954D,
 -        24018, 24028, 0,
 +        24028, 24038, 0,
         PCI_VENDOR_OXFORDSEMI, PCI_PRODUCT_OXFORDSEMI_EXSYS_EX41098,
 -        23995, 24037, 0,
 +        24005, 24047, 0,
         PCI_VENDOR_OXFORDSEMI, PCI_PRODUCT_OXFORDSEMI_OX16PCI954P,
 -        23972, 16943, 0,
 +        23982, 16943, 0,
         PCI_VENDOR_OXFORDSEMI, PCI_PRODUCT_OXFORDSEMI_OX16PCI952,
 -        24046, 0,
 +        24056, 0,
         PCI_VENDOR_OXFORDSEMI, PCI_PRODUCT_OXFORDSEMI_OX16PCI952P,
 -        24046, 16943, 0,
 +        24056, 16943, 0,
         PCI_VENDOR_OXFORDSEMI, PCI_PRODUCT_OXFORDSEMI_OX16PCI958,
 -        24057, 0,
 +        24067, 0,
         PCI_VENDOR_OXFORDSEMI, PCI_PRODUCT_OXFORDSEMI_OXPCIE952,
 -        24068, 0,
 +        24078, 0,
         PCI_VENDOR_PACKETENGINES, PCI_PRODUCT_PACKETENGINES_GNICII,
 -        22704, 7361, 5487, 0,
 +        22714, 7361, 5487, 0,
         PCI_VENDOR_PCHDTV, PCI_PRODUCT_PCHDTV_HD2000,
 -        24078, 24086, 234, 12097, 0,
 +        24088, 24096, 234, 12097, 0,
         PCI_VENDOR_PCHDTV, PCI_PRODUCT_PCHDTV_HD5500,
 -        24091, 24086, 234, 12097, 0,
 +        24101, 24096, 234, 12097, 0,
         PCI_VENDOR_PCTECH, PCI_PRODUCT_PCTECH_RZ1000,
 -        24099, 0,
 +        24109, 0,
         PCI_VENDOR_PEAK, PCI_PRODUCT_PEAK_PCAN,
 -        24106, 20212, 6225, 0,
 +        24116, 20212, 6225, 0,
         PCI_VENDOR_PERICOM, PCI_PRODUCT_PERICOM_P17C9X110,
 -        24111, 21371, 6785, 615, 6333, 0,
 +        24121, 21381, 6785, 615, 6333, 0,
         PCI_VENDOR_PERICOM, PCI_PRODUCT_PERICOM_P17C9X,
 -        24121, 21371, 6785, 615, 6333, 0,
 +        24131, 21381, 6785, 615, 6333, 0,
         PCI_VENDOR_PHOBOS, PCI_PRODUCT_PHOBOS_P1000,
 -        24128, 5479, 5487, 0,
 +        24138, 5479, 5487, 0,
         PCI_VENDOR_PLANEX, PCI_PRODUCT_PLANEX_FNW_3603_TX,
 -        24134, 5589, 5487, 0,
 +        24144, 5589, 5487, 0,
         PCI_VENDOR_PLANEX, PCI_PRODUCT_PLANEX_FNW_3800_TX,
 -        24146, 5589, 5487, 0,
 +        24156, 5589, 5487, 0,
         PCI_VENDOR_PLX, PCI_PRODUCT_PLX_PCI_400,
 -        24158, 24164, 6556, 6558, 6531, 0,
 +        24168, 24174, 6556, 6558, 6531, 0,
         PCI_VENDOR_PLX, PCI_PRODUCT_PLX_PCI_800,
 -        24158, 24172, 6581, 6558, 6531, 0,
 +        24168, 24182, 6581, 6558, 6531, 0,
         PCI_VENDOR_PLX, PCI_PRODUCT_PLX_PCI_200,
 -        24158, 24180, 6181, 6558, 6531, 0,
 +        24168, 24190, 6181, 6558, 6531, 0,
         PCI_VENDOR_PLX, PCI_PRODUCT_PLX_9030,
 -        24188, 8209, 24193, 0,
 +        24198, 8209, 24203, 0,
         PCI_VENDOR_PLX, PCI_PRODUCT_PLX_9050,
 -        24204, 8209, 24193, 0,
 +        24214, 8209, 24203, 0,
         PCI_VENDOR_PLX, PCI_PRODUCT_PLX_9054,
 -        24209, 8209, 7607, 0,
 +        24219, 8209, 7607, 0,
         PCI_VENDOR_PLX, PCI_PRODUCT_PLX_9060ES,
 -        24214, 615, 22781, 6225, 0,
 +        24224, 615, 22791, 6225, 0,
         PCI_VENDOR_PLX, PCI_PRODUCT_PLX_9656,
 -        24221, 8209, 7607, 0,
 +        24231, 8209, 7607, 0,
         PCI_VENDOR_PLX, PCI_PRODUCT_PLX_9656FPBGA,
 -        24221, 8209, 7607, 24226, 0,
 +        24231, 8209, 7607, 24236, 0,
         PCI_VENDOR_POWERHOUSE, PCI_PRODUCT_POWERHOUSE_POWERTOP,
 -        24232, 16327, 6, 6225, 0,
 +        24242, 16327, 6, 6225, 0,
         PCI_VENDOR_POWERHOUSE, PCI_PRODUCT_POWERHOUSE_POWERPRO,
 -        24241, 16327, 6, 6225, 0,
 +        24251, 16327, 6, 6225, 0,
         PCI_VENDOR_PROLAN, PCI_PRODUCT_PROLAN_NE2KETHER,
          5487, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20265,
 -        24250, 24259, 6396, 6225, 0,
 +        24260, 24269, 6396, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20263,
 -        24268, 24259, 6396, 6225, 0,
 +        24278, 24269, 6396, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20275,
 -        24277, 24286, 6396, 6225, 0,
 +        24287, 24296, 6396, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20318,
 -        24296, 10492, 6216, 6225, 0,
 +        24306, 10492, 6216, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20319,
 -        24305, 10492, 6216, 6225, 0,
 +        24315, 10492, 6216, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20371,
 -        24314, 10492, 6216, 6225, 0,
 +        24324, 10492, 6216, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20379,
 -        24323, 10492, 6216, 6225, 0,
 +        24333, 10492, 6216, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20378,
 -        24332, 10492, 6216, 6225, 0,
 +        24342, 10492, 6216, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20375,
 -        24341, 10492, 6216, 6225, 0,
 +        24351, 10492, 6216, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20376,
 -        24350, 10492, 6216, 6225, 0,
 +        24360, 10492, 6216, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20377,
 -        24359, 10492, 6216, 6225, 0,
 +        24369, 10492, 6216, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC40719,
 -        24368, 10492, 6216, 6225, 0,
 +        24378, 10492, 6216, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC40519,
 -        24377, 10492, 6216, 6225, 0,
 +        24387, 10492, 6216, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20771,
 -        24386, 10492, 6216, 6225, 0,
 +        24396, 10492, 6216, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20571,
 -        24395, 10492, 6216, 6225, 0,
 +        24405, 10492, 6216, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20579,
 -        24404, 10492, 6216, 6225, 0,
 +        24414, 10492, 6216, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC40779,
 -        24413, 10492, 6216, 6225, 0,
 +        24423, 10492, 6216, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC40718,
 -        24422, 10492, 6216, 6225, 0,
 +        24432, 10492, 6216, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC40518,
 -        24431, 10492, 6216, 6225, 0,
 +        24441, 10492, 6216, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20775,
 -        24440, 10492, 6216, 6225, 0,
 +        24450, 10492, 6216, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20575,
 -        24449, 10492, 6216, 6225, 0,
 +        24459, 10492, 6216, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20267,
 -        24458, 24467, 6396, 6225, 0,
 +        24468, 24477, 6396, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20246,
 -        24477, 24486, 6396, 6225, 0,
 +        24487, 24496, 6396, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20262,
 -        24495, 24259, 6396, 6225, 0,
 +        24505, 24269, 6396, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20268,
 -        24504, 24467, 6396, 6225, 0,
 +        24514, 24477, 6396, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20269,
 -        24513, 24286, 6396, 6225, 0,
 +        24523, 24296, 6396, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20276,
 -        24522, 24286, 6396, 6225, 0,
 +        24532, 24296, 6396, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_DC5030,
 -        24531, 6396, 6225, 0,
 +        24541, 6396, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20270,
 -        24538, 24467, 6396, 6225, 0,
 +        24548, 24477, 6396, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20271,
 -        24547, 24286, 6396, 6225, 0,
 +        24557, 24296, 6396, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20617,
 -        24556, 10019, 24286, 6396, 6225, 0,
 +        24566, 10019, 24296, 6396, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20620,
 -        24565, 10019, 24286, 6396, 6225, 0,
 +        24575, 10019, 24296, 6396, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20621,
 -        24574, 10019, 24286, 6396, 6225, 0,
 +        24584, 10019, 24296, 6396, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20618,
 -        24583, 10019, 24286, 6396, 24592, 0,
 +        24593, 10019, 24296, 6396, 24602, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20619,
 -        24602, 10019, 24286, 6396, 6225, 0,
 +        24612, 10019, 24296, 6396, 6225, 0,
         PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20277,
 -        24611, 24286, 6396, 6225, 0,
 +        24621, 24296, 6396, 6225, 0,
         PCI_VENDOR_QINHENG, PCI_PRODUCT_QINHENG_CH352,
 -        24620, 0,
 +        24630, 0,
         PCI_VENDOR_QINHENG, PCI_PRODUCT_QINHENG_CH353,
 -        24626, 0,
 +        24636, 0,
         PCI_VENDOR_QLOGIC, PCI_PRODUCT_QLOGIC_QLA200,
 -        24632, 0,
 +        24642, 0,
         PCI_VENDOR_QLOGIC, PCI_PRODUCT_QLOGIC_ISP1020,
 -        24639, 0,
 +        24649, 0,
         PCI_VENDOR_QLOGIC, PCI_PRODUCT_QLOGIC_ISP1022,
 -        24647, 0,
 +        24657, 0,
         PCI_VENDOR_QLOGIC, PCI_PRODUCT_QLOGIC_ISP1080,
 -        24655, 0,
 +        24665, 0,
         PCI_VENDOR_QLOGIC, PCI_PRODUCT_QLOGIC_ISP1240,
 -        24663, 0,
 +        24673, 0,
         PCI_VENDOR_QLOGIC, PCI_PRODUCT_QLOGIC_ISP1280,
 -        24671, 0,
 +        24681, 0,
         PCI_VENDOR_QLOGIC, PCI_PRODUCT_QLOGIC_ISP2100,
 -        24679, 0,
 +        24689, 0,
         PCI_VENDOR_QLOGIC, PCI_PRODUCT_QLOGIC_ISP3022,
 -        24687, 7601, 24695, 0,
 +        24697, 7601, 24705, 0,
         PCI_VENDOR_QLOGIC, PCI_PRODUCT_QLOGIC_ISP4022,
 -        24687, 7601, 24695, 0,
 +        24697, 7601, 24705, 0,
         PCI_VENDOR_QUANCOM, PCI_PRODUCT_QUANCOM_PWDOG1,
 -        24699, 0,
 +        24709, 0,
         PCI_VENDOR_QUANTUMDESIGNS, PCI_PRODUCT_QUANTUMDESIGNS_8500,
          9077, 0,
         PCI_VENDOR_QUANTUMDESIGNS, PCI_PRODUCT_QUANTUMDESIGNS_8580,
 -        24706, 0,
 +        24716, 0,
         PCI_VENDOR_QUICKLOGIC, PCI_PRODUCT_QUICKLOGIC_PCWATCHDOG,
          788, 16696, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1000,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1001,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1002,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1003,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1004,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1005,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1006,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1007,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1008,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1009,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_100A,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_100B,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_100C,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_100D,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_100E,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_100F,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1010,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1011,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1012,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1013,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1014,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1015,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1016,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1017,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1018,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1019,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_101A,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_101B,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_101C,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_101D,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_101E,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_101F,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1020,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1021,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1022,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1023,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1024,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1025,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1026,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1027,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1028,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1029,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_102A,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_102B,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_102C,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_102D,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_102E,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_102F,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1030,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1031,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1032,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1033,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1034,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1035,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1036,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1037,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1038,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1039,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_103A,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_103B,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_103C,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_103D,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_103E,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_103F,
 -        24711, 0,
 +        24721, 0,
         PCI_VENDOR_RAINBOW, PCI_PRODUCT_RAINBOW_CS200,
 -        24718, 10052, 24730, 7607, 0,
 +        24728, 10052, 24740, 7607, 0,
         PCI_VENDOR_RALINK, PCI_PRODUCT_RALINK_RT2460A,
 -        24734, 7446, 0,
 +        24744, 7446, 0,
         PCI_VENDOR_RALINK, PCI_PRODUCT_RALINK_RT2560,
 -        24742, 24749, 0,
 +        24752, 24759, 0,
         PCI_VENDOR_RALINK, PCI_PRODUCT_RALINK_RT2561S,
 -        24759, 24749, 0,
 +        24769, 24759, 0,
         PCI_VENDOR_RALINK, PCI_PRODUCT_RALINK_RT2561,
 -        24767, 24749, 0,
 +        24777, 24759, 0,
         PCI_VENDOR_RALINK, PCI_PRODUCT_RALINK_RT2661,
 -        24774, 11941, 0,
 +        24784, 11941, 0,
         PCI_VENDOR_RALINK, PCI_PRODUCT_RALINK_RT3090,
 -        24781, 11941, 0,
 +        24791, 11941, 0,
         PCI_VENDOR_RATOC, PCI_PRODUCT_RATOC_REXPCI31,
 -        24788, 24792, 6440, 0,
 +        24798, 24802, 6440, 0,
         PCI_VENDOR_RDC, PCI_PRODUCT_RDC_IDE,
 -        5088, 6396, 21801, 0,
 +        5088, 6396, 21811, 0,
         PCI_VENDOR_RDC, PCI_PRODUCT_RDC_PCIB,
          5088, 6607, 10842, 0,
         PCI_VENDOR_RDC, PCI_PRODUCT_RDC_R6040,
 -        5088, 24802, 5589, 5487, 0,
 +        5088, 24812, 5589, 5487, 0,
         PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8029,
 -        24808, 5487, 0,
 +        24818, 5487, 0,
         PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8139D,
 -        24813, 5589, 5487, 0,
 +        24823, 5589, 5487, 0,
         PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8100,
 -        24819, 5589, 5487, 0,
 +        24829, 5589, 5487, 0,
         PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8129,
 -        24824, 5589, 5487, 0,
 +        24834, 5589, 5487, 0,
         PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8101E,
 -        24829, 5589, 5487, 0,
 +        24839, 5589, 5487, 0,
         PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8138,
 -        24847, 5589, 5487, 0,
 +        24857, 5589, 5487, 0,
         PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8139,
          7350, 5589, 5487, 0,
         PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8169SC,
 -        24852, 5502, 5487, 0,
 +        24862, 5502, 5487, 0,
         PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8168,
 -        24866, 5502, 5487, 0,
 -        PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8169,
          24876, 5502, 5487, 0,
 +        PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8169,
 +        24886, 5502, 5487, 0,
         PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RTL8188CE,
 -        24886, 4739, 4534, 24896, 15580, 15973, 0,
 +        24896, 4739, 4534, 24906, 15580, 15973, 0,
         PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8180,
 -        24904, 7446, 0,
 +        24914, 7446, 0,
         PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8185,
 -        24909, 24914, 0,
 +        24919, 24924, 0,
         PCI_VENDOR_RENESAS, PCI_PRODUCT_RENESAS_SH7780,
 -        24926, 615, 6225, 0,
 +        24936, 615, 6225, 0,
         PCI_VENDOR_RENESAS, PCI_PRODUCT_RENESAS_SH7785,
 -        24933, 615, 6225, 0,
 +        24943, 615, 6225, 0,
         PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C465,
 -        24940, 12407, 6333, 0,
 +        24950, 12407, 6333, 0,
         PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C466,
 -        24946, 12407, 6333, 0,
 +        24956, 12407, 6333, 0,
         PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C475,
 -        24952, 12407, 6333, 0,
 +        24962, 12407, 6333, 0,
         PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_RL5C476,
 -        24958, 12407, 6333, 0,
 +        24968, 12407, 6333, 0,
         PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C477,
 -        24964, 12407, 6333, 0,
 +        24974, 12407, 6333, 0,
         PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C478,
 -        24970, 12407, 6333, 0,
 +        24980, 12407, 6333, 0,
         PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C551,
 -        24976, 12407, 24982, 0,
 +        24986, 12407, 24992, 0,
         PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C552,
 -        24998, 12407, 24982, 0,
 +        25008, 12407, 24992, 0,
         PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C592,
 -        25004, 12407, 25010, 0,
 +        25014, 12407, 25020, 0,
         PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C593,
 -        25032, 12407, 25010, 0,
 +        25042, 12407, 25020, 0,
         PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C821,
 -        25038, 12407, 25044, 0,
 +        25048, 12407, 25054, 0,
         PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C822,
 -        25064, 12407, 25044, 0,
 +        25074, 12407, 25054, 0,
         PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C832,
 -        25070, 25076, 0,
 +        25080, 25086, 0,
         PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C843,
 -        25107, 12407, 25113, 0,
 +        25117, 12407, 25123, 0,
         PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C847,
 -        25147, 12407, 25113, 0,
 +        25157, 12407, 25123, 0,
         PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_RxDPCC,
 -        25153, 10641, 6225, 0,
 +        25163, 10641, 6225, 0,
         PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C853,
 -        25164, 12407, 25170, 0,
 +        25174, 12407, 25180, 0,
         PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5U230,
 -        25207, 25213, 6225, 0,
 +        25217, 25223, 6225, 0,
         PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5U822,
 -        25235, 20692, 6225, 0,
 +        25245, 20702, 6225, 0,
         PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5U823,
 -        25241, 20692, 6225, 0,
 +        25251, 20702, 6225, 0,
         PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5U832,
 -        25247, 8441, 6225, 0,
 +        25257, 8441, 6225, 0,
         PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C852,
 -        25253, 20705, 6225, 0,
 +        25263, 20715, 6225, 0,
         PCI_VENDOR_RISCOM, PCI_PRODUCT_RISCOM_N2,
 -        25259, 0,
 +        25269, 0,
         PCI_VENDOR_RNS, PCI_PRODUCT_RNS_FDDI,
 -        25262, 25267, 0,
 +        25272, 25277, 0,
         PCI_VENDOR_S2IO, PCI_PRODUCT_S2IO_XFRAME,
 -        25272, 12894, 5479, 5487, 5679, 0,
 +        25282, 12894, 5479, 5487, 5679, 0,
         PCI_VENDOR_S2IO, PCI_PRODUCT_S2IO_XFRAME2,
 -        25279, 12894, 5479, 5487, 5679, 0,
 +        25289, 12894, 5479, 5487, 5679, 0,
         PCI_VENDOR_S2IO, PCI_PRODUCT_S2IO_XFRAME3,
 -        25287, 12894, 5479, 5487, 5679, 0,
 +        25297, 12894, 5479, 5487, 5679, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_VIRGE,
 -        25295, 0,
 +        25305, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_TRIO32,
 -        25301, 0,
 +        25311, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_TRIO64,
 -        25308, 0,
 -        PCI_VENDOR_S3, PCI_PRODUCT_S3_AURORA64P,
          25318, 0,
 +        PCI_VENDOR_S3, PCI_PRODUCT_S3_AURORA64P,
 +        25328, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_TRIO64UVP,
 -        25329, 0,
 -        PCI_VENDOR_S3, PCI_PRODUCT_S3_VIRGE_VX,
          25339, 0,
 +        PCI_VENDOR_S3, PCI_PRODUCT_S3_VIRGE_VX,
 +        25349, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_868,
 -        25348, 0,
 +        25358, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_928,
 -        25352, 0,
 +        25362, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_864_0,
 -        25359, 25368, 0,
 +        25369, 25378, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_864_1,
 -        25382, 25368, 0,
 +        25392, 25378, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_864_2,
 -        25391, 25368, 0,
 +        25401, 25378, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_864_3,
 -        25400, 25368, 0,
 +        25410, 25378, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_964_0,
 -        25409, 25418, 0,
 +        25419, 25428, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_964_1,
 -        25432, 25418, 0,
 +        25442, 25428, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_964_2,
 -        25441, 25418, 0,
 +        25451, 25428, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_964_3,
 -        25450, 25418, 0,
 +        25460, 25428, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_968_0,
 -        25459, 25468, 0,
 +        25469, 25478, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_968_1,
 -        25482, 25468, 0,
 +        25492, 25478, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_968_2,
 -        25491, 25468, 0,
 +        25501, 25478, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_968_3,
 -        25500, 25468, 0,
 +        25510, 25478, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_TRIO64V2_DX,
 -        25509, 0,
 +        25519, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_PLATO_PX,
 -        25521, 0,
 +        25531, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_TRIO3D,
 -        25530, 25537, 0,
 +        25540, 25547, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_VIRGE_DX,
 -        25544, 0,
 +        25554, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_VIRGE_GX2,
 -        25553, 0,
 -        PCI_VENDOR_S3, PCI_PRODUCT_S3_TRIO3D2X,
          25563, 0,
 -        PCI_VENDOR_S3, PCI_PRODUCT_S3_SAVAGE3D,
 +        PCI_VENDOR_S3, PCI_PRODUCT_S3_TRIO3D2X,
          25573, 0,
 +        PCI_VENDOR_S3, PCI_PRODUCT_S3_SAVAGE3D,
 +        25583, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_SAVAGE3D_MV,
 -        25582, 0,
 +        25592, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_SAVAGE4,
 -        25594, 0,
 +        25604, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_PROSAVAGE_KM133,
 -        25602, 25612, 0,
 +        25612, 25622, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_VIRGE_MX,
 -        25618, 0,
 +        25628, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_VIRGE_MXP,
 -        25627, 0,
 -        PCI_VENDOR_S3, PCI_PRODUCT_S3_SAVAGE_MX_MV,
          25637, 0,
 +        PCI_VENDOR_S3, PCI_PRODUCT_S3_SAVAGE_MX_MV,
 +        25647, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_SAVAGE_MX,
 -        25650, 0,
 -        PCI_VENDOR_S3, PCI_PRODUCT_S3_SAVAGE_IX_MV,
          25660, 0,
 +        PCI_VENDOR_S3, PCI_PRODUCT_S3_SAVAGE_IX_MV,
 +        25670, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_SAVAGE_IX,
 -        25673, 0,
 -        PCI_VENDOR_S3, PCI_PRODUCT_S3_SAVAGE_IXC,
          25683, 0,
 +        PCI_VENDOR_S3, PCI_PRODUCT_S3_SAVAGE_IXC,
 +        25693, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_SAVAGE2000,
 -        25694, 0,
 +        25704, 0,
         PCI_VENDOR_S3, PCI_PRODUCT_S3_SONICVIBES,
 -        25705, 0,
 +        25715, 0,
         PCI_VENDOR_SAFENET, PCI_PRODUCT_SAFENET_SAFEXCEL,
 -        25716, 0,
 +        25726, 0,
         PCI_VENDOR_SAMSUNGSEMI, PCI_PRODUCT_SAMSUNGSEMI_KS8920,
 -        25725, 5589, 5487, 0,
 +        25735, 5589, 5487, 0,
         PCI_VENDOR_SANDBURST, PCI_PRODUCT_SANDBURST_QE1000,
 -        25732, 0,
 +        25742, 0,
         PCI_VENDOR_SANDBURST, PCI_PRODUCT_SANDBURST_FE1000,
 -        25739, 0,
 +        25749, 0,
         PCI_VENDOR_SEGA, PCI_PRODUCT_SEGA_BROADBAND,
 -        25746, 5679, 0,
 +        25756, 5679, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CNB20_LE_AGP,
 -        25756, 25765, 6333, 0,
 +        25766, 25775, 6333, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CNB30_LE_PCI,
 -        25773, 615, 6333, 0,
 +        25783, 615, 6333, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CNB20_LE_PCI,
 -        25756, 615, 6333, 0,
 +        25766, 615, 6333, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CNB20_HE_PCI,
 -        25782, 615, 6333, 0,
 +        25792, 615, 6333, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CNB20_HE_AGP,
 -        25782, 25765, 6333, 0,
 +        25792, 25775, 6333, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CIOB_X,
 -        25791, 8149, 6333, 0,
 +        25801, 8149, 6333, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CMIC_HE,
 -        25798, 25765, 6333, 0,
 +        25808, 25775, 6333, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CNB30_HE,
 -        25806, 615, 6333, 0,
 +        25816, 615, 6333, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CNB20_HE_PCI2,
 -        25782, 25765, 6333, 0,
 +        25792, 25775, 6333, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CMIC_LE,
 -        25815, 25765, 6333, 0,
 +        25825, 25775, 6333, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CMIC_SL,
 -        25823, 25765, 6333, 0,
 +        25833, 25775, 6333, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_HT1000_PPB0,
 -        25831, 22813, 6333, 0,
 +        25841, 22823, 6333, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CIOB_X2,
 -        25838, 8149, 6333, 0,
 +        25848, 8149, 6333, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_BCM5714,
 -        25846, 25862, 15580, 6785, 8149, 6333, 0,
 +        25856, 25872, 15580, 6785, 8149, 6333, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_HT1000_PPB1,
 -        25831, 22813, 6333, 0,
 +        25841, 22823, 6333, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CIOB_E,
 -        25871, 8149, 6333, 0,
 +        25881, 8149, 6333, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_HT2100_PPB0,
 -        25878, 21836, 6333, 0,
 +        25888, 21846, 6333, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_HT2100_PPB1,
 -        25878, 21836, 6333, 0,
 +        25888, 21846, 6333, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_HT2100_PPB2,
 -        25878, 21836, 6333, 0,
 +        25888, 21846, 6333, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_HT2100_PPB3,
 -        25878, 21836, 6333, 0,
 +        25888, 21846, 6333, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_OSB4,
 -        25885, 8007, 6333, 0,
 +        25895, 8007, 6333, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CSB5,
 -        25890, 8007, 6333, 0,
 +        25900, 8007, 6333, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CSB6,
 -        25895, 8007, 6333, 0,
 +        25905, 8007, 6333, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_HT1000SB,
 -        25900, 8007, 6333, 0,
 +        25910, 8007, 6333, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_OSB4_IDE,
 -        25885, 6396, 0,
 +        25895, 6396, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CSB5_IDE,
 -        25890, 6396, 0,
 +        25900, 6396, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_HT1000_IDE,
 -        25909, 6396, 6225, 0,
 +        25919, 6396, 6225, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CSB6_RAID,
 -        25895, 25917, 0,
 +        25905, 25927, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CSB6_IDE,
 -        25895, 25917, 0,
 +        25905, 25927, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_OSB4_USB,
 -        25926, 6721, 6729, 6225, 0,
 +        25936, 6721, 6729, 6225, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CSB6_USB,
 -        25895, 6721, 6729, 6225, 0,
 +       25905, 6721, 6729, 6225, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_HT1000_USB,
 -        25831, 6721, 0,
 +        25841, 6721, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CSB5_LPC,
 -        25890, 25936, 6333, 0,
 +        25900, 25946, 6333, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CSB6_LPC,
 -        25895, 25936, 6333, 0,
 +        25905, 25946, 6333, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_HT1000_LPC,
 -        25831, 8222, 0,
 +        25841, 8222, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_HT1000_XIOAPIC,
 -        25831, 25944, 0,
 +        25841, 25954, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_HT1000_WDTIMER,
 -        25831, 16696, 14694, 0,
 +        25841, 16696, 14694, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_K2_SATA,
          8503, 8249, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_FRODO4_SATA,
 -        25952, 8249, 0,
 +        25962, 8249, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_FRODO8_SATA,
 -        25959, 8249, 0,
 +        25969, 8249, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_HT1000_SATA_1,
 -        25909, 8249, 0,
 +        25919, 8249, 0,
         PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_HT1000_SATA_2,
 -        25909, 8249, 0,
 +        25919, 8249, 0,
         PCI_VENDOR_SGI, PCI_PRODUCT_SGI_IOC3,
 -        25966, 0,
 +        25976, 0,
         PCI_VENDOR_SGI, PCI_PRODUCT_SGI_RAD1,
 -        25971, 25979, 0,
 +        25981, 25989, 0,
         PCI_VENDOR_SGI, PCI_PRODUCT_SGI_TIGON,
 -        25984, 5479, 5487, 0,
 +        25994, 5479, 5487, 0,
         PCI_VENDOR_SGSTHOMSON, PCI_PRODUCT_SGSTHOMSON_2000,
 -        25990, 25994, 0,
 +        26000, 26004, 0,
         PCI_VENDOR_SGSTHOMSON, PCI_PRODUCT_SGSTHOMSON_1764,
 -        25990, 26000, 0,
 +        26000, 26010, 0,
         PCI_VENDOR_SIBYTE, PCI_PRODUCT_SIBYTE_BCM1250_PCIHB,
 -        26006, 615, 6729, 6333, 0,
 +        26016, 615, 6729, 6333, 0,
         PCI_VENDOR_SIBYTE, PCI_PRODUCT_SIBYTE_BCM1250_LDTHB,
 -        26006, 26014, 6729, 6333, 0,
 +        26016, 26024, 6729, 6333, 0,
         PCI_VENDOR_SIGMA, PCI_PRODUCT_SIGMA_HOLLYWOODPLUS,
 -        26018, 26028, 26043, 6689, 0,
 +        26028, 26038, 26053, 6689, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_S550,
 -        26050, 10492, 26059, 615, 0,
 +        26060, 10492, 26069, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_S650,
 -        26050, 10492, 26065, 615, 0,
 +        26060, 10492, 26075, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_S850,
 -        26050, 10492, 26071, 615, 0,
 +        26060, 10492, 26081, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_IO550,
 -        26050, 8209, 26059, 615, 0,
 +        26060, 8209, 26069, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_IO650,
 -        26050, 8209, 26065, 615, 0,
 +        26060, 8209, 26075, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_IO850,
 -        26050, 8209, 26071, 615, 0,
 +        26060, 8209, 26081, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_P,
 -        26050, 16943, 615, 0,
 +        26060, 16943, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_2P,
 -        26050, 16943, 10019, 615, 0,
 +        26060, 16943, 10019, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_2S550,
 -        26050, 10492, 10019, 26059, 615, 0,
 +        26060, 10492, 10019, 26069, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_2S650,
 -        26050, 10492, 10019, 26065, 615, 0,
 +        26060, 10492, 10019, 26075, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_2S850,
 -        26050, 10492, 10019, 26071, 615, 0,
 +        26060, 10492, 10019, 26081, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_2S1P550,
 -        26050, 26077, 26059, 615, 0,
 +        26060, 26087, 26069, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_2S1P650,
 -        26050, 26077, 26065, 615, 0,
 +        26060, 26087, 26075, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_2S1P850,
 -        26050, 26077, 26071, 615, 0,
 +        26060, 26087, 26081, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_4S550,
 -        26050, 26082, 26059, 615, 0,
 +        26060, 26092, 26069, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_4S650,
 -        26050, 26082, 26065, 615, 0,
 +        26060, 26092, 26075, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_4S850,
 -        26050, 26082, 26071, 615, 0,
 +        26060, 26092, 26081, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_S550,
 -        26085, 10492, 26059, 615, 0,
 +        26095, 10492, 26069, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_S650,
 -        26085, 10492, 26065, 615, 0,
 +        26095, 10492, 26075, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_S850,
 -        26085, 10492, 26071, 615, 0,
 +        26095, 10492, 26081, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_IO550,
 -        26085, 8209, 26059, 615, 0,
 +        26095, 8209, 26069, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_IO650,
 -        26085, 8209, 26065, 615, 0,
 +        26095, 8209, 26075, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_IO850,
 -        26085, 8209, 26071, 615, 0,
 +        26095, 8209, 26081, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_P,
 -        26085, 16943, 615, 0,
 +        26095, 16943, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_2P,
 -        26085, 16943, 10019, 615, 0,
 +        26095, 16943, 10019, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_2S550,
 -        26085, 10492, 10019, 26059, 615, 0,
 +        26095, 10492, 10019, 26069, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_2S650,
 -        26085, 10492, 10019, 26065, 615, 0,
 +        26095, 10492, 10019, 26075, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_2S850,
 -        26085, 10492, 10019, 26071, 615, 0,
 +        26095, 10492, 10019, 26081, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_2P1S550,
 -        26085, 26094, 26059, 615, 0,
 +        26095, 26104, 26069, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_2P1S650,
 -        26085, 26094, 26065, 615, 0,
 +        26095, 26104, 26075, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_2P1S850,
 -        26085, 26094, 26071, 615, 0,
 +        26095, 26104, 26081, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_4S550,
 -        26085, 26082, 26059, 615, 0,
 +        26095, 26092, 26069, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_4S650,
 -        26085, 26082, 26065, 615, 0,
 +        26095, 26092, 26075, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_4S850,
 -        26085, 26082, 26071, 615, 0,
 +        26095, 26092, 26081, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_2S1P550,
 -        26085, 26077, 26059, 615, 0,
 +        26095, 26087, 26069, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_2S1P650,
 -        26085, 26077, 26065, 615, 0,
 +        26095, 26087, 26075, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_2S1P850,
 -        26085, 26077, 26071, 615, 0,
 +        26095, 26087, 26081, 615, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_PS8000P550,
 -        615, 10492, 26099, 13068, 26059, 0,
 +        615, 10492, 26109, 13068, 26069, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_PS8000P650,
 -        615, 10492, 26099, 13068, 26065, 0,
 +        615, 10492, 26109, 13068, 26075, 0,
         PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_PS8000P850,
 -        615, 10492, 26099, 13068, 26071, 0,
 +        615, 10492, 26109, 13068, 26081, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_86C201,
 -        26104, 0,
 +        26114, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_86C202,
 -        26111, 0,
 +        26121, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_86C205,
 -        26118, 0,
 +        26128, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_85C503,
 -        26125, 26132, 26135, 16180, 6333, 0,
 +        26135, 26142, 26145, 16180, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_600PMC,
 -        26145, 3749, 26149, 6225, 0,
 +        26155, 3749, 26159, 6225, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_180_SATA,
 -        26155, 8249, 6225, 0,
 +        26165, 8249, 6225, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_181_SATA,
 -        26159, 8249, 6225, 0,
 +        26169, 8249, 6225, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_182_SATA,
 -        26163, 8249, 6225, 0,
 +        26173, 8249, 6225, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_183_SATA,
 -        26167, 8249, 21801, 0,
 +        26177, 8249, 21811, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_190,
 -        26171, 5487, 0,
 +        26181, 5487, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_191,
 -        26175, 5479, 5487, 0,
 +        26185, 5479, 5487, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_5597_VGA,
 -        26135, 692, 7967, 0,
 +        26145, 692, 7967, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_300,
 -        26179, 8068, 7967, 0,
 +        26189, 8068, 7967, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_315PRO_VGA,
 -        26187, 7023, 7967, 0,
 +        26197, 7023, 7967, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_85C501,
 -        26191, 0,
 +        26201, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_85C496,
 -        26198, 0,
 +        26208, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_530HB,
 -        26205, 6621, 6333, 0,
 +        26215, 6621, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_540HB,
 -        23217, 6621, 6333, 0,
 +        23227, 6621, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_550HB,
 -        23689, 6621, 6333, 0,
 +        23699, 6621, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_85C601,
 -        26209, 0,
 +        26219, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_620,
 -        26216, 6729, 6333, 0,
 +        26226, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_630,
 -        26220, 6729, 6333, 0,
 +        26230, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_633,
 -        26224, 6729, 6333, 0,
 +        26234, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_635,
 -        26228, 6729, 6333, 0,
 +        26238, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_640,
 -        26232, 6729, 6333, 0,
 +        26242, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_645,
 -        26236, 6729, 6333, 0,
 +        26246, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_646,
 -        26240, 6729, 6333, 0,
 +        26250, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_648,
 -        26244, 6729, 6333, 0,
 +        26254, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_650,
 -        26248, 6729, 6333, 0,
 +        26258, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_651,
 -        26252, 6729, 6333, 0,
 +        26262, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_652,
 -        26256, 6729, 6333, 0,
 +        26266, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_655,
 -        26260, 6729, 6333, 0,
 +        26270, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_658,
 -        26264, 6729, 6333, 0,
 +        26274, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_661,
 -        26268, 6729, 6333, 0,
 +        26278, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_671,
 -        26272, 6729, 6333, 0,
 +        26282, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_730,
 -        26276, 6729, 6333, 0,
 +        26286, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_733,
 -        26280, 6729, 6333, 0,
 +        26290, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_735,
 -        26284, 6729, 6333, 0,
 +        26294, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_740,
 -        26288, 6729, 6333, 0,
 +        26298, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_741,
 -        26292, 6729, 6333, 0,
 +        26302, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_745,
 -        26296, 6729, 6333, 0,
 +        26306, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_746,
 -        26300, 6729, 6333, 0,
 +        26310, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_748,
 -        26304, 6729, 6333, 0,
 +        26314, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_750,
 -        26308, 6729, 6333, 0,
 +        26318, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_751,
 -        26312, 6729, 6333, 0,
 +        26322, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_752,
 -        26316, 6729, 6333, 0,
 +        26326, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_755,
 -        26320, 6729, 6333, 0,
 +        26330, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_756,
 -        26324, 6729, 6333, 0,
 +        26334, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_760,
 -        26328, 6729, 6333, 0,
 +        26338, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_761,
 -        26332, 6729, 6333, 0,
 +        26342, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_900,
 -        26336, 5589, 5487, 0,
 +        26346, 5589, 5487, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_961,
 -        26340, 6729, 6333, 0,
 +        26350, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_962,
 -        26344, 6729, 6333, 0,
 +        26354, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_963,
 -        26348, 6729, 6333, 0,
 +        26358, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_964,
 -        26352, 6729, 6333, 0,
 +        26362, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_965,
 -        26356, 6729, 6333, 0,
 +        26366, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_966,
 -        26360, 6729, 6333, 0,
 +        26370, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_968,
 -        26364, 6729, 6333, 0,
 +        26374, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_5597_IDE,
 -        26135, 6396, 6225, 0,
 +        26145, 6396, 6225, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_5597_HB,
 -        26135, 6729, 6333, 0,
 +        26145, 6729, 6333, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_530VGA,
 -        26205, 26368, 26372, 0,
 +        26215, 26378, 26382, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_6325,
 -        26387, 8068, 7967, 0,
 +        26397, 8068, 7967, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_6326,
 -        26392, 8068, 7967, 0,
 +        26402, 8068, 7967, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_5597_USB,
 -        26135, 6721, 6729, 6225, 0,
 +        26145, 6721, 6729, 6225, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_7002,
 -        26397, 6721, 6740, 6729, 6225, 0,
 +        26407, 6721, 6740, 6729, 6225, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_7012_AC,
 -        26402, 18670, 3393, 0,
 +        26412, 18670, 3393, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_7016,
 -        26407, 5589, 5487, 0,
 +        26417, 5589, 5487, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_7018,
 -        26412, 3393, 0,
 +        26422, 3393, 0,
         PCI_VENDOR_SIS, PCI_PRODUCT_SIS_7502,
 -        26417, 8262, 26422, 0,
 +        26427, 8262, 26432, 0,
         PCI_VENDOR_SILMOTION, PCI_PRODUCT_SILMOTION_SM502,
 -        26428, 9356, 0,
 +        26438, 9356, 0,
         PCI_VENDOR_SILMOTION, PCI_PRODUCT_SILMOTION_SM710,
 -        26436, 0,
 +        26446, 0,
         PCI_VENDOR_SILMOTION, PCI_PRODUCT_SILMOTION_SM712,
 -        26443, 0,
 +        26453, 0,
         PCI_VENDOR_SILMOTION, PCI_PRODUCT_SILMOTION_SM720,
 -        26451, 0,
 +        26461, 0,
         PCI_VENDOR_SILMOTION, PCI_PRODUCT_SILMOTION_SM810,
 -        26459, 0,
 +        26469, 0,
         PCI_VENDOR_SILMOTION, PCI_PRODUCT_SILMOTION_SM811,
 -        26459, 0,
 +        26469, 0,
         PCI_VENDOR_SILMOTION, PCI_PRODUCT_SILMOTION_SM820,
 -        26465, 0,
 +        26475, 0,
         PCI_VENDOR_SILMOTION, PCI_PRODUCT_SILMOTION_SM910,
 -        26472, 0,
 +        26482, 0,
         PCI_VENDOR_SMC, PCI_PRODUCT_SMC_37C665,
 -        26477, 0,
 -        PCI_VENDOR_SMC, PCI_PRODUCT_SMC_37C922,
          26487, 0,
 +        PCI_VENDOR_SMC, PCI_PRODUCT_SMC_37C922,
 +        26497, 0,
         PCI_VENDOR_SMC, PCI_PRODUCT_SMC_83C170,
 -        26497, 26504, 2439, 5487, 0,
 +        26507, 26514, 2439, 5487, 0,
         PCI_VENDOR_SMC, PCI_PRODUCT_SMC_83C175,
 -        26517, 26504, 2439, 5487, 0,
 +        26527, 26514, 2439, 5487, 0,
         PCI_VENDOR_SOLIDUM, PCI_PRODUCT_SOLIDUM_AMD971,
 -        26524, 458, 26533, 0,
 +        26534, 458, 26543, 0,
         PCI_VENDOR_SOLIDUM, PCI_PRODUCT_SOLIDUM_CLASS802,
 -        26524, 26537, 19846, 0,
 +        26534, 26547, 19846, 0,
         PCI_VENDOR_SOLIDUM, PCI_PRODUCT_SOLIDUM_PAXWARE1100,
 -        26548, 21745, 10019, 26557, 26537, 19846, 0,
 +        26558, 21755, 10019, 26567, 26547, 19846, 0,
         PCI_VENDOR_SONY, PCI_PRODUCT_SONY_CXD1947A,
 -        26560, 14406, 14411, 6729, 6225, 0,
 +        26570, 14406, 14411, 6729, 6225, 0,
         PCI_VENDOR_SONY, PCI_PRODUCT_SONY_CXD3222,
 -        26569, 14406, 14411, 6729, 6225, 0,
 +        26579, 14406, 14411, 6729, 6225, 0,
         PCI_VENDOR_SONY, PCI_PRODUCT_SONY_MEMSTICK,
 -        4513, 20699, 18915, 6225, 0,
 +        4513, 20709, 18915, 6225, 0,
         PCI_VENDOR_SUN, PCI_PRODUCT_SUN_EBUS,
 -        26577, 26582, 0,
 +        26587, 26592, 0,
         PCI_VENDOR_SUN, PCI_PRODUCT_SUN_HMENETWORK,
 -        26577, 26588, 26594, 5487, 0,
 +        26587, 26598, 26604, 5487, 0,
         PCI_VENDOR_SUN, PCI_PRODUCT_SUN_EBUSIII,
 -        26577, 26582, 26599, 26603, 0,
 +        26587, 26592, 26609, 26613, 0,
         PCI_VENDOR_SUN, PCI_PRODUCT_SUN_ERINETWORK,
 -        26608, 5487, 0,
 +        26618, 5487, 0,
         PCI_VENDOR_SUN, PCI_PRODUCT_SUN_FIREWIRE,
          8528, 6225, 0,
         PCI_VENDOR_SUN, PCI_PRODUCT_SUN_USB,
          6721, 6225, 0,
         PCI_VENDOR_SUN, PCI_PRODUCT_SUN_GEMNETWORK,
 -        26612, 5479, 5487, 0,
 +        26622, 5479, 5487, 0,
         PCI_VENDOR_SUN, PCI_PRODUCT_SUN_SIMBA,
 -        26616, 615, 6333, 0,
 +        26626, 615, 6333, 0,
         PCI_VENDOR_SUN, PCI_PRODUCT_SUN_5821,
 -        26622, 0,
 +        26632, 0,
         PCI_VENDOR_SUN, PCI_PRODUCT_SUN_SCA1K,
          8350, 7607, 14095, 0,
         PCI_VENDOR_SUN, PCI_PRODUCT_SUN_PSYCHO,
 -        26630, 615, 6225, 0,
 +        26640, 615, 6225, 0,
         PCI_VENDOR_SUN, PCI_PRODUCT_SUN_MS_IIep,
 -        26637, 26648, 615, 0,
 +        26647, 26658, 615, 0,
         PCI_VENDOR_SUN, PCI_PRODUCT_SUN_US_IIi,
 -        26653, 26664, 615, 0,
 +        26663, 26674, 615, 0,
         PCI_VENDOR_SUN, PCI_PRODUCT_SUN_US_IIe,
 -        26653, 15515, 615, 0,
 +        26663, 15515, 615, 0,
         PCI_VENDOR_SUN, PCI_PRODUCT_SUN_CASSINI,
 -        26668, 5479, 5487, 0,
 +        26678, 5479, 5487, 0,
         PCI_VENDOR_SUNDANCETI, PCI_PRODUCT_SUNDANCETI_IP100A,
 -        26676, 5589, 5487, 0,
 +        26686, 5589, 5487, 0,
         PCI_VENDOR_SUNDANCETI, PCI_PRODUCT_SUNDANCETI_ST201,
 -        26683, 5589, 5487, 0,
 +        26693, 5589, 5487, 0,
         PCI_VENDOR_SUNDANCETI, PCI_PRODUCT_SUNDANCETI_ST1023,
 -        26689, 5479, 5487, 0,
 +        26699, 5479, 5487, 0,
         PCI_VENDOR_SUNDANCETI, PCI_PRODUCT_SUNDANCETI_ST2021,
 -        26696, 5479, 5487, 0,
 +        26706, 5479, 5487, 0,
         PCI_VENDOR_SUNIX2, PCI_PRODUCT_SUNIX2_0001,
 -        26703, 6531, 26710, 0,
 +        26713, 6531, 26720, 0,
         PCI_VENDOR_SUNIX2, PCI_PRODUCT_SUNIX2_SER5XXXX,
 -        26718, 26726, 6531, 0,
 +        26728, 26736, 6531, 0,
         PCI_VENDOR_SUNIX, PCI_PRODUCT_SUNIX_PCI2S550,
 -        26736, 26726, 6531, 0,
 +        26746, 26736, 6531, 0,
         PCI_VENDOR_SUNIX, PCI_PRODUCT_SUNIX_SUN1888,
 -        26745, 26726, 26753, 0,
 +        26755, 26736, 26763, 0,
         PCI_VENDOR_SURECOM, PCI_PRODUCT_SURECOM_NE34,
 -        26762, 5487, 0,
 +        26772, 5487, 0,
         PCI_VENDOR_SYBA, PCI_PRODUCT_SYBA_4S2P,
 -        26768, 0,
 +        26778, 0,
         PCI_VENDOR_SYBA, PCI_PRODUCT_SYBA_4S,
 -        26082, 0,
 +        26092, 0,
         PCI_VENDOR_SYMPHONY, PCI_PRODUCT_SYMPHONY_82C101,
 -        26773, 0,
 +        26783, 0,
         PCI_VENDOR_SYMPHONY, PCI_PRODUCT_SYMPHONY_82C103,
 -        26780, 0,
 +        26790, 0,
         PCI_VENDOR_SYMPHONY, PCI_PRODUCT_SYMPHONY_82C105,
 -        26787, 0,
 +        26797, 0,
         PCI_VENDOR_SYMPHONY2, PCI_PRODUCT_SYMPHONY2_82C101,
 -        26773, 0,
 +        26783, 0,
         PCI_VENDOR_SYMPHONY, PCI_PRODUCT_SYMPHONY_83C553,
 -        26794, 6607, 6333, 0,
 +        26804, 6607, 6333, 0,
         PCI_VENDOR_SYSTEMBASE, PCI_PRODUCT_SYSTEMBASE_SB16C1054,
 -        26801, 26811, 0,
 +        26811, 26821, 0,
         PCI_VENDOR_SYSTEMBASE, PCI_PRODUCT_SYSTEMBASE_SB16C1058,
 -        26817, 26811, 0,
 +        26827, 26821, 0,
         PCI_VENDOR_SCHNEIDERKOCH, PCI_PRODUCT_SCHNEIDERKOCH_SKNET_FDDI,
 -        15169, 26827, 0,
 +        15169, 26837, 0,
         PCI_VENDOR_SCHNEIDERKOCH, PCI_PRODUCT_SCHNEIDERKOCH_SKNET_GE,
 -        15169, 26835, 0,
 +        15169, 26845, 0,
         PCI_VENDOR_SCHNEIDERKOCH, PCI_PRODUCT_SCHNEIDERKOCH_SK9821v2,
 -        26838, 8774, 0,
 +        26848, 8774, 0,
         PCI_VENDOR_SCHNEIDERKOCH, PCI_PRODUCT_SCHNEIDERKOCH_SK_9DX1,
 -        15169, 26846, 5479, 5487, 0,
 +        15169, 26856, 5479, 5487, 0,
         PCI_VENDOR_SCHNEIDERKOCH, PCI_PRODUCT_SCHNEIDERKOCH_SK_9D21,
 -        26854, 26862, 0,
 +        26864, 26872, 0,
         PCI_VENDOR_SCHNEIDERKOCH, PCI_PRODUCT_SCHNEIDERKOCH_SK_9D41,
 -        26873, 26881, 0,
 +        26883, 26891, 0,
         PCI_VENDOR_SCHNEIDERKOCH, PCI_PRODUCT_SCHNEIDERKOCH_SK_9SXX,
 -        26892, 5479, 5487, 0,
 +        26902, 5479, 5487, 0,
         PCI_VENDOR_SCHNEIDERKOCH, PCI_PRODUCT_SCHNEIDERKOCH_SK_9E21,
 -        26900, 26917, 0,
 +        26910, 26927, 0,
         PCI_VENDOR_TAMARACK, PCI_PRODUCT_TAMARACK_TC9021,
 -        26928, 5479, 5487, 0,
 +        26938, 5479, 5487, 0,
         PCI_VENDOR_TAMARACK, PCI_PRODUCT_TAMARACK_TC9021_ALT,
 -        26928, 5479, 5487, 26935, 626, 0,
 +        26938, 5479, 5487, 26945, 626, 0,
         PCI_VENDOR_TANDEM, PCI_PRODUCT_TANDEM_SERVERNETII,
 -        26940, 7361, 2497, 5679, 0,
 +        26950, 7361, 2497, 5679, 0,
         PCI_VENDOR_TEKRAM, PCI_PRODUCT_TEKRAM_DC290,
 -        26950, 0,
 -        PCI_VENDOR_TEKRAM2, PCI_PRODUCT_TEKRAM2_DC690C,
          26960, 0,
 +        PCI_VENDOR_TEKRAM2, PCI_PRODUCT_TEKRAM2_DC690C,
 +        26970, 0,
         PCI_VENDOR_TEKRAM2, PCI_PRODUCT_TEKRAM2_DC315,
 -        26968, 0,
 +        26978, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_TLAN,
 -        26982, 0,
 +        26992, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_TVP4020,
 -        26987, 6166, 6181, 0,
 +        26997, 6166, 6181, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_TSB12LV21,
 -        26995, 14406, 14411, 6729, 6225, 0,
 -        PCI_VENDOR_TI, PCI_PRODUCT_TI_TSB12LV22,
          27005, 14406, 14411, 6729, 6225, 0,
 +        PCI_VENDOR_TI, PCI_PRODUCT_TI_TSB12LV22,
 +        27015, 14406, 14411, 6729, 6225, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI4450LYNX,
 -        27015, 14406, 14411, 6729, 6225, 5926, 12407, 6333, 0,
 +        27025, 14406, 14411, 6729, 6225, 5926, 12407, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI4410LYNX,
 -        27023, 14406, 14411, 6729, 6225, 5926, 12407, 6333, 0,
 +        27033, 14406, 14411, 6729, 6225, 5926, 12407, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_TSB12LV23,
 -        27031, 14406, 14411, 6729, 6225, 0,
 -        PCI_VENDOR_TI, PCI_PRODUCT_TI_TSB12LV26,
          27041, 14406, 14411, 6729, 6225, 0,
 -        PCI_VENDOR_TI, PCI_PRODUCT_TI_TSB43AA22,
 +        PCI_VENDOR_TI, PCI_PRODUCT_TI_TSB12LV26,
          27051, 14406, 14411, 6729, 6225, 0,
 -        PCI_VENDOR_TI, PCI_PRODUCT_TI_TSB43AA22A,
 +        PCI_VENDOR_TI, PCI_PRODUCT_TI_TSB43AA22,
          27061, 14406, 14411, 6729, 6225, 0,
 +        PCI_VENDOR_TI, PCI_PRODUCT_TI_TSB43AA22A,
 +        27071, 14406, 14411, 6729, 6225, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_TSB43AA23,
 -        27073, 14406, 14411, 6729, 6225, 0,
 -        PCI_VENDOR_TI, PCI_PRODUCT_TI_TSB43AB21,
          27083, 14406, 14411, 6729, 6225, 0,
 +        PCI_VENDOR_TI, PCI_PRODUCT_TI_TSB43AB21,
 +        27093, 14406, 14411, 6729, 6225, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI4451LYNX,
 -        27093, 14406, 14411, 6729, 6225, 5926, 12407, 6333, 0,
 +        27103, 14406, 14411, 6729, 6225, 5926, 12407, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI4510LYNX,
 -        27101, 14406, 14411, 6729, 6225, 5926, 12407, 6333, 0,
 +        27111, 14406, 14411, 6729, 6225, 5926, 12407, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI4520LYNX,
 -        27109, 14406, 14411, 6729, 6225, 5926, 12407, 6333, 0,
 +        27119, 14406, 14411, 6729, 6225, 5926, 12407, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI7410LYNX,
 -        27117, 14406, 14411, 6729, 6225, 5926, 12407, 6333, 0,
 +        27127, 14406, 14411, 6729, 6225, 5926, 12407, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI72111CB,
 -        27129, 27142, 6225, 0,
 +        27139, 27152, 6225, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI72111FW,
 -        27129, 14406, 14411, 6729, 6225, 0,
 +        27139, 14406, 14411, 6729, 6225, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI72111FM,
 -        27129, 692, 27150, 6225, 0,
 +        27139, 692, 27160, 6225, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI72111SD,
 -        27129, 8259, 10641, 6225, 0,
 +        27139, 8259, 10641, 6225, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI72111SM,
 -        27129, 27161, 10641, 6225, 0,
 +        27139, 27171, 10641, 6225, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI6515A,
 -        27164, 27142, 6225, 0,
 +        27174, 27152, 6225, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI6515ASM,
 -        27164, 27142, 6225, 27173, 10641, 9256, 0,
 +        27174, 27152, 6225, 27183, 10641, 9256, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCIXX12CB,
 -        27180, 27142, 6225, 0,
 +        27190, 27152, 6225, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCIXX12FW,
 -        27180, 14406, 14411, 6729, 6225, 0,
 +        27190, 14406, 14411, 6729, 6225, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCIXX12FM,
 -        27180, 692, 27150, 6225, 0,
 +        27190, 692, 27160, 6225, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCIXX12SD,
 -        27180, 27188, 240, 6729, 6225, 0,
 +        27190, 27198, 240, 6729, 6225, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCIXX12SM,
 -        27180, 12813, 10641, 0,
 +        27190, 12813, 10641, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_ACX100A,
 -        27195, 7446, 0,
 +        27205, 7446, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_ACX100B,
 -        27203, 7446, 0,
 +        27213, 7446, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_ACX111,
 -        27211, 24749, 0,
 +        27221, 24759, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1130,
 -        27218, 12407, 6333, 0,
 +        27228, 12407, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1031,
 -        27226, 14423, 6333, 0,
 +        27236, 14423, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1131,
 -        27234, 12407, 6333, 0,
 +        27244, 12407, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1250,
 -        27242, 12407, 6333, 0,
 +        27252, 12407, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1220,
 -        27250, 12407, 6333, 0,
 +        27260, 12407, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1221,
 -        27258, 12407, 6333, 0,
 +        27268, 12407, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1210,
 -        27266, 12407, 6333, 0,
 +        27276, 12407, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1450,
 -        27274, 12407, 6333, 0,
 +        27284, 12407, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1225,
 -        27282, 12407, 6333, 0,
 +        27292, 12407, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1251,
 -        27290, 12407, 6333, 0,
 +        27300, 12407, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1211,
 -        27298, 12407, 6333, 0,
 +        27308, 12407, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1251B,
 -        27306, 12407, 6333, 0,
 +        27316, 12407, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI2030,
 -        27315, 8055, 6333, 0,
 +        27325, 8055, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI2050,
 -        27323, 8055, 6333, 0,
 +        27333, 8055, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI4450YENTA,
 -        27015, 12407, 6333, 5926, 14406, 14411, 6729, 6225, 0,
 +        27025, 12407, 6333, 5926, 14406, 14411, 6729, 6225, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI4410YENTA,
 -        27023, 12407, 6333, 5926, 14406, 14411, 6729, 6225, 0,
 +        27033, 12407, 6333, 5926, 14406, 14411, 6729, 6225, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI4451YENTA,
 -        27093, 12407, 6333, 5926, 14406, 14411, 6729, 6225, 0,
 +        27103, 12407, 6333, 5926, 14406, 14411, 6729, 6225, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI4510YENTA,
 -        27101, 12407, 6333, 5926, 14406, 14411, 6729, 6225, 0,
 +        27111, 12407, 6333, 5926, 14406, 14411, 6729, 6225, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI4520YENTA,
 -        27109, 12407, 6333, 5926, 14406, 14411, 6729, 6225, 0,
 +        27119, 12407, 6333, 5926, 14406, 14411, 6729, 6225, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI7510YENTA,
 -        27331, 12407, 6333, 5926, 14406, 14411, 6729, 6225, 0,
 +        27341, 12407, 6333, 5926, 14406, 14411, 6729, 6225, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI7610YENTA,
 -        27339, 12407, 6333, 5926, 14406, 14411, 6729, 6225, 0,
 +        27349, 12407, 6333, 5926, 14406, 14411, 6729, 6225, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI7410YENTA,
 -        27347, 12407, 6333, 5926, 14406, 14411, 6729, 6225, 0,
 +        27357, 12407, 6333, 5926, 14406, 14411, 6729, 6225, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI7610SM,
 -        27339, 12407, 6333, 27173, 10641, 27355, 0,
 +        27349, 12407, 6333, 27183, 10641, 27365, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI7410SD,
 -        27361, 12407, 6333, 27372, 27355, 0,
 +        27371, 12407, 6333, 27382, 27365, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI7410MS,
 -        27361, 12407, 6333, 27380, 20699, 27355, 0,
 +        27371, 12407, 6333, 27390, 20709, 27365, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1410,
 -        27388, 12407, 6333, 0,
 +        27398, 12407, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1420,
 -        27396, 12407, 6333, 0,
 +        27406, 12407, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1451,
 -        27404, 12407, 6333, 0,
 +        27414, 12407, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1421,
 -        27412, 12407, 6333, 0,
 +        27422, 12407, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1620,
 -        27420, 12407, 6333, 0,
 +        27430, 12407, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1520,
 -        27428, 12407, 6333, 0,
 +        27438, 12407, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1510,
 -        27436, 12407, 6333, 0,
 +        27446, 12407, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1530,
 -        27444, 12407, 6333, 0,
 +        27454, 12407, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1515,
 -        27452, 12407, 6333, 0,
 +        27462, 12407, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI2040,
 -        27460, 27468, 6333, 0,
 +        27470, 27478, 6333, 0,
         PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI7420YENTA,
 -        27476, 27484, 6333, 5926, 14406, 14411, 6729, 6225, 0,
 +        27486, 27494, 6333, 5926, 14406, 14411, 6729, 6225, 0,
         PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI010L,
 -        27496, 0,
 +        27506, 0,
         PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI100L,
 -        27505, 0,
 +        27515, 0,
         PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI110L,
 -        27514, 0,
 +        27524, 0,
         PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI200L,
 -        27523, 0,
 +        27533, 0,
         PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI210L,
 -        27532, 0,
 +        27542, 0,
         PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI200LI,
 -        27541, 0,
 -        PCI_VENDOR_MOLEX, PCI_PRODUCT_MOLEX_VSCOM_PCI400L,
          27551, 0,
 +        PCI_VENDOR_MOLEX, PCI_PRODUCT_MOLEX_VSCOM_PCI400L,
 +        27561, 0,
         PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI800L,
 -        27560, 0,
 +        27570, 0,
         PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI011H,
 -        27569, 0,
 +        27579, 0,
         PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCIx10H,
 -        27578, 0,
 +        27588, 0,
         PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI100H,
 -        27587, 0,
 +        27597, 0,
         PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI800H,
 -        27596, 0,
 +        27606, 0,
         PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI800H_1,
 -        27605, 0,
 +        27615, 0,
         PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI200H,
 -        27616, 0,
 +        27626, 0,
         PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI010HV2,
 -        27625, 0,
 +        27635, 0,
         PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI200HV2,
 -        27636, 0,
 +        27646, 0,
         PCI_VENDOR_TOSHIBA, PCI_PRODUCT_TOSHIBA_R4X00,
 -        27647, 6621, 6333, 0,
 +        27657, 6621, 6333, 0,
         PCI_VENDOR_TOSHIBA, PCI_PRODUCT_TOSHIBA_TC35856F,
 -        27653, 6895, 27662, 0,
 +        27663, 6895, 27672, 0,
         PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_PORTEGE,
 -        27673, 12772, 0,
 +        27683, 12772, 0,
         PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_PICCOLO,
 -        27681, 6396, 6225, 0,
 +        27691, 6396, 6225, 0,
         PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_PICCOLO2,
 -        27681, 6181, 6396, 6225, 0,
 +        27691, 6181, 6396, 6225, 0,
         PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_PICCOLO3,
 -        27681, 6192, 6396, 6225, 0,
 +        27691, 6192, 6396, 6225, 0,
         PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_PICCOLO5,
 -        27681, 13812, 6396, 6225, 0,
 +        27691, 13812, 6396, 6225, 0,
         PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_HOST,
          6729, 20041, 0,
         PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_ISA,
          6607, 6333, 0,
         PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_ToPIC95,
 -        27689, 12407, 6333, 0,
 +        27699, 12407, 6333, 0,
         PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_ToPIC95B,
 -        27697, 12407, 6333, 0,
 +        27707, 12407, 6333, 0,
         PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_ToPIC97,
 -        27706, 12407, 6333, 0,
 +        27716, 12407, 6333, 0,
         PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_SANREMO,
 -        27714, 27723, 6729, 6333, 0,
 +        27724, 27733, 6729, 6333, 0,
         PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_SMCARD,
          12813, 1935, 6225, 0,
         PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_SDCARD,
 -        27188, 240, 10641, 6225, 27732, 0,
 +        27198, 240, 10641, 6225, 27742, 0,
         PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_ToPIC100,
 -        27739, 12407, 6333, 0,
 +        27749, 12407, 6333, 0,
         PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_OBOE,
 -        2439, 27748, 27757, 27762, 0,
 +        2439, 27758, 27767, 27772, 0,
         PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_DONAUOBOE,
 -        2439, 27748, 27757, 27764, 0,
 +        2439, 27758, 27767, 27774, 0,
         PCI_VENDOR_TRANSMETA, PCI_PRODUCT_TRANSMETA_TM8000NB,
 -        27767, 692, 7844, 6333, 0,
 +        27777, 692, 7844, 6333, 0,
         PCI_VENDOR_TRANSMETA, PCI_PRODUCT_TRANSMETA_NORTHBRIDGE,
          18522, 7844, 6333, 0,
         PCI_VENDOR_TRANSMETA, PCI_PRODUCT_TRANSMETA_LONGRUN,
 -        27774, 7844, 6333, 0,
 +        27784, 7844, 6333, 0,
         PCI_VENDOR_TRANSMETA, PCI_PRODUCT_TRANSMETA_SDRAM,
 -        27782, 6225, 0,
 +        27792, 6225, 0,
         PCI_VENDOR_TRANSMETA, PCI_PRODUCT_TRANSMETA_BIOS_SCRATCH,
 -        27788, 20424, 0,
 +        27798, 20424, 0,
         PCI_VENDOR_TRIDENT, PCI_PRODUCT_TRIDENT_4DWAVE_DX,
 -        27793, 27800, 0,
 +        27803, 27810, 0,
         PCI_VENDOR_TRIDENT, PCI_PRODUCT_TRIDENT_4DWAVE_NX,
 -        27793, 27803, 0,
 +        27803, 27813, 0,
         PCI_VENDOR_TRIDENT, PCI_PRODUCT_TRIDENT_CYBERBLADE_I7,
 -        27806, 27817, 0,
 +        27816, 27827, 0,
         PCI_VENDOR_TRIDENT, PCI_PRODUCT_TRIDENT_TGUI_9320,
 -        27820, 27825, 0,
 +        27830, 27835, 0,
         PCI_VENDOR_TRIDENT, PCI_PRODUCT_TRIDENT_TGUI_9350,
 -        27820, 27830, 0,
 +        27830, 27840, 0,
         PCI_VENDOR_TRIDENT, PCI_PRODUCT_TRIDENT_TGUI_9360,
 -        27820, 27835, 0,
 +        27830, 27845, 0,
         PCI_VENDOR_TRIDENT, PCI_PRODUCT_TRIDENT_CYBER_9397,
 -        27840, 27846, 0,
 +        27850, 27856, 0,
         PCI_VENDOR_TRIDENT, PCI_PRODUCT_TRIDENT_CYBER_9397DVD,
 -        27840, 27851, 0,
 +        27850, 27861, 0,
         PCI_VENDOR_TRIDENT, PCI_PRODUCT_TRIDENT_CYBER_9525,
 -        27840, 27859, 0,
 +        27850, 27869, 0,
         PCI_VENDOR_TRIDENT, PCI_PRODUCT_TRIDENT_TGUI_9420,
 -        27820, 27864, 0,
 +        27830, 27874, 0,
         PCI_VENDOR_TRIDENT, PCI_PRODUCT_TRIDENT_TGUI_9440,
 -        27820, 27869, 0,
 +        27830, 27879, 0,
         PCI_VENDOR_TRIDENT, PCI_PRODUCT_TRIDENT_TGUI_9660,
 -        27820, 27874, 0,
 +        27830, 27884, 0,
         PCI_VENDOR_TRIDENT, PCI_PRODUCT_TRIDENT_TGUI_9680,
 -        27820, 27879, 0,
 +        27830, 27889, 0,
         PCI_VENDOR_TRIDENT, PCI_PRODUCT_TRIDENT_TGUI_9682,
 -        27820, 27884, 0,
 +        27830, 27894, 0,
         PCI_VENDOR_TRIDENT, PCI_PRODUCT_TRIDENT_CYBERBLADE,
 -        27806, 0,
 +        27816, 0,
         PCI_VENDOR_TRIONES, PCI_PRODUCT_TRIONES_HPT343,
 -        27889, 6396, 6225, 0,
 +        27899, 6396, 6225, 0,
         PCI_VENDOR_TRIONES, PCI_PRODUCT_TRIONES_HPT366,
 -        27900, 6396, 6225, 0,
 +        27910, 6396, 6225, 0,
         PCI_VENDOR_TRIONES, PCI_PRODUCT_TRIONES_HPT372A,
 -        27915, 6396, 6225, 0,
 +        27925, 6396, 6225, 0,
         PCI_VENDOR_TRIONES, PCI_PRODUCT_TRIONES_HPT302,
 -        27923, 6396, 6225, 0,
 +        27933, 6396, 6225, 0,
         PCI_VENDOR_TRIONES, PCI_PRODUCT_TRIONES_HPT371,
 -        27930, 6396, 6225, 0,
 +        27940, 6396, 6225, 0,
         PCI_VENDOR_TRIONES, PCI_PRODUCT_TRIONES_HPT374,
 -        27937, 6396, 6225, 0,
 +        27947, 6396, 6225, 0,
         PCI_VENDOR_TRIONES, PCI_PRODUCT_TRIONES_HPT372N,
 -        27944, 6396, 6225, 0,
 +        27954, 6396, 6225, 0,
         PCI_VENDOR_TRIONES, PCI_PRODUCT_TRIONES_ROCKETRAID_2310,
 -        27952, 27963, 6220, 27968, 0,
 +        27962, 27973, 6220, 27978, 0,
         PCI_VENDOR_TRIONES, PCI_PRODUCT_TRIONES_ROCKETRAID_2720,
 -        27952, 27973, 6220, 27968, 0,
 +        27962, 27983, 6220, 27978, 0,
         PCI_VENDOR_TRITECH, PCI_PRODUCT_TRITECH_TR25202,
 -        27978, 27988, 0,
 +        27988, 27998, 0,
         PCI_VENDOR_TSENG, PCI_PRODUCT_TSENG_ET4000_W32P_A,
 -        27996, 8612, 9983, 0,
 +        28006, 8612, 9983, 0,
         PCI_VENDOR_TSENG, PCI_PRODUCT_TSENG_ET4000_W32P_B,
 -        27996, 8612, 5124, 0,
 +        28006, 8612, 5124, 0,
         PCI_VENDOR_TSENG, PCI_PRODUCT_TSENG_ET4000_W32P_C,
 -        27996, 8612, 9989, 0,
 +        28006, 8612, 9989, 0,
         PCI_VENDOR_TSENG, PCI_PRODUCT_TSENG_ET4000_W32P_D,
 -        27996, 8612, 3163, 0,
 +        28006, 8612, 3163, 0,
         PCI_VENDOR_TSENG, PCI_PRODUCT_TSENG_ET6000,
 -        28007, 0,
 +        28017, 0,
         PCI_VENDOR_TURTLE_BEACH, PCI_PRODUCT_TURTLE_BEACH_SANTA_CRUZ,
          2564, 2570, 0,
         PCI_VENDOR_UMC, PCI_PRODUCT_UMC_UM82C881,
 -        28014, 28023, 9921, 0,
 +        28024, 28033, 9921, 0,
         PCI_VENDOR_UMC, PCI_PRODUCT_UMC_UM82C886,
 -        28027, 6607, 6333, 0,
 +        28037, 6607, 6333, 0,
         PCI_VENDOR_UMC, PCI_PRODUCT_UMC_UM8673F,
 -        28036, 8131, 6225, 0,
 +        28046, 8131, 6225, 0,
         PCI_VENDOR_UMC, PCI_PRODUCT_UMC_UM8881,
 -        28044, 16108, 28023, 615, 9921, 0,
 +        28054, 16108, 28033, 615, 9921, 0,
         PCI_VENDOR_UMC, PCI_PRODUCT_UMC_UM82C891,
 -        28051, 0,
 +        28061, 0,
         PCI_VENDOR_UMC, PCI_PRODUCT_UMC_UM886A,
 -        28060, 0,
 +        28070, 0,
         PCI_VENDOR_UMC, PCI_PRODUCT_UMC_UM8886BF,
 -        28067, 0,
 +        28077, 0,
         PCI_VENDOR_UMC, PCI_PRODUCT_UMC_UM8710,
 -        28076, 0,
 +        28086, 0,
         PCI_VENDOR_UMC, PCI_PRODUCT_UMC_UM8886,
 -        28083, 0,
 +        28093, 0,
         PCI_VENDOR_UMC, PCI_PRODUCT_UMC_UM8881F,
 -        28090, 28098, 6333, 0,
 +        28100, 28108, 6333, 0,
         PCI_VENDOR_UMC, PCI_PRODUCT_UMC_UM8886F,
 -        28107, 6607, 6333, 0,
 +        28117, 6607, 6333, 0,
         PCI_VENDOR_UMC, PCI_PRODUCT_UMC_UM8886A,
 -        28115, 0,
 +        28125, 0,
         PCI_VENDOR_UMC, PCI_PRODUCT_UMC_UM8891A,
 -        28123, 0,
 +        28133, 0,
         PCI_VENDOR_UMC, PCI_PRODUCT_UMC_UM9017F,
 -        28131, 0,
 +        28141, 0,
         PCI_VENDOR_UMC, PCI_PRODUCT_UMC_UM8886N,
 -        28139, 0,
 +        28149, 0,
         PCI_VENDOR_UMC, PCI_PRODUCT_UMC_UM8891N,
 -        28147, 0,
 +        28157, 0,
         PCI_VENDOR_ULSI, PCI_PRODUCT_ULSI_US201,
 -        28155, 0,
 +        28165, 0,
         PCI_VENDOR_USR, PCI_PRODUCT_USR_3C2884A,
 -        13148, 28161, 28167, 615, 5534, 28176, 0,
 +        13148, 28171, 28177, 615, 5534, 28186, 0,
         PCI_VENDOR_USR, PCI_PRODUCT_USR_3CP5609,
 -        28187, 615, 26059, 5534, 0,
 +        28197, 615, 26069, 5534, 0,
         PCI_VENDOR_USR2, PCI_PRODUCT_USR2_USR997902,
 -        28195, 5479, 5487, 0,
 +        28205, 5479, 5487, 0,
         PCI_VENDOR_USR2, PCI_PRODUCT_USR2_2415,
          4739, 14423, 5679, 0,
         PCI_VENDOR_V3, PCI_PRODUCT_V3_V292PBCPSC,
 -        28205, 28216, 28222, 22781, 6785, 615, 6333, 0,
 +        28215, 28226, 28232, 22791, 6785, 615, 6333, 0,
         PCI_VENDOR_V3, PCI_PRODUCT_V3_V292PBC,
 -        28228, 28236, 6621, 6333, 0,
 +        28238, 28246, 6621, 6333, 0,
         PCI_VENDOR_V3, PCI_PRODUCT_V3_V960PBC,
 -        28245, 17034, 6621, 6333, 0,
 +        28255, 17034, 6621, 6333, 0,
         PCI_VENDOR_V3, PCI_PRODUCT_V3_V96DPC,
 -        28253, 17034, 28260, 6621, 6333, 0,
 +        28263, 17034, 28270, 6621, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT6305,
 -        28267, 14406, 14411, 6729, 6225, 0,
 +        28277, 14406, 14411, 6729, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_K8M800_0,
 -        28274, 6729, 0,
 +        28284, 6729, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_K8T890_0,
 -        28281, 6729, 0,
 +        28291, 6729, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_KT880,
 -        28288, 2544, 6785, 615, 6333, 0,
 +        28298, 2544, 6785, 615, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_K8HTB_0,
 -        28294, 6729, 0,
 +        28304, 6729, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8363_HB,
 -        28300, 28307, 28315, 6729, 6333, 0,
 +        28310, 28317, 28325, 6729, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT3351_HB_0351,
 -        28322, 6729, 6333, 0,
 +        28332, 6729, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8371_HB,
 -        28329, 28307, 28336, 6729, 6333, 0,
 +        28339, 28317, 28346, 6729, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VX900_HB,
 -        28343, 6729, 6333, 0,
 +        28353, 6729, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8501_MVP4,
 -        28349, 28307, 28356, 6729, 6333, 0,
 +        28359, 28317, 28366, 6729, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C505,
 -        28362, 28371, 0,
 +        28372, 28381, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C561,
 -        28379, 0,
 +        28389, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C586A_IDE,
 -        28388, 6396, 6225, 0,
 +        28398, 6396, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C576,
 -        28398, 28407, 0,
 +        28408, 28417, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_CX700_IDE,
 -        28410, 6396, 6225, 0,
 +        28420, 6396, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C580VP,
 -        28416, 28307, 28425, 6621, 6333, 0,
 +        28426, 28317, 28435, 6621, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C586_ISA,
 -        28429, 6607, 6333, 0,
 +        28439, 6607, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8237A_SATA,
 -        28438, 692, 8249, 6225, 0,
 +        28448, 692, 8249, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C595,
 -        28446, 28307, 28455, 6621, 6333, 0,
 +        28456, 28317, 28465, 6621, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C596A,
 -        28460, 6607, 6333, 0,
 +        28470, 6607, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C597,
 -        28470, 28307, 28479, 6621, 6333, 0,
 +        28480, 28317, 28489, 6621, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C598PCI,
 -        28484, 28307, 28493, 6621, 6333, 0,
 +        28494, 28317, 28503, 6621, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8605PCI,
 -        28499, 28307, 28506, 28515, 6621, 6333, 0,
 +        28509, 28317, 28516, 28525, 6621, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C686A_ISA,
 -        28520, 6607, 6333, 0,
 +        28530, 6607, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C691,
 -        28530, 28307, 28539, 6621, 0,
 +        28540, 28317, 28549, 6621, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C693,
 -        28544, 28307, 7023, 28553, 6621, 0,
 +        28554, 28317, 7023, 28563, 6621, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT86C926,
 -        28559, 28568, 28575, 6225, 0,
 +        28569, 28578, 28585, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C570M,
 -        28588, 28598, 6621, 6333, 0,
 +        28598, 28608, 6621, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C570MV,
 -        28588, 28598, 6607, 6333, 0,
 +        28598, 28608, 6607, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_KT880_1,
 -        28288, 2544, 6785, 615, 6333, 0,
 +        28298, 2544, 6785, 615, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT3351_HB_1351,
 -        28322, 6729, 6333, 0,
 +        28332, 6729, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C586_IDE,
 -        28429, 6396, 6225, 0,
 +        28439, 6396, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C595_2,
 -        28446, 28307, 28455, 6621, 6333, 0,
 +        28456, 28317, 28465, 6621, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_KT880_2,
 -        28288, 2544, 6785, 615, 6333, 0,
 +        28298, 2544, 6785, 615, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT3351_HB_2351,
 -        28322, 6729, 6333, 0,
 +        28332, 6729, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8251_PPB_287A,
 -        28607, 8055, 6333, 0,
 +        28617, 8055, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8251_PCIE1,
 -        28607, 18408, 7821, 28614, 0,
 +        28617, 18408, 7821, 28624, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8251_PCIE2,
 -        28607, 18408, 7821, 28620, 0,
 +        28617, 18408, 7821, 28630, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8251_VLINK,
 -        28607, 6935, 28626, 6225, 0,
 +        28617, 6935, 28636, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT83C572,
 -        28632, 6721, 6225, 0,
 +        28642, 6721, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C586_PWR,
 -        28429, 3749, 6848, 6225, 0,
 +        28439, 3749, 6848, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT3043,
 -        28641, 28648, 5589, 5487, 0,
 +        28651, 28658, 5589, 5487, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT6306,
 -        28656, 14406, 14411, 6729, 6225, 0,
 +        28666, 14406, 14411, 6729, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT6105M,
 -        28663, 28671, 26603, 5589, 5487, 0,
 +        28673, 28681, 26613, 5589, 5487, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C686A_SMB,
 -        28520, 8226, 6225, 0,
 +        28530, 8226, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C686A_AC97,
 -        28520, 18670, 6824, 6225, 0,
 +        28530, 18670, 6824, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8233_AC97,
 -        28678, 18670, 6824, 6225, 0,
 +        28688, 18670, 6824, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT6102,
 -        28692, 28671, 20961, 5589, 5487, 0,
 +        28702, 28681, 20971, 5589, 5487, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C686A_MC97,
 -        28520, 28699, 5534, 6225, 0,
 +        28530, 28709, 5534, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8233,
 -        28705, 6607, 6333, 0,
 +        28715, 6607, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8366,
 -        28712, 28307, 28719, 28726, 6333, 0,
 +        28722, 28317, 28729, 28736, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8653,
 -        28734, 28307, 7023, 28741, 28726, 6333, 0,
 +        28744, 28317, 7023, 28751, 28736, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8237_EHCI,
 -        28747, 8024, 6721, 6225, 0,
 +        28757, 8024, 6721, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT6105,
 -        28754, 28671, 26603, 5589, 5487, 0,
 +        28764, 28681, 26613, 5589, 5487, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT612X,
 -        28761, 28768, 5502, 5487, 0,
 +        28771, 28778, 5502, 5487, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8623_VGA,
 -        28779, 28307, 28786, 7967, 6225, 0,
 +        28789, 28317, 28796, 7967, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8623,
 -        28779, 28307, 28786, 28726, 6333, 0,
 +        28789, 28317, 28796, 28736, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8233A,
 -        28794, 6607, 6333, 0,
 +        28804, 6607, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8237_SATA,
 -        28747, 692, 8249, 6225, 0,
 +        28757, 692, 8249, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT6410_RAID,
 -        28802, 23075, 6220, 6225, 0,
 +        28812, 23085, 6220, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_K8HTB,
 -        28294, 6729, 0,
 +        28304, 6729, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT6421_RAID,
 -        28809, 10492, 6220, 6225, 0,
 +        28819, 10492, 6220, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT3314_IG,
 -        28816, 28823, 28829, 692, 1716, 0,
 +        28826, 28833, 28839, 692, 1716, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8237R_SATA,
 -        28839, 692, 8249, 6225, 0,
 +        28849, 692, 8249, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT3351_HB_3351,
 -        28322, 6729, 6333, 0,
 +        28332, 6729, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_KT880_3,
 -        28288, 2544, 6785, 615, 6333, 0,
 +        28298, 2544, 6785, 615, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8235,
 -        28847, 28307, 28854, 6607, 6333, 0,
 +        28857, 28317, 28864, 6607, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8377,
 -        28861, 28868, 28875, 2544, 6785, 615, 6333, 0,
 +        28871, 28878, 28885, 2544, 6785, 615, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8378,
 -        28881, 28868, 28888, 2544, 6785, 615, 6333, 0,
 +        28891, 28878, 28898, 2544, 6785, 615, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8237,
 -        28747, 23637, 6333, 0,
 +        28757, 23647, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8251,
 -        28607, 23637, 6333, 0,
 +        28617, 23647, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8237A_HDA,
 -        28894, 19137, 19142, 6824, 6225, 0,
 +        28904, 19137, 19142, 6824, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8237A_ISA,
 -        28909, 6607, 6333, 0,
 +        28919, 6607, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8237S_ISA,
 -        28927, 6607, 6333, 0,
 +        28937, 6607, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8237A_PPB,
 -        28438, 8055, 6333, 0,
 +        28448, 8055, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8237A_HB,
 -        28438, 6729, 6333, 0,
 +        28448, 6729, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_KT880_4,
 -        28288, 2544, 6785, 615, 6333, 0,
 +        28298, 2544, 6785, 615, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT3351_HB_4351,
 -        28322, 6729, 6333, 0,
 +        28332, 6729, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_CX700M2_IDE,
 -        28935, 6396, 6225, 0,
 +        28945, 6396, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8237A_SATA_2,
 -        28438, 692, 8249, 6225, 0,
 +        28448, 692, 8249, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT3351_IOAPIC,
 -        28322, 8209, 19785, 17901, 6225, 0,
 +        28332, 8209, 19785, 17901, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8237S_SATA,
 -        28927, 692, 8249, 6225, 0,
 +        28937, 692, 8249, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT86C100A,
 -        28949, 28959, 5589, 5487, 0,
 +        28959, 28969, 5589, 5487, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8251_SATA,
 -        28607, 692, 8249, 6225, 0,
 +        28617, 692, 8249, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8378_IG,
 -        28881, 28888, 28829, 692, 1716, 0,
 +        28891, 28898, 28839, 692, 1716, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_KT880_5,
 -        28288, 2544, 6785, 615, 6333, 0,
 +        28298, 2544, 6785, 615, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT3351_HB_7351,
 -        28322, 6729, 6333, 0,
 +        28332, 6729, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8231,
 -        28970, 6607, 6333, 0,
 +        28980, 6607, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8231_PWR,
 -        28970, 3749, 6848, 6225, 0,
 +        28980, 3749, 6848, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8363_PPB,
 -        28300, 28307, 28315, 615, 6785, 8068, 6333, 0,
 +        28310, 28317, 28325, 615, 6785, 8068, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_CX700,
 -        28410, 23637, 6333, 0,
 +        28420, 23647, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VX800,
 -        28977, 23637, 6333, 0,
 +        28987, 23647, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8371_PPB,
 -        28329, 28307, 28336, 8055, 6333, 0,
 +        28339, 28317, 28346, 8055, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8501AGP,
 -        28349, 28307, 28356, 28989, 6333, 0,
 +        28359, 28317, 28366, 28999, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C597AGP,
 -        28470, 28307, 28479, 28989, 6333, 0,
 +        28480, 28317, 28489, 28999, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C598AGP,
 -        28484, 28307, 28493, 28989, 6333, 0,
 +        28494, 28317, 28503, 28999, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8605AGP,
 -        28499, 28307, 28506, 28515, 18871, 6333, 0,
 +        28509, 28317, 28516, 28525, 18871, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VX900_IDE,
 -        28343, 6396, 6225, 0,
 +        28353, 6396, 6225, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_K8T890_PPB_A238,
 -        28281, 8055, 6333, 0,
 +        28291, 8055, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8633AGP,
 -        28997, 28307, 7023, 29004, 28989, 6333, 0,
 +        29007, 28317, 7023, 29014, 28999, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8366AGP,
 -        28712, 28307, 28719, 28989, 6333, 0,
 +        28722, 28317, 28729, 28999, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8377AGP,
 -        28861, 28989, 6333, 0,
 +        28871, 28999, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_K8HTB_AGP,
 -        28294, 8068, 0,
 +        28304, 8068, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8377CEAGP,
 -        29009, 28989, 6333, 0,
 +        29019, 28999, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT3237_PPB,
 -        28281, 7844, 2182, 28747, 8007, 8055, 6333, 0,
 +        28291, 7844, 2182, 28757, 8007, 8055, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_K8T890_PPB_C238,
 -        28281, 8055, 6333, 0,
 +        28291, 8055, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_K8T890_PPB_D238,
 -        28281, 8055, 6333, 0,
 +        28291, 8055, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_K8T890_PPB_E238,
 -        28281, 8055, 6333, 0,
 +        28291, 8055, 6333, 0,
         PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_K8T890_PPB_F238,
 -        28281, 8055, 6333, 0,
 +        28291, 8055, 6333, 0,
         PCI_VENDOR_VIRTUALBOX, PCI_PRODUCT_VIRTUALBOX_GRAPHICS,
          1716, 0,
         PCI_VENDOR_VIRTUALBOX, PCI_PRODUCT_VIRTUALBOX_GUEST,
 -        29018, 29024, 0,
 +        29028, 29034, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_60x0,
 -        29032, 0,
 +        29042, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6000B,
 -        29050, 0,
 +        29060, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x10,
 -        29064, 0,
 +        29074, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x20,
 -        29077, 0,
 +        29087, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6530,
 -        29090, 0,
 +        29100, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6550,
 -        29098, 0,
 +        29108, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x17,
 -        29106, 0,
 +        29116, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x27,
 -        29119, 0,
 +        29129, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6537,
 -        29132, 0,
 +        29142, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6557,
 -        29140, 0,
 +        29150, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x15,
 -        29157, 0,
 +        29167, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x25,
 -        29170, 0,
 +        29180, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6535,
 -        29183, 0,
 +        29193, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6555,
 -        29191, 0,
 +        29201, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x17RP,
 -        29208, 0,
 +        29218, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x27RP,
 -        29221, 0,
 +        29231, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6537RP,
 -        29234, 0,
 -        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6557RP,
          29244, 0,
 -        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x11RP,
 +        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6557RP,
          29254, 0,
 +        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x11RP,
 +        29264, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x21RP,
 -        29267, 0,
 +        29277, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x17RD,
 -        29280, 0,
 +        29290, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x27RD,
 -        29293, 0,
 +        29303, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6537RD,
 -        29306, 0,
 -        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6557RD,
          29316, 0,
 -        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x11RD,
 +        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6557RD,
          29326, 0,
 +        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x11RD,
 +        29336, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x21RD,
 -        29339, 0,
 +        29349, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x18RD,
 -        29352, 0,
 +        29362, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x28RD,
 -        29366, 0,
 +        29376, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x38RD,
 -        29380, 0,
 +        29390, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x58RD,
 -        29393, 0,
 +        29403, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x17RP2,
 -        29406, 0,
 +        29416, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x27RP2,
 -        29420, 0,
 +        29430, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6537RP2,
 -        29434, 0,
 +        29444, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x11RP2,
 -        29445, 0,
 +        29455, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x21RP2,
 -        29459, 0,
 +        29469, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x13RS,
 -        29473, 0,
 -        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x23RS,
          29483, 0,
 -        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6518RS,
 +        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x23RS,
          29493, 0,
 -        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x28RS,
 +        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6518RS,
          29503, 0,
 -        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x38RS,
 +        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x28RS,
          29513, 0,
 -        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x58RS,
 +        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x38RS,
          29523, 0,
 -        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x33RS,
 +        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x58RS,
          29533, 0,
 -        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x43RS,
 +        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x33RS,
          29543, 0,
 -        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x53RS,
 +        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x43RS,
          29553, 0,
 -        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x63RS,
 +        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x53RS,
          29563, 0,
 -        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_7x13RN,
 +        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x63RS,
          29573, 0,
 -        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_7x23RN,
 +        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_7x13RN,
          29583, 0,
 -        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_7x18RN,
 +        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_7x23RN,
          29593, 0,
 +        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_7x18RN,
 +        29603, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_7x28RN,
 -        29607, 0,
 +        29617, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_7x38RN,
 -        29621, 0,
 +        29631, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_7x58RN,
 -        29634, 0,
 +        29644, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_7x43RN,
 -        29647, 0,
 +        29657, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_7x53RN,
 -        29660, 0,
 -        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_7x63RN,
          29670, 0,
 -        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_4x13RZ,
 +        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_7x63RN,
          29680, 0,
 -        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_4x23RZ,
 +        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_4x13RZ,
          29690, 0,
 -        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_8x13RZ,
 +        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_4x23RZ,
          29700, 0,
 -        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_8x23RZ,
 +        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_8x13RZ,
          29710, 0,
 -        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_8x33RZ,
 +        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_8x23RZ,
          29720, 0,
 -        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_8x43RZ,
 +        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_8x33RZ,
          29730, 0,
 -        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_8x53RZ,
 +        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_8x43RZ,
          29740, 0,
 -        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_8x63RZ,
 +        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_8x53RZ,
          29750, 0,
 -        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x19RD,
 +        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_8x63RZ,
          29760, 0,
 +        PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x19RD,
 +        29770, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x29RD,
 -        29773, 0,
 +        29783, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_7x19RN,
 -        29786, 0,
 +        29796, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_7x29RN,
 -        29799, 0,
 +        29809, 0,
         PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_ICP,
 -        29812, 0,
 +        29822, 0,
         PCI_VENDOR_VLSI, PCI_PRODUCT_VLSI_82C592,
 -        29816, 2544, 6333, 0,
 +        29826, 2544, 6333, 0,
         PCI_VENDOR_VLSI, PCI_PRODUCT_VLSI_82C593,
 -        29823, 16180, 6333, 0,
 +        29833, 16180, 6333, 0,
         PCI_VENDOR_VLSI, PCI_PRODUCT_VLSI_82C594,
 -        29830, 29837, 6, 6225, 0,
 +        29840, 29847, 6, 6225, 0,
         PCI_VENDOR_VLSI, PCI_PRODUCT_VLSI_82C596597,
 -        29845, 29837, 16180, 6333, 0,
 +        29855, 29847, 16180, 6333, 0,
         PCI_VENDOR_VLSI, PCI_PRODUCT_VLSI_82C541,
 -        29856, 0,
 +        29866, 0,
         PCI_VENDOR_VLSI, PCI_PRODUCT_VLSI_82C543,
 -        29863, 0,
 +        29873, 0,
         PCI_VENDOR_VLSI, PCI_PRODUCT_VLSI_82C532,
 -        29870, 0,
 +        29880, 0,
         PCI_VENDOR_VLSI, PCI_PRODUCT_VLSI_82C534,
 -        29877, 0,
 +        29887, 0,
         PCI_VENDOR_VLSI, PCI_PRODUCT_VLSI_82C535,
 -        29884, 0,
 +        29894, 0,
         PCI_VENDOR_VLSI, PCI_PRODUCT_VLSI_82C147,
 -        29891, 0,
 +        29901, 0,
         PCI_VENDOR_VLSI, PCI_PRODUCT_VLSI_82C975,
 -        29898, 0,
 +        29908, 0,
         PCI_VENDOR_VLSI, PCI_PRODUCT_VLSI_82C925,
 -        29905, 0,
 +        29915, 0,
         PCI_VENDOR_VMWARE, PCI_PRODUCT_VMWARE_VIRTUAL2,
 -        18522, 29912, 7361, 0,
 +        18522, 29922, 7361, 0,
         PCI_VENDOR_VMWARE, PCI_PRODUCT_VMWARE_VIRTUAL,
 -        18522, 29912, 0,
 +        18522, 29922, 0,
         PCI_VENDOR_VMWARE, PCI_PRODUCT_VMWARE_VMXNET,
          18522, 3888, 0,
         PCI_VENDOR_VMWARE, PCI_PRODUCT_VMWARE_VMSCSI,
          18522, 6440, 0,
         PCI_VENDOR_VMWARE, PCI_PRODUCT_VMWARE_VMCI,
 -        18522, 29917, 29925, 3027, 0,
 +        18522, 29927, 29935, 3027, 0,
         PCI_VENDOR_VMWARE, PCI_PRODUCT_VMWARE_VMEM,
 -        18522, 29939, 0,
 +        18522, 29949, 0,
         PCI_VENDOR_VMWARE, PCI_PRODUCT_VMWARE_VMEB,
 -        18522, 29947, 0,
 +        18522, 29957, 0,
         PCI_VENDOR_VMWARE, PCI_PRODUCT_VMWARE_VMUSB,
          18522, 6721, 0,
         PCI_VENDOR_VMWARE, PCI_PRODUCT_VMWARE_VM1394,
 @@ -9000,109 +9002,109 @@
         PCI_VENDOR_VMWARE, PCI_PRODUCT_VMWARE_VMXNET3,
          18522, 3888, 6192, 0,
         PCI_VENDOR_VMWARE, PCI_PRODUCT_VMWARE_PVSCSI,
 -        29955, 0,
 +        29965, 0,
         PCI_VENDOR_VMWARE, PCI_PRODUCT_VMWARE_VMI3,
 -        29962, 29966, 29973, 0,
 +        29972, 29976, 29983, 0,
         PCI_VENDOR_WEITEK, PCI_PRODUCT_WEITEK_P9000,
 -        29977, 0,
 +        29987, 0,
         PCI_VENDOR_WEITEK, PCI_PRODUCT_WEITEK_P9100,
 -        29983, 0,
 +        29993, 0,
         PCI_VENDOR_WD, PCI_PRODUCT_WD_WD33C193A,
 -        29989, 0,
 -        PCI_VENDOR_WD, PCI_PRODUCT_WD_WD33C196A,
          29999, 0,
 -        PCI_VENDOR_WD, PCI_PRODUCT_WD_WD33C197A,
 +        PCI_VENDOR_WD, PCI_PRODUCT_WD_WD33C196A,
          30009, 0,
 -        PCI_VENDOR_WD, PCI_PRODUCT_WD_WD7193,
 +        PCI_VENDOR_WD, PCI_PRODUCT_WD_WD33C197A,
          30019, 0,
 +        PCI_VENDOR_WD, PCI_PRODUCT_WD_WD7193,
 +        30029, 0,
         PCI_VENDOR_WD, PCI_PRODUCT_WD_WD7197,
 -        30026, 0,
 +        30036, 0,
         PCI_VENDOR_WD, PCI_PRODUCT_WD_WD33C296A,
 -        30033, 0,
 -        PCI_VENDOR_WD, PCI_PRODUCT_WD_WD34C296,
          30043, 0,
 +        PCI_VENDOR_WD, PCI_PRODUCT_WD_WD34C296,
 +        30053, 0,
         PCI_VENDOR_WD, PCI_PRODUCT_WD_90C,
 -        30052, 0,
 +        30062, 0,
         PCI_VENDOR_WINBOND, PCI_PRODUCT_WINBOND_W83769F,
 -        30056, 0,
 +        30066, 0,
         PCI_VENDOR_WINBOND, PCI_PRODUCT_WINBOND_W83C553F_0,
 -        30064, 6607, 6333, 0,
 +        30074, 6607, 6333, 0,
         PCI_VENDOR_WINBOND, PCI_PRODUCT_WINBOND_W83628F,
 -        30073, 6607, 6333, 0,
 +        30083, 6607, 6333, 0,
         PCI_VENDOR_WINBOND, PCI_PRODUCT_WINBOND_W83C553F_1,
 -        30064, 6396, 6225, 0,
 +        30074, 6396, 6225, 0,
         PCI_VENDOR_WINBOND, PCI_PRODUCT_WINBOND_W89C840F,
 -        30081, 5589, 5487, 0,
 +        30091, 5589, 5487, 0,
         PCI_VENDOR_WINBOND, PCI_PRODUCT_WINBOND_W89C940F,
 -        30090, 5487, 0,
 +        30100, 5487, 0,
         PCI_VENDOR_WINBOND, PCI_PRODUCT_WINBOND_W89C940F_1,
 -        30090, 5487, 0,
 +        30100, 5487, 0,
         PCI_VENDOR_WINBOND, PCI_PRODUCT_WINBOND_W6692,
 -        30099, 8736, 0,
 +        30109, 8736, 0,
         PCI_VENDOR_WORKBIT, PCI_PRODUCT_WORKBIT_NJSC32BI,
 -        20538, 6440, 0,
 +        20548, 6440, 0,
         PCI_VENDOR_WORKBIT, PCI_PRODUCT_WORKBIT_NJATA32BI,
 -        20517, 6396, 0,
 +        20527, 6396, 0,
         PCI_VENDOR_WORKBIT, PCI_PRODUCT_WORKBIT_NJSC32UDE,
 -        30105, 6440, 0,
 +        30115, 6440, 0,
         PCI_VENDOR_WORKBIT, PCI_PRODUCT_WORKBIT_NJSC32BI_KME,
 -        20538, 6440, 30121, 0,
 +        20548, 6440, 30131, 0,
         PCI_VENDOR_WORKBIT, PCI_PRODUCT_WORKBIT_NJATA32BI_KME,
 -        20517, 6396, 30121, 0,
 +        20527, 6396, 30131, 0,
         PCI_VENDOR_WORKBIT, PCI_PRODUCT_WORKBIT_NJSC32UDE_IODATA,
 -        30105, 6440, 30127, 0,
 +        30115, 6440, 30137, 0,
         PCI_VENDOR_WORKBIT, PCI_PRODUCT_WORKBIT_NJSC32UDE_LOGITEC,
 -        30105, 6440, 30136, 0,
 +        30115, 6440, 30146, 0,
         PCI_VENDOR_WORKBIT, PCI_PRODUCT_WORKBIT_NJSC32UDE_LOGITEC2,
 -        30105, 6440, 30146, 0,
 +        30115, 6440, 30156, 0,
         PCI_VENDOR_WORKBIT, PCI_PRODUCT_WORKBIT_NJSC32UDE_BUFFALO,
 -        30105, 6440, 30157, 0,
 +        30115, 6440, 30167, 0,
         PCI_VENDOR_WORKBIT, PCI_PRODUCT_WORKBIT_NPATA32_CF32A,
 -        30167, 30173, 5679, 0,
 +        30177, 30183, 5679, 0,
         PCI_VENDOR_WORKBIT, PCI_PRODUCT_WORKBIT_NPATA32_CF32A_BUFFALO,
 -        30167, 30186, 5679, 30157, 0,
 +        30177, 30196, 5679, 30167, 0,
         PCI_VENDOR_WORKBIT, PCI_PRODUCT_WORKBIT_NPATA32_KME,
 -        30189, 6396, 30121, 0,
 +        30199, 6396, 30131, 0,
         PCI_VENDOR_XENSOURCE, PCI_PRODUCT_XENSOURCE_XENPLATFORM,
 -        30198, 30202, 2427, 0,
 +        30208, 30212, 2427, 0,
         PCI_VENDOR_XGI, PCI_PRODUCT_XGI_VOLARI_Z7,
 -        30211, 30218, 0,
 +        30221, 30228, 0,
         PCI_VENDOR_XGI, PCI_PRODUCT_XGI_VOLARI_Z9M,
 -       30211, 30228, 0,
 +        30221, 30238, 0,
         PCI_VENDOR_XGI, PCI_PRODUCT_XGI_VOLARI_Z11,
 -        30211, 30232, 0,
 +        30221, 30242, 0,
         PCI_VENDOR_XGI, PCI_PRODUCT_XGI_VOLARI_V3XT,
 -        30211, 30241, 0,
 +        30221, 30251, 0,
         PCI_VENDOR_XGI, PCI_PRODUCT_XGI_VOLARI_XP10,
 -        30211, 30252, 0,
 +        30221, 30262, 0,
         PCI_VENDOR_XIRCOM, PCI_PRODUCT_XIRCOM_X3201_3,
 -        30257, 2439, 5487, 6225, 0,
 +        30267, 2439, 5487, 6225, 0,
         PCI_VENDOR_XIRCOM, PCI_PRODUCT_XIRCOM_X3201_3_21143,
 -        30257, 2439, 5487, 6225, 30265, 0,
 +        30267, 2439, 5487, 6225, 30275, 0,
         PCI_VENDOR_XIRCOM, PCI_PRODUCT_XIRCOM_WINGLOBAL,
 -        30273, 5534, 0,
 +        30283, 5534, 0,
         PCI_VENDOR_XIRCOM, PCI_PRODUCT_XIRCOM_MODEM56,
          5704, 5534, 0,
         PCI_VENDOR_YAMAHA, PCI_PRODUCT_YAMAHA_YMF724,
 -        30283, 6824, 0,
 +        30293, 6824, 0,
         PCI_VENDOR_YAMAHA, PCI_PRODUCT_YAMAHA_YMF740,
 -        26288, 6824, 0,
 +        26298, 6824, 0,
         PCI_VENDOR_YAMAHA, PCI_PRODUCT_YAMAHA_YMF740C,
 -        30287, 30292, 6824, 0,
 +        30297, 30302, 6824, 0,
         PCI_VENDOR_YAMAHA, PCI_PRODUCT_YAMAHA_YMF724F,
 -        30299, 30292, 6824, 0,
 +        30309, 30302, 6824, 0,
         PCI_VENDOR_YAMAHA, PCI_PRODUCT_YAMAHA_YMF744B,
 -        30304, 30308, 6824, 0,
 +        30314, 30318, 6824, 0,
         PCI_VENDOR_YAMAHA, PCI_PRODUCT_YAMAHA_YMF754,
 -        30316, 30320, 6824, 0,
 +        30326, 30330, 6824, 0,
         PCI_VENDOR_ZEINET, PCI_PRODUCT_ZEINET_1221,
 -        30328, 0,
 +        30338, 0,
         PCI_VENDOR_ZIATECH, PCI_PRODUCT_ZIATECH_ZT8905,
 -        30333, 6333, 0,
 +        30343, 6333, 0,
         PCI_VENDOR_ZORAN, PCI_PRODUCT_ZORAN_ZR36057,
 -        30342, 2455, 6225, 0,
 +        30352, 2455, 6225, 0,
         PCI_VENDOR_ZORAN, PCI_PRODUCT_ZORAN_ZR36120,
 -       30350, 234, 6225, 0,
 +        30360, 234, 6225, 0,
 };
 static const char pci_words[] =3D { "."
          "Peak\0" /* 1 refs @ 1 */
 @@ -9188,7 +9190,7 @@
         "TMC\0" /* 1 refs @ 601 */
         "Miro\0" /* 1 refs @ 605 */
         "(2nd\0" /* 14 refs @ 610 */
 -        "PCI\0" /* 314 refs @ 615 */
 +        "PCI\0" /* 315 refs @ 615 */
         "Vendor\0" /* 16 refs @ 619 */
         "ID)\0" /* 19 refs @ 626 */
         "NEC\0" /* 2 refs @ 630 */
 @@ -9202,7 +9204,7 @@
         "Hitach\0" /* 1 refs @ 673 */
         "AMP\0" /* 1 refs @ 680 */
         "Silicon\0" /* 4 refs @ 684 */
 -        "Integrated\0" /* 80 refs @ 692 */
 +        "Integrated\0" /* 81 refs @ 692 */
         "Seiko\0" /* 1 refs @ 703 */
         "Tatung\0" /* 1 refs @ 709 */
         "Hewlett-Packard\0" /* 1 refs @ 716 */
 @@ -10586,7 +10588,7 @@
         "HD6310\0" /* 1 refs @ 10345 */
         "HD7340\0" /* 1 refs @ 10352 */
         "VxP524\0" /* 1 refs @ 10359 */
 -        "Processor\0" /* 26 refs @ 10366 */
 +        "Processor\0" /* 27 refs @ 10366 */
         "AU8820\0" /* 1 refs @ 10376 */
         "AU8830\0" /* 1 refs @ 10383 */
         "S5933\0" /* 1 refs @ 10390 */
 @@ -10656,7 +10658,7 @@
         "PCIe-PCIe\0" /* 1 refs @ 10853 */
         "single-channel\0" /* 2 refs @ 10863 */
         "RS-485\0" /* 8 refs @ 10878 */
 -        "UART\0" /* 24 refs @ 10885 */
 +        "UART\0" /* 25 refs @ 10885 */
         "dual-channel\0" /* 3 refs @ 10890 */
         "quad-channel\0" /* 3 refs @ 10903 */
         "octal-channel\0" /* 3 refs @ 10916 */
 @@ -11927,1279 +11929,1280 @@
         "Semaphore\0" /* 1 refs @ 20414 */
         "Scratchpad\0" /* 2 refs @ 20424 */
         "HANKSVILLE\0" /* 1 refs @ 20435 */
 -        "Powerstorm\0" /* 2 refs @ 20446 */
 -        "4D50T\0" /* 1 refs @ 20457 */
 -        "4D60T\0" /* 1 refs @ 20463 */
 -        "PRISM2.5\0" /* 1 refs @ 20469 */
 -        "PRISM\0" /* 2 refs @ 20478 */
 -        "Indigo\0" /* 1 refs @ 20484 */
 -        "Duette\0" /* 1 refs @ 20491 */
 -        "AEON\0" /* 1 refs @ 20498 */
 -        "CBIDE2/CI-iCN\0" /* 1 refs @ 20503 */
 -        "NinjaATA-32Bi\0" /* 3 refs @ 20517 */
 -        "CBSCII\0" /* 1 refs @ 20531 */
 -        "NinjaSCSI-32Bi\0" /* 3 refs @ 20538 */
 -        "RSA-PCI\0" /* 1 refs @ 20553 */
 -        "GV-BCTV5DL/PCI\0" /* 1 refs @ 20561 */
 -        "TV\0" /* 1 refs @ 20576 */
 -        "tuner\0" /* 1 refs @ 20579 */
 -        "IT8152\0" /* 1 refs @ 20585 */
 -        "IT8211\0" /* 1 refs @ 20592 */
 -        "IT8212\0" /* 1 refs @ 20599 */
 -        "AGX016\0" /* 1 refs @ 20606 */
 -        "ITT3204\0" /* 1 refs @ 20613 */
 -        "JMB360\0" /* 1 refs @ 20621 */
 -        "JMB361\0" /* 1 refs @ 20628 */
 -        "SATA/PATA\0" /* 4 refs @ 20635 */
 -        "JMB362\0" /* 1 refs @ 20645 */
 -        "JMB363\0" /* 1 refs @ 20652 */
 -        "JMB365\0" /* 1 refs @ 20659 */
 -        "JMB366\0" /* 1 refs @ 20666 */
 -        "JMB368\0" /* 1 refs @ 20673 */
 -        "PATA\0" /* 1 refs @ 20680 */
 -        "JMB38X\0" /* 4 refs @ 20685 */
 -        "SD/MMC\0" /* 4 refs @ 20692 */
 -        "Stick\0" /* 4 refs @ 20699 */
 -        "xD\0" /* 3 refs @ 20705 */
 -        "JMB388\0" /* 4 refs @ 20708 */
 -        "JMC250\0" /* 1 refs @ 20715 */
 -        "JMC260\0" /* 1 refs @ 20722 */
 -        "JNIC-1460\0" /* 1 refs @ 20729 */
 -        "Fibre-Channel\0" /* 5 refs @ 20739 */
 -        "JNIC-1560\0" /* 1 refs @ 20753 */
 -        "FCI-1063\0" /* 1 refs @ 20763 */
 -        "FCX2-6562\0" /* 1 refs @ 20772 */
 -        "FCX-6562\0" /* 1 refs @ 20782 */
 -        "Experimental\0" /* 1 refs @ 20791 */
 -        "Clock\0" /* 1 refs @ 20804 */
 -        "Version\0" /* 1 refs @ 20810 */
 -        "0\0" /* 2 refs @ 20818 */
 -        "HSSI\0" /* 1 refs @ 20820 */
 -        "DS3\0" /* 1 refs @ 20825 */
 -        "SSI\0" /* 1 refs @ 20829 */
 -        "DS1\0" /* 1 refs @ 20833 */
 -        "805\0" /* 1 refs @ 20837 */
 -        "LXT-1001\0" /* 1 refs @ 20841 */
 -        "DVB\0" /* 2 refs @ 20850 */
 -        "Transmitter\0" /* 1 refs @ 20854 */
 -        "Receiver\0" /* 1 refs @ 20866 */
 -        "EG1032\0" /* 1 refs @ 20875 */
 -        "v2\0" /* 2 refs @ 20882 */
 -        "Instant\0" /* 2 refs @ 20885 */
 -        "EG1064\0" /* 1 refs @ 20893 */
 -        "PCMPC200\0" /* 1 refs @ 20900 */
 -        "IPN\0" /* 1 refs @ 20909 */
 -        "2220\0" /* 1 refs @ 20913 */
 -        "(rev\0" /* 1 refs @ 20918 */
 -        "01)\0" /* 1 refs @ 20923 */
 -        "82C168/82C169\0" /* 1 refs @ 20927 */
 -        "(PNIC)\0" /* 1 refs @ 20941 */
 -        "82C115\0" /* 1 refs @ 20948 */
 -        "(PNIC\0" /* 1 refs @ 20955 */
 -        "II)\0" /* 2 refs @ 20961 */
 -        "K56flex\0" /* 2 refs @ 20965 */
 -        "DSVD\0" /* 1 refs @ 20973 */
 -        "LTMODEM\0" /* 26 refs @ 20978 */
 -        "Venus\0" /* 1 refs @ 20986 */
 -        "ORCA\0" /* 2 refs @ 20992 */
 -        "FPGA\0" /* 2 refs @ 20997 */
 -        "32-bit\0" /* 1 refs @ 21002 */
 -        "ASIC\0" /* 2 refs @ 21009 */
 -        "64-bit\0" /* 1 refs @ 21014 */
 -        "FW322/323\0" /* 1 refs @ 21021 */
 -        "FW643\0" /* 1 refs @ 21031 */
 -        "1394b\0" /* 1 refs @ 21037 */
 -        "ET1310\0" /* 1 refs @ 21043 */
 -        "ET1301\0" /* 1 refs @ 21050 */
 -        "MX98713\0" /* 1 refs @ 21057 */
 -        "(PMAC)\0" /* 2 refs @ 21065 */
 -        "MX987x5\0" /* 1 refs @ 21072 */
 -        "Ringnode\0" /* 1 refs @ 21080 */
 -        "Mk2\0" /* 1 refs @ 21089 */
 -        "Collage\0" /* 2 refs @ 21093 */
 -        "155\0" /* 2 refs @ 21101 */
 -        "PCI-SLRS\0" /* 2 refs @ 21105 */
 -        "MGA\0" /* 14 refs @ 21114 */
 -        "PX2085\0" /* 1 refs @ 21118 */
 -        "(\"Atlas\")\0" /* 1 refs @ 21125 */
 -        "Millennium\0" /* 3 refs @ 21135 */
 -        "2064W\0" /* 1 refs @ 21146 */
 -        "(\"Storm\")\0" /* 1 refs @ 21152 */
 -        "Mystique\0" /* 1 refs @ 21162 */
 -        "1064SG\0" /* 1 refs @ 21171 */
 -        "2164W\0" /* 1 refs @ 21178 */
 -        "2164WA-B\0" /* 1 refs @ 21184 */
 -        "G200\0" /* 2 refs @ 21193 */
 -        "G200e\0" /* 1 refs @ 21198 */
 -        "(ServerEngines)\0" /* 1 refs @ 21204 */
 -        "G400\0" /* 1 refs @ 21220 */
 -        "G200eW\0" /* 1 refs @ 21225 */
 -        "Impression\0" /* 1 refs @ 21232 */
 -        "G100\0" /* 2 refs @ 21243 */
 -        "G550\0" /* 1 refs @ 21248 */
 -        "MQ200\0" /* 1 refs @ 21253 */
 -        "InfiniHost\0" /* 6 refs @ 21259 */
 -        "(Tavor)\0" /* 2 refs @ 21270 */
 -        "Lx\0" /* 2 refs @ 21278 */
 -        "(old\0" /* 1 refs @ 21281 */
 -        "Sinai)\0" /* 1 refs @ 21286 */
 -        "(Sinai)\0" /* 1 refs @ 21293 */
 -        "Ex\0" /* 2 refs @ 21301 */
 -        "(Arbel\0" /* 1 refs @ 21304 */
 -        "in\0" /* 1 refs @ 21311 */
 -        "Tavor\0" /* 1 refs @ 21314 */
 -        "compatility)\0" /* 1 refs @ 21320 */
 -        "(Arbel)\0" /* 1 refs @ 21333 */
 -        "ConnectX\0" /* 7 refs @ 21341 */
 -        "SDR\0" /* 1 refs @ 21350 */
 -        "(Hermon)\0" /* 7 refs @ 21354 */
 -        "DDR\0" /* 3 refs @ 21363 */
 -        "QDR\0" /* 2 refs @ 21367 */
 -        "PCIe\0" /* 8 refs @ 21371 */
 -        "2.5GT/s\0" /* 2 refs @ 21376 */
 -        "EN\0" /* 2 refs @ 21384 */
 -        "10GigE\0" /* 2 refs @ 21387 */
 -        "5GT/s\0" /* 3 refs @ 21394 */
 -        "MM-5415CN\0" /* 1 refs @ 21400 */
 -        "MM-5425CN\0" /* 1 refs @ 21410 */
 -        "MN-120\0" /* 1 refs @ 21420 */
 -        "Switched\0" /* 1 refs @ 21427 */
 -        "Weasel\0" /* 3 refs @ 21436 */
 -        "Tornado\0" /* 1 refs @ 21443 */
 -        "MPC105\0" /* 1 refs @ 21451 */
 -        "\"Eagle\"\0" /* 1 refs @ 21458 */
 -        "MPC106\0" /* 1 refs @ 21466 */
 -        "\"Grackle\"\0" /* 1 refs @ 21473 */
 -        "MPC8240\0" /* 1 refs @ 21483 */
 -        "\"Kahlua\"\0" /* 1 refs @ 21491 */
 -        "MPC107\0" /* 1 refs @ 21500 */
 -        "\"Chaparral\"\0" /* 1 refs @ 21507 */
 -        "MPC8245\0" /* 1 refs @ 21519 */
 -        "\"Kahlua\0" /* 1 refs @ 21527 */
 -        "II\"\0" /* 1 refs @ 21535 */
 -        "MPC8555E\0" /* 1 refs @ 21539 */
 -        "MPC8541\0" /* 1 refs @ 21548 */
 -        "Raven\0" /* 1 refs @ 21556 */
 -        "Multi-Processor\0" /* 1 refs @ 21562 */
 -        "Falcon\0" /* 1 refs @ 21578 */
 -        "ECC\0" /* 1 refs @ 21585 */
 -        "Set\0" /* 1 refs @ 21589 */
 -       "Hawk\0" /* 1 refs @ 21593 */
 -        "MPC5200B\0" /* 1 refs @ 21598 */
 -        "CP102U\0" /* 1 refs @ 21607 */
 -        "C104H\0" /* 1 refs @ 21614 */
 -        "CP104UL\0" /* 1 refs @ 21620 */
 -        "CP104V2\0" /* 1 refs @ 21628 */
 -        "CP104EL\0" /* 1 refs @ 21636 */
 -        "CP114\0" /* 1 refs @ 21644 */
 -        "C168H\0" /* 1 refs @ 21650 */
 -        "C168U\0" /* 1 refs @ 21656 */
 -        "C168EL\0" /* 2 refs @ 21662 */
 -        "MV1000\0" /* 1 refs @ 21669 */
 -        "DAC960\0" /* 4 refs @ 21676 */
 -        "(v2\0" /* 1 refs @ 21683 */
 -        "Interface)\0" /* 4 refs @ 21687 */
 -        "(v3\0" /* 1 refs @ 21698 */
 -        "(v4\0" /* 1 refs @ 21702 */
 -        "(v5\0" /* 1 refs @ 21706 */
 -        "eXtremeRAID\0" /* 4 refs @ 21710 */
 -        "AcceleRAID\0" /* 3 refs @ 21722 */
 -        "352\0" /* 1 refs @ 21733 */
 -        "170\0" /* 1 refs @ 21737 */
 -        "160\0" /* 1 refs @ 21741 */
 -        "1100\0" /* 2 refs @ 21745 */
 -        "2000/3000\0" /* 1 refs @ 21750 */
 -        "MTD803\0" /* 1 refs @ 21760 */
 -        "3-in-1\0" /* 1 refs @ 21767 */
 -        "NCP130\0" /* 2 refs @ 21774 */
 -        "A2\0" /* 1 refs @ 21781 */
 -        "NSP2K\0" /* 1 refs @ 21784 */
 -        "Policy\0" /* 1 refs @ 21790 */
 -        "XLP\0" /* 27 refs @ 21797 */
 -        "controller\0" /* 17 refs @ 21801 */
 -        "Inter-Chip\0" /* 1 refs @ 21812 */
 -        "interconnect\0" /* 1 refs @ 21823 */
 -        "PCI-Express\0" /* 7 refs @ 21836 */
 -        "RootComplex/Endpoint\0" /* 1 refs @ 21848 */
 -        "Interlaken\0" /* 1 refs @ 21869 */
 -        "LA\0" /* 1 refs @ 21880 */
 -        "interface\0" /* 2 refs @ 21883 */
 -        "Acceleration\0" /* 1 refs @ 21893 */
 -        "engine\0" /* 4 refs @ 21906 */
 -        "Ordering\0" /* 1 refs @ 21913 */
 -        "Messaging\0" /* 1 refs @ 21922 */
 -        "Transfer\0" /* 1 refs @ 21932 */
 -        "accelerator\0" /* 3 refs @ 21941 */
 -        "RSA/ECC\0" /* 1 refs @ 21953 */
 -        "Compress/Decompression\0" /* 1 refs @ 21961 */
 -        "JTAG\0" /* 1 refs @ 21984 */
 -        "NOR\0" /* 1 refs @ 21989 */
 -        "flash\0" /* 2 refs @ 21993 */
 -        "NAND\0" /* 1 refs @ 21999 */
 -        "eMMC/SD/SDIO\0" /* 1 refs @ 22004 */
 -        "Regular\0" /* 1 refs @ 22017 */
 -        "Expression\0" /* 1 refs @ 22025 */
 -        "SRIO\0" /* 1 refs @ 22036 */
 -        "(Serial\0" /* 1 refs @ 22041 */
 -        "Rapid\0" /* 1 refs @ 22049 */
 -        "IO)\0" /* 1 refs @ 22055 */
 -        "Universe\0" /* 1 refs @ 22059 */
 -        "VME\0" /* 1 refs @ 22068 */
 -        "QSpan\0" /* 1 refs @ 22072 */
 -        "PowerSpan\0" /* 2 refs @ 22078 */
 -        "MXI-3\0" /* 1 refs @ 22088 */
 -        "Extender\0" /* 1 refs @ 22094 */
 -        "DP83810\0" /* 1 refs @ 22103 */
 -        "PC87415\0" /* 1 refs @ 22111 */
 -        "87560\0" /* 1 refs @ 22119 */
 -        "Legacy\0" /* 1 refs @ 22125 */
 -        "DP83815\0" /* 1 refs @ 22132 */
 -        "DP83820\0" /* 1 refs @ 22140 */
 -        "CS5535\0" /* 6 refs @ 22148 */
 -        "Saturn\0" /* 1 refs @ 22155 */
 -        "SC1100\0" /* 5 refs @ 22162 */
 -        "XpressAUDIO\0" /* 1 refs @ 22169 */
 -        "SMI/ACPI\0" /* 1 refs @ 22181 */
 -        "X-Bus\0" /* 1 refs @ 22190 */
 -        "NS87410\0" /* 1 refs @ 22196 */
 -        "SAA7130HL\0" /* 1 refs @ 22204 */
 -        "Broadcast\0" /* 4 refs @ 22214 */
 -        "SAA7133HL\0" /* 1 refs @ 22224 */
 -        "A/V\0" /* 3 refs @ 22234 */
 -        "SAA7134HL\0" /* 1 refs @ 22238 */
 -        "SAA7135HL\0" /* 1 refs @ 22248 */
 -        "SAA7146AH\0" /* 1 refs @ 22258 */
 -        "53c810\0" /* 1 refs @ 22268 */
 -        "53c820\0" /* 1 refs @ 22275 */
 -        "53c825\0" /* 1 refs @ 22282 */
 -        "53c815\0" /* 1 refs @ 22289 */
 -        "53c810AP\0" /* 1 refs @ 22296 */
 -        "53c860\0" /* 1 refs @ 22305 */
 -        "53c1510D\0" /* 1 refs @ 22312 */
 -        "53c896\0" /* 1 refs @ 22321 */
 -        "53c895\0" /* 1 refs @ 22328 */
 -        "53c885\0" /* 1 refs @ 22335 */
 -        "53c875/876\0" /* 1 refs @ 22342 */
 -        "53c1510\0" /* 1 refs @ 22353 */
 -        "53c895A\0" /* 1 refs @ 22361 */
 -        "53c875A\0" /* 1 refs @ 22369 */
 -        "53c1010\0" /* 2 refs @ 22377 */
 -        "(66MHz)\0" /* 1 refs @ 22385 */
 -        "53c1020/53c1030\0" /* 1 refs @ 22393 */
 -        "53c1030R\0" /* 1 refs @ 22409 */
 -        "53c1030ZC\0" /* 1 refs @ 22418 */
 -        "53c1035\0" /* 1 refs @ 22428 */
 -        "53c1035ZC\0" /* 1 refs @ 22436 */
 -        "SAS1064\0" /* 1 refs @ 22446 */
 -        "SAS1068\0" /* 2 refs @ 22454 */
 -        "SAS1064E\0" /* 2 refs @ 22462 */
 -        "SAS1068E\0" /* 2 refs @ 22471 */
 -        "SAS1066E\0" /* 1 refs @ 22480 */
 -        "SAS2208\0" /* 7 refs @ 22489 */
 -        "SAS1064A\0" /* 1 refs @ 22497 */
 -        "SAS1066\0" /* 1 refs @ 22506 */
 -        "SAS1078\0" /* 2 refs @ 22514 */
 -        "SAS2116\0" /* 2 refs @ 22522 */
 -        "SAS2308\0" /* 3 refs @ 22530 */
 -        "SAS2004\0" /* 1 refs @ 22538 */
 -        "SAS2008\0" /* 2 refs @ 22546 */
 -        "SAS2108\0" /* 5 refs @ 22554 */
 -        "CRYPTO\0" /* 1 refs @ 22562 */
 -        "GEN2\0" /* 2 refs @ 22569 */
 -        "SAS1078DE\0" /* 1 refs @ 22574 */
 -        "53c875J\0" /* 1 refs @ 22584 */
 -        "FC909\0" /* 1 refs @ 22592 */
 -        "FC909A\0" /* 1 refs @ 22598 */
 -        "FC929\0" /* 2 refs @ 22605 */
 -        "FC919\0" /* 2 refs @ 22611 */
 -        "FC929X\0" /* 1 refs @ 22617 */
 -        "FC919X\0" /* 1 refs @ 22624 */
 -        "FC949X\0" /* 1 refs @ 22631 */
 -        "FC939X\0" /* 1 refs @ 22638 */
 -        "FC949E\0" /* 1 refs @ 22645 */
 -        "Megaraid\0" /* 3 refs @ 22652 */
 -        "320-X\0" /* 1 refs @ 22661 */
 -        "320-E\0" /* 1 refs @ 22667 */
 -        "(300-6X/300-8X)\0" /* 1 refs @ 22673 */
 -        "Verde\0" /* 1 refs @ 22689 */
 -        "ZCR\0" /* 1 refs @ 22695 */
 -        "4/SC\0" /* 1 refs @ 22699 */
 -        "G-NIC\0" /* 2 refs @ 22704 */
 -        "Tools\0" /* 1 refs @ 22710 */
 -        "VRC4173\0" /* 3 refs @ 22716 */
 -        "PC-Card\0" /* 1 refs @ 22724 */
 -        "Unit\0" /* 5 refs @ 22732 */
 -        "PowerVR\0" /* 1 refs @ 22737 */
 -        "PCX2\0" /* 1 refs @ 22745 */
 -        "uPD72872\0" /* 1 refs @ 22750 */
 -        "PK-UG-X001\0" /* 1 refs @ 22759 */
 -        "PK-UG-X008\0" /* 1 refs @ 22770 */
 -        "Bus\0" /* 3 refs @ 22781 */
 -        "uPD72870\0" /* 1 refs @ 22785 */
 -        "uPD72871\0" /* 1 refs @ 22794 */
 -        "uPD720400\0" /* 1 refs @ 22803 */
 -        "PCI/PCI-X\0" /* 3 refs @ 22813 */
 -        "Versa\0" /* 2 refs @ 22823 */
 -        "VA26D\0" /* 1 refs @ 22829 */
 -        "MagicGraph\0" /* 4 refs @ 22835 */
 -        "NM2070\0" /* 1 refs @ 22846 */
 -        "128V\0" /* 1 refs @ 22853 */
 -        "128ZV\0" /* 1 refs @ 22858 */
 -        "128XD\0" /* 1 refs @ 22864 */
 -        "MagicMedia\0" /* 5 refs @ 22870 */
 -        "256AV\0" /* 2 refs @ 22881 */
 -        "256ZX\0" /* 2 refs @ 22887 */
 -        "256XL+\0" /* 1 refs @ 22893 */
 -        "NET2280\0" /* 1 refs @ 22900 */
 -        "NET2282\0" /* 1 refs @ 22908 */
 -        "GA620\0" /* 2 refs @ 22916 */
 -        "MA301\0" /* 1 refs @ 22922 */
 -        "1284\0" /* 6 refs @ 22928 */
 -        "Printer\0" /* 6 refs @ 22933 */
 -        "9855\0" /* 1 refs @ 22941 */
 -        "9865\0" /* 1 refs @ 22946 */
 -        "MCS9990\0" /* 1 refs @ 22951 */
 -        "NX82C501\0" /* 1 refs @ 22959 */
 -        "NDR4600\0" /* 1 refs @ 22968 */
 -        "Baystack\0" /* 1 refs @ 22976 */
 -        "21\0" /* 1 refs @ 22985 */
 -        "(Accton\0" /* 1 refs @ 22988 */
 -        "EN5038)\0" /* 1 refs @ 22996 */
 -        "Imagine-128\0" /* 2 refs @ 23004 */
 -        "RIVA\0" /* 4 refs @ 23016 */
 -        "TNT\0" /* 1 refs @ 23021 */
 -        "TNT2\0" /* 4 refs @ 23025 */
 -        "Vanta\0" /* 1 refs @ 23030 */
 -        "Model\0" /* 1 refs @ 23036 */
 -        "64\0" /* 1 refs @ 23042 */
 -        "MCP04\0" /* 7 refs @ 23045 */
 -        "GeForce\0" /* 40 refs @ 23051 */
 -        "6800\0" /* 4 refs @ 23059 */
 -        "GT\0" /* 4 refs @ 23064 */
 -        "nForce4\0" /* 14 refs @ 23067 */
 -        "ATA133\0" /* 13 refs @ 23075 */
 -        "nForce2\0" /* 27 refs @ 23082 */
 -        "MCP-T\0" /* 4 refs @ 23090 */
 -        "400\0" /* 10 refs @ 23096 */
 -        "Aladdin\0" /* 1 refs @ 23100 */
 -        "nForce3\0" /* 23 refs @ 23108 */
 -        "250\0" /* 12 refs @ 23116 */
 -        "Quadro\0" /* 13 refs @ 23120 */
 -        "FX\0" /* 23 refs @ 23127 */
 -        "Quadro4\0" /* 11 refs @ 23130 */
 -        "280\0" /* 2 refs @ 23138 */
 -        "NVS\0" /* 3 refs @ 23142 */
 -        "1300\0" /* 1 refs @ 23146 */
 -        "PCX\0" /* 1 refs @ 23151 */
 -        "4300\0" /* 1 refs @ 23155 */
 -        "256\0" /* 1 refs @ 23160 */
 -        "GeForce2\0" /* 7 refs @ 23164 */
 -        "MX\0" /* 10 refs @ 23173 */
 -        "100/200\0" /* 1 refs @ 23176 */
 -        "Go\0" /* 5 refs @ 23184 */
 -        "Quadro2\0" /* 2 refs @ 23187 */
 -        "MXR/EX\0" /* 1 refs @ 23195 */
 -        "6600\0" /* 5 refs @ 23202 */
 -        "6610\0" /* 1 refs @ 23207 */
 -        "5500\0" /* 1 refs @ 23212 */
 -        "540\0" /* 2 refs @ 23217 */
 -        "GTS\0" /* 4 refs @ 23221 */
 -        "(DDR)\0" /* 1 refs @ 23225 */
 -        "6200TC\0" /* 1 refs @ 23231 */
 -        "6200LE\0" /* 1 refs @ 23238 */
 -        "GeForce4\0" /* 15 refs @ 23245 */
 -        "460\0" /* 1 refs @ 23254 */
 -        "440\0" /* 4 refs @ 23258 */
 -        "420\0" /* 2 refs @ 23262 */
 -        "SE\0" /* 4 refs @ 23266 */
 -        "500XGL\0" /* 1 refs @ 23269 */
 -        "200/400NVS\0" /* 1 refs @ 23276 */
 -        "(AGP8X)\0" /* 4 refs @ 23287 */
 -        "580\0" /* 1 refs @ 23295 */
 -        "XGL\0" /* 4 refs @ 23299 */
 -        "380\0" /* 1 refs @ 23303 */
 -        "4600\0" /* 2 refs @ 23307 */
 -        "nForce\0" /* 153 refs @ 23312 */
 -        "MCP\0" /* 1 refs @ 23319 */
 -        "Xbox\0" /* 3 refs @ 23323 */
 -        "ATA100\0" /* 1 refs @ 23328 */
 -        "7300\0" /* 1 refs @ 23335 */
 -        "GeForce3\0" /* 3 refs @ 23340 */
 -        "Ti\0" /* 10 refs @ 23349 */
 -        "500\0" /* 2 refs @ 23352 */
 -        "DCC\0" /* 1 refs @ 23356 */
 -        "6150\0" /* 2 refs @ 23360 */
 -        "4400\0" /* 1 refs @ 23365 */
 -        "4200\0" /* 3 refs @ 23370 */
 -        "900XGL\0" /* 1 refs @ 23375 */
 -        "750XGL\0" /* 1 refs @ 23382 */
 -        "700XGL\0" /* 1 refs @ 23389 */
 -        "nForce430\0" /* 14 refs @ 23396 */
 -        "C51\0" /* 18 refs @ 23406 */
 -        "4800\0" /* 2 refs @ 23410 */
 -        "8x\0" /* 1 refs @ 23415 */
 -        "980\0" /* 1 refs @ 23418 */
 -        "780\0" /* 1 refs @ 23422 */
 -        "1500\0" /* 1 refs @ 23426 */
 -        "Frame\0" /* 1 refs @ 23431 */
 -        "Buffer\0" /* 1 refs @ 23437 */
 -        "(0x02f0)\0" /* 1 refs @ 23444 */
 -        "(0x02f1)\0" /* 1 refs @ 23453 */
 -        "(0x02f2)\0" /* 1 refs @ 23462 */
 -        "(0x02f3)\0" /* 1 refs @ 23471 */
 -        "(0x02f4)\0" /* 1 refs @ 23480 */
 -        "(0x02f5)\0" /* 1 refs @ 23489 */
 -        "(0x02f6)\0" /* 1 refs @ 23498 */
 -        "(0x02f7)\0" /* 1 refs @ 23507 */
 -        "(0x02fb)\0" /* 1 refs @ 23516 */
 -        "(0x02fc)\0" /* 1 refs @ 23525 */
 -        "(0x02fd)\0" /* 1 refs @ 23534 */
 -        "(0x02ff)\0" /* 1 refs @ 23543 */
 -        "5800\0" /* 2 refs @ 23552 */
 -        "5200\0" /* 2 refs @ 23557 */
 -        "5200SE\0" /* 1 refs @ 23562 */
 -        "5900\0" /* 2 refs @ 23569 */
 -        "5900XT\0" /* 1 refs @ 23574 */
 -        "5950\0" /* 1 refs @ 23581 */
 -        "5700\0" /* 1 refs @ 23586 */
 -        "MCP55\0" /* 17 refs @ 23591 */
 -        "16x\0" /* 2 refs @ 23597 */
 -        "7600\0" /* 1 refs @ 23601 */
 -        "MCP61\0" /* 20 refs @ 23606 */
 -        "8600\0" /* 2 refs @ 23612 */
 -        "8400M\0" /* 1 refs @ 23617 */
 -        "GS\0" /* 2 refs @ 23623 */
 -        "140M\0" /* 1 refs @ 23626 */
 -        "MCP65\0" /* 31 refs @ 23631 */
 -        "PCI-LPC\0" /* 7 refs @ 23637 */
 -        "MCP67\0" /* 20 refs @ 23645 */
 -        "MCP73\0" /* 20 refs @ 23651 */
 -        "8400\0" /* 1 refs @ 23657 */
 -        "MCP77\0" /* 21 refs @ 23662 */
 -        "MCP78S\0" /* 1 refs @ 23668 */
 -        "210\0" /* 1 refs @ 23675 */
 -        "MCP79\0" /* 17 refs @ 23679 */
 -        "GTX\0" /* 1 refs @ 23685 */
 -        "550\0" /* 2 refs @ 23689 */
 -        "Riva\0" /* 1 refs @ 23693 */
 -        "OTI107\0" /* 1 refs @ 23698 */
 -        "OC-3136/3137\0" /* 1 refs @ 23705 */
 -        "Token-Ring\0" /* 2 refs @ 23718 */
 -        "OC-3139f\0" /* 1 refs @ 23729 */
 -        "Fastload\0" /* 1 refs @ 23738 */
 -        "OC-3139/3140\0" /* 1 refs @ 23747 */
 -        "RapidFire\0" /* 5 refs @ 23760 */
 -        "OC-3250\0" /* 1 refs @ 23770 */
 -        "GoCard\0" /* 1 refs @ 23778 */
 -        "OC-3530\0" /* 1 refs @ 23785 */
 -        "OC-3141\0" /* 1 refs @ 23793 */
 -        "OC-3540\0" /* 1 refs @ 23801 */
 -        "HSTR\0" /* 1 refs @ 23809 */
 -        "100/16/4\0" /* 1 refs @ 23814 */
 -        "OC-3150\0" /* 1 refs @ 23823 */
 -        "OC-2805\0" /* 1 refs @ 23831 */
 -        "OC-2325\0" /* 1 refs @ 23839 */
 -        "OC-2183/2185\0" /* 1 refs @ 23847 */
 -        "OC-2326\0" /* 1 refs @ 23860 */
 -        "10/100-TX\0" /* 1 refs @ 23868 */
 -       "OC-2327/2350\0" /* 1 refs @ 23878 */
 -        "OC-6151/6152\0" /* 1 refs @ 23891 */
 -        "82C557\0" /* 1 refs @ 23904 */
 -        "82C558\0" /* 1 refs @ 23911 */
 -        "82C568\0" /* 1 refs @ 23918 */
 -        "82D568\0" /* 1 refs @ 23925 */
 -        "82C621\0" /* 1 refs @ 23932 */
 -        "82C822\0" /* 1 refs @ 23939 */
 -        "82C861\0" /* 1 refs @ 23946 */
 -        "82C700\0" /* 1 refs @ 23953 */
 -        "82C701\0" /* 1 refs @ 23960 */
 -        "011H\0" /* 1 refs @ 23967 */
 -        "OX16PCI954\0" /* 2 refs @ 23972 */
 -        "OX16PCI954K\0" /* 1 refs @ 23983 */
 -        "Exsys\0" /* 2 refs @ 23995 */
 -        "EX-41092\0" /* 1 refs @ 24001 */
 -        "OXCB950\0" /* 1 refs @ 24010 */
 -        "OXmPCI954\0" /* 2 refs @ 24018 */
 -        "Disabled\0" /* 1 refs @ 24028 */
 -        "EX-41098\0" /* 1 refs @ 24037 */
 -        "OX16PCI952\0" /* 2 refs @ 24046 */
 -        "OX16PCI958\0" /* 1 refs @ 24057 */
 -        "OXPCIe952\0" /* 1 refs @ 24068 */
 -        "HD-2000\0" /* 1 refs @ 24078 */
 -        "HDTV\0" /* 2 refs @ 24086 */
 -        "HD-5500\0" /* 1 refs @ 24091 */
 -        "RZ1000\0" /* 1 refs @ 24099 */
 -        "PCAN\0" /* 1 refs @ 24106 */
 -        "P17C9X110\0" /* 1 refs @ 24111 */
 -        "P17C9X\0" /* 1 refs @ 24121 */
 -        "P1000\0" /* 1 refs @ 24128 */
 -        "FNW-3603-TX\0" /* 1 refs @ 24134 */
 -        "FNW-3800-TX\0" /* 1 refs @ 24146 */
 -        "VScom\0" /* 3 refs @ 24158 */
 -        "PCI-400\0" /* 1 refs @ 24164 */
 -        "PCI-800\0" /* 1 refs @ 24172 */
 -        "PCI-200\0" /* 1 refs @ 24180 */
 -        "9030\0" /* 1 refs @ 24188 */
 -        "Accelrator\0" /* 2 refs @ 24193 */
 -        "9050\0" /* 1 refs @ 24204 */
 -        "9054\0" /* 1 refs @ 24209 */
 -        "9060ES\0" /* 1 refs @ 24214 */
 -        "9656\0" /* 2 refs @ 24221 */
 -        "FPBGA\0" /* 1 refs @ 24226 */
 -        "PowerTop\0" /* 1 refs @ 24232 */
 -        "PowerPro\0" /* 1 refs @ 24241 */
 -        "PDC20265\0" /* 1 refs @ 24250 */
 -        "Ultra/66\0" /* 3 refs @ 24259 */
 -        "PDC20263\0" /* 1 refs @ 24268 */
 -        "PDC20275\0" /* 1 refs @ 24277 */
 -        "Ultra/133\0" /* 10 refs @ 24286 */
 -        "PDC20318\0" /* 1 refs @ 24296 */
 -        "PDC20319\0" /* 1 refs @ 24305 */
 -        "PDC20371\0" /* 1 refs @ 24314 */
 -        "PDC20379\0" /* 1 refs @ 24323 */
 -        "PDC20378\0" /* 1 refs @ 24332 */
 -        "PDC20375\0" /* 1 refs @ 24341 */
 -        "PDC20376\0" /* 1 refs @ 24350 */
 -        "PDC20377\0" /* 1 refs @ 24359 */
 -        "PDC40719\0" /* 1 refs @ 24368 */
 -        "PDC40519\0" /* 1 refs @ 24377 */
 -        "PDC20771\0" /* 1 refs @ 24386 */
 -        "PDC20571\0" /* 1 refs @ 24395 */
 -        "PDC20579\0" /* 1 refs @ 24404 */
 -        "PDC40779\0" /* 1 refs @ 24413 */
 -        "PDC40718\0" /* 1 refs @ 24422 */
 -        "PDC40518\0" /* 1 refs @ 24431 */
 -        "PDC20775\0" /* 1 refs @ 24440 */
 -        "PDC20575\0" /* 1 refs @ 24449 */
 -        "PDC20267\0" /* 1 refs @ 24458 */
 -        "Ultra/100\0" /* 3 refs @ 24467 */
 -        "PDC20246\0" /* 1 refs @ 24477 */
 -        "Ultra/33\0" /* 1 refs @ 24486 */
 -        "PDC20262\0" /* 1 refs @ 24495 */
 -        "PDC20268\0" /* 1 refs @ 24504 */
 -        "PDC20269\0" /* 1 refs @ 24513 */
 -        "PDC20276\0" /* 1 refs @ 24522 */
 -        "DC5030\0" /* 1 refs @ 24531 */
 -        "PDC20270\0" /* 1 refs @ 24538 */
 -        "PDC20271\0" /* 1 refs @ 24547 */
 -        "PDC20617\0" /* 1 refs @ 24556 */
 -        "PDC20620\0" /* 1 refs @ 24565 */
 -        "PDC20621\0" /* 1 refs @ 24574 */
 -        "PDC20618\0" /* 1 refs @ 24583 */
 -        "Controler\0" /* 1 refs @ 24592 */
 -        "PDC20619\0" /* 1 refs @ 24602 */
 -        "PDC20277\0" /* 1 refs @ 24611 */
 -        "CH352\0" /* 1 refs @ 24620 */
 -        "CH353\0" /* 1 refs @ 24626 */
 -        "QLA200\0" /* 1 refs @ 24632 */
 -        "ISP1020\0" /* 1 refs @ 24639 */
 -        "ISP1022\0" /* 1 refs @ 24647 */
 -        "ISP1080\0" /* 1 refs @ 24655 */
 -        "ISP1240\0" /* 1 refs @ 24663 */
 -        "ISP1280\0" /* 1 refs @ 24671 */
 -        "ISP2100\0" /* 1 refs @ 24679 */
 -        "ISP4022\0" /* 2 refs @ 24687 */
 -        "TOE\0" /* 2 refs @ 24695 */
 -        "PWDOG1\0" /* 1 refs @ 24699 */
 -        "8580\0" /* 1 refs @ 24706 */
 -        "Virtio\0" /* 64 refs @ 24711 */
 -        "CryptoSwift\0" /* 1 refs @ 24718 */
 -        "PKI\0" /* 1 refs @ 24730 */
 -        "RT2460A\0" /* 1 refs @ 24734 */
 -        "RT2560\0" /* 1 refs @ 24742 */
 -        "802.11b/g\0" /* 4 refs @ 24749 */
 -        "RT2561S\0" /* 1 refs @ 24759 */
 -        "RT2561\0" /* 1 refs @ 24767 */
 -        "RT2661\0" /* 1 refs @ 24774 */
 -        "RT3090\0" /* 1 refs @ 24781 */
 -        "REX\0" /* 1 refs @ 24788 */
 -        "PCI-31/33\0" /* 1 refs @ 24792 */
 -        "R6040\0" /* 1 refs @ 24802 */
 -        "8029\0" /* 1 refs @ 24808 */
 -        "8139D\0" /* 1 refs @ 24813 */
 -        "8100\0" /* 1 refs @ 24819 */
 -        "8129\0" /* 1 refs @ 24824 */
 -        "8100E/8101E/8102E\0" /* 1 refs @ 24829 */
 -        "8138\0" /* 1 refs @ 24847 */
 -        "8169SC/8110SC\0" /* 1 refs @ 24852 */
 -        "8168/8111\0" /* 1 refs @ 24866 */
 -        "8169/8110\0" /* 1 refs @ 24876 */
 -        "RTL8188CE\0" /* 1 refs @ 24886 */
 -        "802.11n\0" /* 1 refs @ 24896 */
 -        "8180\0" /* 1 refs @ 24904 */
 -        "8185\0" /* 1 refs @ 24909 */
 -        "802.11a/b/g\0" /* 1 refs @ 24914 */
 -        "SH7780\0" /* 1 refs @ 24926 */
 -        "SH7785\0" /* 1 refs @ 24933 */
 -        "5C465\0" /* 1 refs @ 24940 */
 -        "5C466\0" /* 1 refs @ 24946 */
 -        "5C475\0" /* 1 refs @ 24952 */
 -        "5C476\0" /* 1 refs @ 24958 */
 -        "5C477\0" /* 1 refs @ 24964 */
 -        "5C478\0" /* 1 refs @ 24970 */
 -        "5C551\0" /* 1 refs @ 24976 */
 -        "Bridge/Firewire\0" /* 2 refs @ 24982 */
 -        "5C552\0" /* 1 refs @ 24998 */
 -        "5C592\0" /* 1 refs @ 25004 */
 -        "Bridge/MS/SD/Firewire\0" /* 2 refs @ 25010 */
 -        "5C593\0" /* 1 refs @ 25032 */
 -        "5C821\0" /* 1 refs @ 25038 */
 -        "Bridge/MS/SD/MMC/SC\0" /* 2 refs @ 25044 */
 -        "5C822\0" /* 1 refs @ 25064 */
 -        "5C832\0" /* 1 refs @ 25070 */
 -        "PCI-SD/MMC/MMC+/MS/xD/Firewire\0" /* 1 refs @ 25076 */
 -        "5C843\0" /* 1 refs @ 25107 */
 -        "Bridge/SD/MMC/MMC+/MS/xD/Firewire\0" /* 2 refs @ 25113 */
 -        "5C847\0" /* 1 refs @ 25147 */
 -        "xD-Picture\0" /* 1 refs @ 25153 */
 -        "5C853\0" /* 1 refs @ 25164 */
 -        "Bridge/SD/MMC/MMC+/MS/xD/SC/Firewire\0" /* 1 refs @ 25170 */
 -        "5U230\0" /* 1 refs @ 25207 */
 -        "FireWire/SD/MMC/xD/MS\0" /* 1 refs @ 25213 */
 -        "5U822\0" /* 1 refs @ 25235 */
 -        "5U823\0" /* 1 refs @ 25241 */
 -        "5U832\0" /* 1 refs @ 25247 */
 -        "5C852\0" /* 1 refs @ 25253 */
 -        "N2\0" /* 1 refs @ 25259 */
 -        "2200\0" /* 1 refs @ 25262 */
 -        "FDDI\0" /* 1 refs @ 25267 */
 -        "Xframe\0" /* 1 refs @ 25272 */
 -        "Xframe2\0" /* 1 refs @ 25279 */
 -        "Xframe3\0" /* 1 refs @ 25287 */
 -        "ViRGE\0" /* 1 refs @ 25295 */
 -        "Trio32\0" /* 1 refs @ 25301 */
 -        "Trio32/64\0" /* 1 refs @ 25308 */
 -        "Aurora64V+\0" /* 1 refs @ 25318 */
 -        "Trio64UV+\0" /* 1 refs @ 25329 */
 -        "ViRGE/VX\0" /* 1 refs @ 25339 */
 -        "868\0" /* 1 refs @ 25348 */
 -        "86C928\0" /* 1 refs @ 25352 */
 -        "86C864-0\0" /* 1 refs @ 25359 */
 -        "(\"Vision864\")\0" /* 4 refs @ 25368 */
 -        "86C864-1\0" /* 1 refs @ 25382 */
 -        "86C864-2\0" /* 1 refs @ 25391 */
 -        "86C864-3\0" /* 1 refs @ 25400 */
 -        "86C964-0\0" /* 1 refs @ 25409 */
 -        "(\"Vision964\")\0" /* 4 refs @ 25418 */
 -        "86C964-1\0" /* 1 refs @ 25432 */
 -        "86C964-2\0" /* 1 refs @ 25441 */
 -        "86C964-3\0" /* 1 refs @ 25450 */
 -        "86C968-0\0" /* 1 refs @ 25459 */
 -        "(\"Vision968\")\0" /* 4 refs @ 25468 */
 -        "86C968-1\0" /* 1 refs @ 25482 */
 -        "86C968-2\0" /* 1 refs @ 25491 */
 -        "86C968-3\0" /* 1 refs @ 25500 */
 -        "Trio64V2/DX\0" /* 1 refs @ 25509 */
 -        "Plato/PX\0" /* 1 refs @ 25521 */
 -        "86C365\0" /* 1 refs @ 25530 */
 -        "Trio3D\0" /* 1 refs @ 25537 */
 -        "ViRGE/DX\0" /* 1 refs @ 25544 */
 -        "ViRGE/GX2\0" /* 1 refs @ 25553 */
 -        "Trio3D/2X\0" /* 1 refs @ 25563 */
 -        "Savage3D\0" /* 1 refs @ 25573 */
 -        "Savage3D+MV\0" /* 1 refs @ 25582 */
 -        "Savage4\0" /* 1 refs @ 25594 */
 -        "ProSavage\0" /* 1 refs @ 25602 */
 -        "KM133\0" /* 1 refs @ 25612 */
 -        "ViRGE/MX\0" /* 1 refs @ 25618 */
 -        "ViRGE/MXP\0" /* 1 refs @ 25627 */
 -        "Savage/MX+MV\0" /* 1 refs @ 25637 */
 -        "Savage/MX\0" /* 1 refs @ 25650 */
 -        "Savage/IX+MV\0" /* 1 refs @ 25660 */
 -        "Savage/IX\0" /* 1 refs @ 25673 */
 -        "Savage/IXC\0" /* 1 refs @ 25683 */
 -        "Savage2000\0" /* 1 refs @ 25694 */
 -        "SonicVibes\0" /* 1 refs @ 25705 */
 -        "SafeXcel\0" /* 1 refs @ 25716 */
 -        "KS8920\0" /* 1 refs @ 25725 */
 -        "QE1000\0" /* 1 refs @ 25732 */
 -        "FE1000\0" /* 1 refs @ 25739 */
 -        "Broadband\0" /* 1 refs @ 25746 */
 -        "CNB20-LE\0" /* 2 refs @ 25756 */
 -        "PCI/AGP\0" /* 6 refs @ 25765 */
 -        "CNB30-LE\0" /* 1 refs @ 25773 */
 -        "CNB20-HE\0" /* 3 refs @ 25782 */
 -        "CIOB-X\0" /* 1 refs @ 25791 */
 -        "CMIC-HE\0" /* 1 refs @ 25798 */
 -        "CNB30-HE\0" /* 1 refs @ 25806 */
 -        "CMIC-LE\0" /* 1 refs @ 25815 */
 -        "CMIC-SL\0" /* 1 refs @ 25823 */
 -        "HT1000\0" /* 6 refs @ 25831 */
 -        "CIOB-X2\0" /* 1 refs @ 25838 */
 -        "BCM5714/BCM5715\0" /* 1 refs @ 25846 */
 -        "Integral\0" /* 1 refs @ 25862 */
 -        "CIOB-E\0" /* 1 refs @ 25871 */
 -        "HT2100\0" /* 4 refs @ 25878 */
 -        "OSB4\0" /* 2 refs @ 25885 */
 -        "CSB5\0" /* 3 refs @ 25890 */
 -        "CSB6\0" /* 5 refs @ 25895 */
 -        "HT1000SB\0" /* 1 refs @ 25900 */
 -        "HT-1000\0" /* 3 refs @ 25909 */
 -        "IDE/RAID\0" /* 2 refs @ 25917 */
 -        "OSB4/CSB5\0" /* 1 refs @ 25926 */
 -        "ISA/LPC\0" /* 2 refs @ 25936 */
 -        "XIOAPIC\0" /* 1 refs @ 25944 */
 -        "Frodo4\0" /* 1 refs @ 25952 */
 -        "Frodo8\0" /* 1 refs @ 25959 */
 -        "IOC3\0" /* 1 refs @ 25966 */
 -        "PsiTech\0" /* 1 refs @ 25971 */
 -        "RAD1\0" /* 1 refs @ 25979 */
 -        "Tigon\0" /* 1 refs @ 25984 */
 -        "STG\0" /* 2 refs @ 25990 */
 -        "2000X\0" /* 1 refs @ 25994 */
 -        "1764X\0" /* 1 refs @ 26000 */
 -        "BCM1250\0" /* 2 refs @ 26006 */
 -        "LDT\0" /* 1 refs @ 26014 */
 -        "REALmagic\0" /* 1 refs @ 26018 */
 -        "Hollywood-Plus\0" /* 1 refs @ 26028 */
 -        "MPEG-2\0" /* 1 refs @ 26043 */
 -        "Cyber10x\0" /* 17 refs @ 26050 */
 -        "16550\0" /* 13 refs @ 26059 */
 -        "16650\0" /* 12 refs @ 26065 */
 -        "16850\0" /* 12 refs @ 26071 */
 -        "2S1P\0" /* 6 refs @ 26077 */
 -        "4S\0" /* 7 refs @ 26082 */
 -        "Cyber20x\0" /* 20 refs @ 26085 */
 -        "2P1S\0" /* 3 refs @ 26094 */
 -        "8000\0" /* 3 refs @ 26099 */
 -        "86C201\0" /* 1 refs @ 26104 */
 -        "86C202\0" /* 1 refs @ 26111 */
 -        "86C205\0" /* 1 refs @ 26118 */
 -        "85C503\0" /* 1 refs @ 26125 */
 -        "or\0" /* 1 refs @ 26132 */
 -        "5597/5598\0" /* 5 refs @ 26135 */
 -        "600\0" /* 1 refs @ 26145 */
 -        "Mngmt\0" /* 1 refs @ 26149 */
 -        "180\0" /* 1 refs @ 26155 */
 -        "181\0" /* 1 refs @ 26159 */
 -        "182\0" /* 1 refs @ 26163 */
 -        "183\0" /* 1 refs @ 26167 */
 -        "190\0" /* 1 refs @ 26171 */
 -        "191\0" /* 1 refs @ 26175 */
 -        "300/305\0" /* 1 refs @ 26179 */
 -        "315\0" /* 1 refs @ 26187 */
 -        "85C501\0" /* 1 refs @ 26191 */
 -        "85C496\0" /* 1 refs @ 26198 */
 -        "530\0" /* 2 refs @ 26205 */
 -        "85C601\0" /* 1 refs @ 26209 */
 -        "620\0" /* 1 refs @ 26216 */
 -        "630\0" /* 1 refs @ 26220 */
 -        "633\0" /* 1 refs @ 26224 */
 -        "635\0" /* 1 refs @ 26228 */
 -        "640\0" /* 1 refs @ 26232 */
 -        "645\0" /* 1 refs @ 26236 */
 -        "646\0" /* 1 refs @ 26240 */
 -        "648\0" /* 1 refs @ 26244 */
 -        "650\0" /* 1 refs @ 26248 */
 -        "651\0" /* 1 refs @ 26252 */
 -        "652\0" /* 1 refs @ 26256 */
 -        "655\0" /* 1 refs @ 26260 */
 -        "658\0" /* 1 refs @ 26264 */
 -        "661\0" /* 1 refs @ 26268 */
 -        "671\0" /* 1 refs @ 26272 */
 -        "730\0" /* 1 refs @ 26276 */
 -        "733\0" /* 1 refs @ 26280 */
 -        "735\0" /* 1 refs @ 26284 */
 -        "740\0" /* 2 refs @ 26288 */
 -        "741\0" /* 1 refs @ 26292 */
 -        "745\0" /* 1 refs @ 26296 */
 -        "746\0" /* 1 refs @ 26300 */
 -        "748\0" /* 1 refs @ 26304 */
 -        "750\0" /* 1 refs @ 26308 */
 -        "751\0" /* 1 refs @ 26312 */
 -        "752\0" /* 1 refs @ 26316 */
 -        "755\0" /* 1 refs @ 26320 */
 -        "756\0" /* 1 refs @ 26324 */
 -        "760\0" /* 1 refs @ 26328 */
 -        "761\0" /* 1 refs @ 26332 */
 -        "900\0" /* 1 refs @ 26336 */
 -        "961\0" /* 1 refs @ 26340 */
 -        "962\0" /* 1 refs @ 26344 */
 -        "963\0" /* 1 refs @ 26348 */
 -        "964\0" /* 1 refs @ 26352 */
 -        "965\0" /* 1 refs @ 26356 */
 -        "966\0" /* 1 refs @ 26360 */
 -        "968\0" /* 1 refs @ 26364 */
 -        "GUI\0" /* 1 refs @ 26368 */
 -        "Accelerator+3D\0" /* 1 refs @ 26372 */
 -        "6325\0" /* 1 refs @ 26387 */
 -        "6326\0" /* 1 refs @ 26392 */
 -        "7002\0" /* 1 refs @ 26397 */
 -        "7012\0" /* 1 refs @ 26402 */
 -        "7016\0" /* 1 refs @ 26407 */
 -        "7018\0" /* 1 refs @ 26412 */
 -        "7502\0" /* 1 refs @ 26417 */
 -        "audio\0" /* 1 refs @ 26422 */
 -        "Voyager\0" /* 1 refs @ 26428 */
 -        "LynxEM\0" /* 1 refs @ 26436 */
 -        "LynxEM+\0" /* 1 refs @ 26443 */
 -        "Lynx3DM\0" /* 1 refs @ 26451 */
 -        "LynxE\0" /* 2 refs @ 26459 */
 -        "Lynx3D\0" /* 1 refs @ 26465 */
 -        "Lynx\0" /* 1 refs @ 26472 */
 -        "FDC37C665\0" /* 1 refs @ 26477 */
 -        "FDC37C922\0" /* 1 refs @ 26487 */
 -        "83C170\0" /* 1 refs @ 26497 */
 -        "(\"EPIC/100\")\0" /* 2 refs @ 26504 */
 -        "83C175\0" /* 1 refs @ 26517 */
 -        "SNP8023:\0" /* 2 refs @ 26524 */
 -        "971\0" /* 1 refs @ 26533 */
 -        "Classifier\0" /* 2 refs @ 26537 */
 -        "PAX.ware\0" /* 1 refs @ 26548 */
 -        "Gb\0" /* 1 refs @ 26557 */
 -        "CXD1947A\0" /* 1 refs @ 26560 */
 -        "CXD3222\0" /* 1 refs @ 26569 */
 -        "PCIO\0" /* 3 refs @ 26577 */
 -        "Ebus2\0" /* 2 refs @ 26582 */
 -        "Happy\0" /* 1 refs @ 26588 */
 -        "Meal\0" /* 1 refs @ 26594 */
 -        "(US\0" /* 1 refs @ 26599 */
 -        "III)\0" /* 3 refs @ 26603 */
 -        "ERI\0" /* 1 refs @ 26608 */
 -        "GEM\0" /* 1 refs @ 26612 */
 -        "Simba\0" /* 1 refs @ 26616 */
 -        "BCM5821\0" /* 1 refs @ 26622 */
 -        "psycho\0" /* 1 refs @ 26630 */
 -        "microSPARC\0" /* 1 refs @ 26637 */
 -        "IIep\0" /* 1 refs @ 26648 */
 -        "UltraSPARC\0" /* 2 refs @ 26653 */
 -        "IIi\0" /* 1 refs @ 26664 */
 -        "Cassini\0" /* 1 refs @ 26668 */
 -        "IP100A\0" /* 1 refs @ 26676 */
 -        "ST201\0" /* 1 refs @ 26683 */
 -        "ST1023\0" /* 1 refs @ 26689 */
 -        "ST2021\0" /* 1 refs @ 26696 */
 -        "Matrix\0" /* 1 refs @ 26703 */
 -        "adapter\0" /* 1 refs @ 26710 */
 -        "SER5xxx\0" /* 1 refs @ 26718 */
 -        "multiport\0" /* 3 refs @ 26726 */
 -        "PCI2S550\0" /* 1 refs @ 26736 */
 -        "SUN1888\0" /* 1 refs @ 26745 */
 -        "parallel\0" /* 1 refs @ 26753 */
 -        "NE-34\0" /* 1 refs @ 26762 */
 -        "4S2P\0" /* 1 refs @ 26768 */
 -        "82C101\0" /* 2 refs @ 26773 */
 -        "82C103\0" /* 1 refs @ 26780 */
 -        "82C105\0" /* 1 refs @ 26787 */
 -        "83C553\0" /* 1 refs @ 26794 */
 -        "SB16C1054\0" /* 1 refs @ 26801 */
 -        "UARTs\0" /* 2 refs @ 26811 */
 -        "SB16C1058\0" /* 1 refs @ 26817 */
 -        "FDDI-xP\0" /* 1 refs @ 26827 */
 -        "GE\0" /* 1 refs @ 26835 */
 -        "SK-9821\0" /* 1 refs @ 26838 */
 -        "SK-9DX1\0" /* 1 refs @ 26846 */
 -        "SK-9D21\0" /* 1 refs @ 26854 */
 -        "1000BASE-T\0" /* 1 refs @ 26862 */
 -        "SK-9D41\0" /* 1 refs @ 26873 */
 -        "1000BASE-X\0" /* 1 refs @ 26881 */
 -        "SK-9Sxx\0" /* 1 refs @ 26892 */
 -        "SK-9E21D/SK-9E22\0" /* 1 refs @ 26900 */
 -        "1000base-T\0" /* 1 refs @ 26917 */
 -        "TC9021\0" /* 2 refs @ 26928 */
 -        "(alt\0" /* 1 refs @ 26935 */
 -        "ServerNet\0" /* 1 refs @ 26940 */
 -        "DC-290(M)\0" /* 1 refs @ 26950 */
 -        "DC-690C\0" /* 1 refs @ 26960 */
 -        "DC-315/DC-395\0" /* 1 refs @ 26968 */
 -        "TLAN\0" /* 1 refs @ 26982 */
 -        "TVP4020\0" /* 1 refs @ 26987 */
 -        "TSB12LV21\0" /* 1 refs @ 26995 */
 -        "TSB12LV22\0" /* 1 refs @ 27005 */
 -        "PCI4450\0" /* 2 refs @ 27015 */
 -        "PCI4410\0" /* 2 refs @ 27023 */
 -        "TSB12LV23\0" /* 1 refs @ 27031 */
 -        "TSB12LV26\0" /* 1 refs @ 27041 */
 -        "TSB43AA22\0" /* 1 refs @ 27051 */
 -        "TSB43AA22/A\0" /* 1 refs @ 27061 */
 -        "TSB43AA23\0" /* 1 refs @ 27073 */
 -        "TSB43AA21\0" /* 1 refs @ 27083 */
 -        "PCI4451\0" /* 2 refs @ 27093 */
 -        "PCI4510\0" /* 2 refs @ 27101 */
 -        "PCI4520\0" /* 2 refs @ 27109 */
 -        "PCI7[4-6]10\0" /* 1 refs @ 27117 */
 -        "PCI7x21/7x11\0" /* 5 refs @ 27129 */
 -        "Cardbus\0" /* 4 refs @ 27142 */
 -        "FlashMedia\0" /* 2 refs @ 27150 */
 -        "SM\0" /* 1 refs @ 27161 */
 -        "PCI6515A\0" /* 2 refs @ 27164 */
 -        "(Smart\0" /* 2 refs @ 27173 */
 -        "PCIXX12\0" /* 5 refs @ 27180 */
 -        "Secure\0" /* 2 refs @ 27188 */
 -        "ACX100A\0" /* 1 refs @ 27195 */
 -        "ACX100B\0" /* 1 refs @ 27203 */
 -        "ACX111\0" /* 1 refs @ 27211 */
 -        "PCI1130\0" /* 1 refs @ 27218 */
 -        "PCI1031\0" /* 1 refs @ 27226 */
 -        "PCI1131\0" /* 1 refs @ 27234 */
 -        "PCI1250\0" /* 1 refs @ 27242 */
 -        "PCI1220\0" /* 1 refs @ 27250 */
 -        "PCI1221\0" /* 1 refs @ 27258 */
 -        "PCI1210\0" /* 1 refs @ 27266 */
 -        "PCI1450\0" /* 1 refs @ 27274 */
 -        "PCI1225\0" /* 1 refs @ 27282 */
 -        "PCI1251\0" /* 1 refs @ 27290 */
 -        "PCI1211\0" /* 1 refs @ 27298 */
 -        "PCI1251B\0" /* 1 refs @ 27306 */
 -        "PCI2030\0" /* 1 refs @ 27315 */
 -        "PCI2050\0" /* 1 refs @ 27323 */
 -        "PCI7510\0" /* 1 refs @ 27331 */
 -        "PCI7610\0" /* 2 refs @ 27339 */
 -        "PCI7410\0" /* 1 refs @ 27347 */
 -        "Mode)\0" /* 3 refs @ 27355 */
 -        "PCI7[46]10\0" /* 2 refs @ 27361 */
 -        "(SD/MMC\0" /* 1 refs @ 27372 */
 -        "(Memory\0" /* 1 refs @ 27380 */
 -        "PCI1410\0" /* 1 refs @ 27388 */
 -        "PCI1420\0" /* 1 refs @ 27396 */
 -        "PCI1451\0" /* 1 refs @ 27404 */
 -        "PCI1421\0" /* 1 refs @ 27412 */
 -        "PCI1620\0" /* 1 refs @ 27420 */
 -        "PCI1520\0" /* 1 refs @ 27428 */
 -        "PCI1510\0" /* 1 refs @ 27436 */
 -        "PCI1530\0" /* 1 refs @ 27444 */
 -        "PCI1515\0" /* 1 refs @ 27452 */
 -        "PCI2040\0" /* 1 refs @ 27460 */
 -        "PCI-DSP\0" /* 1 refs @ 27468 */
 -        "PCI7420\0" /* 1 refs @ 27476 */
 -        "PCI-Cardbus\0" /* 1 refs @ 27484 */
 -        "PCI-010L\0" /* 1 refs @ 27496 */
 -        "PCI-100L\0" /* 1 refs @ 27505 */
 -        "PCI-110L\0" /* 1 refs @ 27514 */
 -        "PCI-200L\0" /* 1 refs @ 27523 */
 -        "PCI-210L\0" /* 1 refs @ 27532 */
 -        "PCI-200Li\0" /* 1 refs @ 27541 */
 -        "PCI-400L\0" /* 1 refs @ 27551 */
 -        "PCI-800L\0" /* 1 refs @ 27560 */
 -        "PCI-011H\0" /* 1 refs @ 27569 */
 -        "PCI-x10H\0" /* 1 refs @ 27578 */
 -        "PCI-100H\0" /* 1 refs @ 27587 */
 -        "PCI-800H\0" /* 1 refs @ 27596 */
 -        "PCI-800H_1\0" /* 1 refs @ 27605 */
 -        "PCI-200H\0" /* 1 refs @ 27616 */
 -        "PCI-010HV2\0" /* 1 refs @ 27625 */
 -        "PCI-200HV2\0" /* 1 refs @ 27636 */
 -        "R4x00\0" /* 1 refs @ 27647 */
 -        "TC35856F\0" /* 1 refs @ 27653 */
 -        "(\"Meteor\")\0" /* 1 refs @ 27662 */
 -        "Portege\0" /* 1 refs @ 27673 */
 -        "Piccolo\0" /* 4 refs @ 27681 */
 -        "ToPIC95\0" /* 1 refs @ 27689 */
 -        "ToPIC95B\0" /* 1 refs @ 27697 */
 -        "ToPIC97\0" /* 1 refs @ 27706 */
 -        "SanRemo?\0" /* 1 refs @ 27714 */
 -        "Triangle\0" /* 1 refs @ 27723 */
 -        "Type-A\0" /* 1 refs @ 27732 */
 -        "ToPIC100\0" /* 1 refs @ 27739 */
 -        "Infrared\0" /* 2 refs @ 27748 */
 -        "Type\0" /* 2 refs @ 27757 */
 -        "O\0" /* 1 refs @ 27762 */
 -        "DO\0" /* 1 refs @ 27764 */
 -        "TM8000\0" /* 1 refs @ 27767 */
 -        "LongRun\0" /* 1 refs @ 27774 */
 -        "SDRAM\0" /* 1 refs @ 27782 */
 -        "BIOS\0" /* 1 refs @ 27788 */
 -        "4DWAVE\0" /* 2 refs @ 27793 */
 -        "DX\0" /* 1 refs @ 27800 */
 -        "NX\0" /* 1 refs @ 27803 */
 -        "CyberBlade\0" /* 2 refs @ 27806 */
 -        "i7\0" /* 1 refs @ 27817 */
 -        "TGUI\0" /* 8 refs @ 27820 */
 -        "9320\0" /* 1 refs @ 27825 */
 -        "9350\0" /* 1 refs @ 27830 */
 -       "9360\0" /* 1 refs @ 27835 */
 -        "CYBER\0" /* 3 refs @ 27840 */
 -        "9397\0" /* 1 refs @ 27846 */
 -        "9397DVD\0" /* 1 refs @ 27851 */
 -        "9525\0" /* 1 refs @ 27859 */
 -        "9420\0" /* 1 refs @ 27864 */
 -        "9440\0" /* 1 refs @ 27869 */
 -        "9660\0" /* 1 refs @ 27874 */
 -        "9680\0" /* 1 refs @ 27879 */
 -        "9682\0" /* 1 refs @ 27884 */
 -        "HPT343/345\0" /* 1 refs @ 27889 */
 -        "HPT366/370/372\0" /* 1 refs @ 27900 */
 -        "HPT372A\0" /* 1 refs @ 27915 */
 -        "HPT302\0" /* 1 refs @ 27923 */
 -        "HPT371\0" /* 1 refs @ 27930 */
 -        "HPT374\0" /* 1 refs @ 27937 */
 -        "HPT372N\0" /* 1 refs @ 27944 */
 -        "RocketRAID\0" /* 2 refs @ 27952 */
 -        "2310\0" /* 1 refs @ 27963 */
 -        "card\0" /* 2 refs @ 27968 */
 -        "2720\0" /* 1 refs @ 27973 */
 -        "Pyramid3D\0" /* 1 refs @ 27978 */
 -        "TR25202\0" /* 1 refs @ 27988 */
 -        "ET4000w32p\0" /* 4 refs @ 27996 */
 -        "ET6000\0" /* 1 refs @ 28007 */
 -        "UM82C881\0" /* 1 refs @ 28014 */
 -        "486\0" /* 2 refs @ 28023 */
 -        "UM82C886\0" /* 1 refs @ 28027 */
 -        "UM8673F\0" /* 1 refs @ 28036 */
 -        "UM8881\0" /* 1 refs @ 28044 */
 -        "UM82C891\0" /* 1 refs @ 28051 */
 -        "UM886A\0" /* 1 refs @ 28060 */
 -        "UM8886BF\0" /* 1 refs @ 28067 */
 -        "UM8710\0" /* 1 refs @ 28076 */
 -        "UM8886\0" /* 1 refs @ 28083 */
 -        "UM8881F\0" /* 1 refs @ 28090 */
 -        "PCI-Host\0" /* 1 refs @ 28098 */
 -        "UM8886F\0" /* 1 refs @ 28107 */
 -        "UM8886A\0" /* 1 refs @ 28115 */
 -        "UM8891A\0" /* 1 refs @ 28123 */
 -        "UM9017F\0" /* 1 refs @ 28131 */
 -        "UM8886N\0" /* 1 refs @ 28139 */
 -        "UM8891N\0" /* 1 refs @ 28147 */
 -        "US201\0" /* 1 refs @ 28155 */
 -        "Voice\0" /* 1 refs @ 28161 */
 -        "Internal\0" /* 1 refs @ 28167 */
 -        "(WinModem)\0" /* 1 refs @ 28176 */
 -        "3CP5609\0" /* 1 refs @ 28187 */
 -        "USR997902\0" /* 1 refs @ 28195 */
 -        "V292PBCPSC\0" /* 1 refs @ 28205 */
 -        "Am29K\0" /* 1 refs @ 28216 */
 -        "Local\0" /* 1 refs @ 28222 */
 -        "V292PBC\0" /* 1 refs @ 28228 */
 -        "AMD290x0\0" /* 1 refs @ 28236 */
 -        "V960PBC\0" /* 1 refs @ 28245 */
 -        "V96DPC\0" /* 1 refs @ 28253 */
 -        "(Dual)\0" /* 1 refs @ 28260 */
 -        "VT6305\0" /* 1 refs @ 28267 */
 -        "K8M800\0" /* 1 refs @ 28274 */
 -        "K8T890\0" /* 7 refs @ 28281 */
 -        "KT880\0" /* 6 refs @ 28288 */
 -        "K8HTB\0" /* 3 refs @ 28294 */
 -        "VT8363\0" /* 2 refs @ 28300 */
 -        "(Apollo\0" /* 24 refs @ 28307 */
 -        "KT133)\0" /* 2 refs @ 28315 */
 -        "VT3351\0" /* 7 refs @ 28322 */
 -        "VT8371\0" /* 2 refs @ 28329 */
 -        "KX133)\0" /* 2 refs @ 28336 */
 -        "VX900\0" /* 2 refs @ 28343 */
 -        "VT8501\0" /* 2 refs @ 28349 */
 -        "MVP4)\0" /* 2 refs @ 28356 */
 -        "VT82C505\0" /* 1 refs @ 28362 */
 -        "(Pluto)\0" /* 1 refs @ 28371 */
 -       "VT82C561\0" /* 1 refs @ 28379 */
 -        "VT82C586A\0" /* 1 refs @ 28388 */
 -        "VT82C576\0" /* 1 refs @ 28398 */
 -        "3V\0" /* 1 refs @ 28407 */
 -        "CX700\0" /* 2 refs @ 28410 */
 -        "VT82C580\0" /* 1 refs @ 28416 */
 -        "VP)\0" /* 1 refs @ 28425 */
 -        "VT82C586\0" /* 3 refs @ 28429 */
 -        "VT8237A\0" /* 4 refs @ 28438 */
 -        "VT82C595\0" /* 2 refs @ 28446 */
 -        "VP2)\0" /* 2 refs @ 28455 */
 -        "VT82C596A\0" /* 1 refs @ 28460 */
 -        "VT82C597\0" /* 2 refs @ 28470 */
 -        "VP3)\0" /* 2 refs @ 28479 */
 -        "VT82C598\0" /* 2 refs @ 28484 */
 -        "MVP3)\0" /* 2 refs @ 28493 */
 -        "VT8605\0" /* 2 refs @ 28499 */
 -        "ProMedia\0" /* 2 refs @ 28506 */
 -        "133)\0" /* 2 refs @ 28515 */
 -        "VT82C686A\0" /* 4 refs @ 28520 */
 -        "VT82C691\0" /* 1 refs @ 28530 */
 -        "Pro)\0" /* 1 refs @ 28539 */
 -        "VT82C693\0" /* 1 refs @ 28544 */
 -        "Plus)\0" /* 1 refs @ 28553 */
 -        "VT86C926\0" /* 1 refs @ 28559 */
 -        "Amazon\0" /* 1 refs @ 28568 */
 -        "PCI-Ethernet\0" /* 1 refs @ 28575 */
 -        "VT82C570M\0" /* 2 refs @ 28588 */
 -        "(Apollo)\0" /* 2 refs @ 28598 */
 -        "VT8251\0" /* 6 refs @ 28607 */
 -        "Port1\0" /* 1 refs @ 28614 */
 -        "Port2\0" /* 1 refs @ 28620 */
 -        "VLINK\0" /* 1 refs @ 28626 */
 -        "VT83C572\0" /* 1 refs @ 28632 */
 -        "VT3043\0" /* 1 refs @ 28641 */
 -        "(Rhine)\0" /* 1 refs @ 28648 */
 -        "VT6306\0" /* 1 refs @ 28656 */
 -        "VT6105M\0" /* 1 refs @ 28663 */
 -        "(Rhine\0" /* 3 refs @ 28671 */
 -        "VT8233/VT8235\0" /* 1 refs @ 28678 */
 -        "VT6102\0" /* 1 refs @ 28692 */
 -        "MC-97\0" /* 1 refs @ 28699 */
 -        "VT8233\0" /* 1 refs @ 28705 */
 -        "VT8366\0" /* 2 refs @ 28712 */
 -        "KT266)\0" /* 2 refs @ 28719 */
 -        "CPU-PCI\0" /* 3 refs @ 28726 */
 -        "VT8653\0" /* 1 refs @ 28734 */
 -        "266T)\0" /* 1 refs @ 28741 */
 -        "VT8237\0" /* 4 refs @ 28747 */
 -        "VT6105\0" /* 1 refs @ 28754 */
 -        "VT612X\0" /* 1 refs @ 28761 */
 -        "(Velocity)\0" /* 1 refs @ 28768 */
 -        "VT8623\0" /* 2 refs @ 28779 */
 -        "CLE266)\0" /* 2 refs @ 28786 */
 -        "VT8233A\0" /* 1 refs @ 28794 */
 -        "VT6410\0" /* 1 refs @ 28802 */
 -        "VT6421\0" /* 1 refs @ 28809 */
 -        "VT3314\0" /* 1 refs @ 28816 */
 -        "CN900\0" /* 1 refs @ 28823 */
 -        "UniChrome\0" /* 2 refs @ 28829 */
 -        "VT8237R\0" /* 1 refs @ 28839 */
 -        "VT8235\0" /* 1 refs @ 28847 */
 -        "KT400)\0" /* 1 refs @ 28854 */
 -        "VT8377\0" /* 2 refs @ 28861 */
 -        "Apollo\0" /* 2 refs @ 28868 */
 -        "KT400\0" /* 1 refs @ 28875 */
 -        "VT8378\0" /* 2 refs @ 28881 */
 -        "KM400\0" /* 2 refs @ 28888 */
 -        "VT8237A/VT8251\0" /* 1 refs @ 28894 */
 -        "VT8237A/VT82C586A\0" /* 1 refs @ 28909 */
 -        "VT8237S\0" /* 2 refs @ 28927 */
 -        "CX700M2/VX700\0" /* 1 refs @ 28935 */
 -        "VT86C100A\0" /* 1 refs @ 28949 */
 -        "(Rhine-II)\0" /* 1 refs @ 28959 */
 -        "VT8231\0" /* 2 refs @ 28970 */
 -        "VX800/VX820\0" /* 1 refs @ 28977 */
 -        "CPU-AGP\0" /* 7 refs @ 28989 */
 -        "VT8633\0" /* 1 refs @ 28997 */
 -        "266)\0" /* 1 refs @ 29004 */
 -        "VT8377CE\0" /* 1 refs @ 29009 */
 -        "Guest\0" /* 1 refs @ 29018 */
 -        "Service\0" /* 1 refs @ 29024 */
 -        "GDT6000/6020/6050\0" /* 1 refs @ 29032 */
 -        "GDT6000B/6010\0" /* 1 refs @ 29050 */
 -        "GDT6110/6510\0" /* 1 refs @ 29064 */
 -        "GDT6120/6520\0" /* 1 refs @ 29077 */
 -        "GDT6530\0" /* 1 refs @ 29090 */
 -        "GDT6550\0" /* 1 refs @ 29098 */
 -        "GDT6117/6517\0" /* 1 refs @ 29106 */
 -        "GDT6127/6527\0" /* 1 refs @ 29119 */
 -        "GDT6537\0" /* 1 refs @ 29132 */
 -        "GDT6557/6557-ECC\0" /* 1 refs @ 29140 */
 -        "GDT6115/6515\0" /* 1 refs @ 29157 */
 -        "GDT6125/6525\0" /* 1 refs @ 29170 */
 -        "GDT6535\0" /* 1 refs @ 29183 */
 -        "GDT6555/6555-ECC\0" /* 1 refs @ 29191 */
 -        "GDT6[15]17RP\0" /* 1 refs @ 29208 */
 -        "GDT6[15]27RP\0" /* 1 refs @ 29221 */
 -        "GDT6537RP\0" /* 1 refs @ 29234 */
 -        "GDT6557RP\0" /* 1 refs @ 29244 */
 -        "GDT6[15]11RP\0" /* 1 refs @ 29254 */
 -        "GDT6[15]21RP\0" /* 1 refs @ 29267 */
 -        "GDT6[15]17RD\0" /* 1 refs @ 29280 */
 -        "GDT6[5]127RD\0" /* 1 refs @ 29293 */
 -        "GDT6537RD\0" /* 1 refs @ 29306 */
 -        "GDT6557RD\0" /* 1 refs @ 29316 */
 -        "GDT6[15]11RD\0" /* 1 refs @ 29326 */
 -        "GDT6[15]21RD\0" /* 1 refs @ 29339 */
 -        "GDT6[156]18RD\0" /* 1 refs @ 29352 */
 -        "GDT6[156]28RD\0" /* 1 refs @ 29366 */
 -        "GDT6[56]38RD\0" /* 1 refs @ 29380 */
 -        "GDT6[56]58RD\0" /* 1 refs @ 29393 */
 -        "GDT6[15]17RP2\0" /* 1 refs @ 29406 */
 -        "GDT6[15]27RP2\0" /* 1 refs @ 29420 */
 -        "GDT6537RP2\0" /* 1 refs @ 29434 */
 -        "GDT6[15]11RP2\0" /* 1 refs @ 29445 */
 -        "GDT6[15]21RP2\0" /* 1 refs @ 29459 */
 -        "GDT6513RS\0" /* 1 refs @ 29473 */
 -        "GDT6523RS\0" /* 1 refs @ 29483 */
 -        "GDT6518RS\0" /* 1 refs @ 29493 */
 -        "GDT6x28RS\0" /* 1 refs @ 29503 */
 -        "GDT6x38RS\0" /* 1 refs @ 29513 */
 -        "GDT6x58RS\0" /* 1 refs @ 29523 */
 -        "GDT6x33RS\0" /* 1 refs @ 29533 */
 -        "GDT6x43RS\0" /* 1 refs @ 29543 */
 -        "GDT6x53RS\0" /* 1 refs @ 29553 */
 -        "GDT6x63RS\0" /* 1 refs @ 29563 */
 -        "GDT7x13RN\0" /* 1 refs @ 29573 */
 -        "GDT7x23RN\0" /* 1 refs @ 29583 */
 -        "GDT7[156]18RN\0" /* 1 refs @ 29593 */
 -        "GDT7[156]28RN\0" /* 1 refs @ 29607 */
 -        "GDT7[56]38RN\0" /* 1 refs @ 29621 */
 -        "GDT7[56]58RN\0" /* 1 refs @ 29634 */
 -        "GDT7[56]43RN\0" /* 1 refs @ 29647 */
 -        "GDT7x53RN\0" /* 1 refs @ 29660 */
 -        "GDT7x63RN\0" /* 1 refs @ 29670 */
 -        "GDT4x13RZ\0" /* 1 refs @ 29680 */
 -        "GDT4x23RZ\0" /* 1 refs @ 29690 */
 -        "GDT8x13RZ\0" /* 1 refs @ 29700 */
 -        "GDT8x23RZ\0" /* 1 refs @ 29710 */
 -        "GDT8x33RZ\0" /* 1 refs @ 29720 */
 -        "GDT8x43RZ\0" /* 1 refs @ 29730 */
 -        "GDT8x53RZ\0" /* 1 refs @ 29740 */
 -        "GDT8x63RZ\0" /* 1 refs @ 29750 */
 -        "GDT6[56]19RD\0" /* 1 refs @ 29760 */
 -        "GDT6[56]29RD\0" /* 1 refs @ 29773 */
 -        "GDT7[56]19RN\0" /* 1 refs @ 29786 */
 -        "GDT7[56]29RN\0" /* 1 refs @ 29799 */
 -        "ICP\0" /* 1 refs @ 29812 */
 -        "82C592\0" /* 1 refs @ 29816 */
 -        "82C593\0" /* 1 refs @ 29823 */
 -        "82C594\0" /* 1 refs @ 29830 */
 -        "Wildcat\0" /* 2 refs @ 29837 */
 -        "82C596/597\0" /* 1 refs @ 29845 */
 -        "82C541\0" /* 1 refs @ 29856 */
 -        "82C543\0" /* 1 refs @ 29863 */
 -        "82C532\0" /* 1 refs @ 29870 */
 -        "82C534\0" /* 1 refs @ 29877 */
 -        "82C535\0" /* 1 refs @ 29884 */
 -        "82C147\0" /* 1 refs @ 29891 */
 -        "82C975\0" /* 1 refs @ 29898 */
 -        "82C925\0" /* 1 refs @ 29905 */
 -        "SVGA\0" /* 2 refs @ 29912 */
 -        "Machine\0" /* 1 refs @ 29917 */
 -        "Communication\0" /* 1 refs @ 29925 */
 -        "82545EM\0" /* 1 refs @ 29939 */
 -        "82546EB\0" /* 1 refs @ 29947 */
 -        "PVSCSI\0" /* 1 refs @ 29955 */
 -        "VMI\0" /* 1 refs @ 29962 */
 -        "option\0" /* 1 refs @ 29966 */
 -        "ROM\0" /* 1 refs @ 29973 */
 -        "P9000\0" /* 1 refs @ 29977 */
 -        "P9100\0" /* 1 refs @ 29983 */
 -        "WD33C193A\0" /* 1 refs @ 29989 */
 -        "WD33C196A\0" /* 1 refs @ 29999 */
 -        "WD33C197A\0" /* 1 refs @ 30009 */
 -        "WD7193\0" /* 1 refs @ 30019 */
 -        "WD7197\0" /* 1 refs @ 30026 */
 -        "WD33C296A\0" /* 1 refs @ 30033 */
 -        "WD34C296\0" /* 1 refs @ 30043 */
 -        "90C\0" /* 1 refs @ 30052 */
 -        "W83769F\0" /* 1 refs @ 30056 */
 -        "W83C553F\0" /* 2 refs @ 30064 */
 -        "W83628F\0" /* 1 refs @ 30073 */
 -        "W89C840F\0" /* 1 refs @ 30081 */
 -        "W89C940F\0" /* 2 refs @ 30090 */
 -        "W6692\0" /* 1 refs @ 30099 */
 -        "NinjaSCSI-32UDE\0" /* 5 refs @ 30105 */
 -        "(KME)\0" /* 3 refs @ 30121 */
 -        "(IODATA)\0" /* 1 refs @ 30127 */
 -        "(LOGITEC)\0" /* 1 refs @ 30136 */
 -        "(LOGITEC2)\0" /* 1 refs @ 30146 */
 -        "(BUFFALO)\0" /* 2 refs @ 30157 */
 -        "CF32A\0" /* 2 refs @ 30167 */
 -        "CompactFlash\0" /* 1 refs @ 30173 */
 -        "CF\0" /* 1 refs @ 30186 */
 -        "NPATA-32\0" /* 1 refs @ 30189 */
 -        "Xen\0" /* 1 refs @ 30198 */
 -        "Platform\0" /* 1 refs @ 30202 */
 -        "Volari\0" /* 5 refs @ 30211 */
 -        "Z7/Z9/Z9s\0" /* 1 refs @ 30218 */
 -        "Z9m\0" /* 1 refs @ 30228 */
 -        "Z11/Z11M\0" /* 1 refs @ 30232 */
 -        "V3XT/V5/V8\0" /* 1 refs @ 30241 */
 -        "XP10\0" /* 1 refs @ 30252 */
 -        "X3201-3\0" /* 2 refs @ 30257 */
 -        "(21143)\0" /* 1 refs @ 30265 */
 -        "WinGlobal\0" /* 1 refs @ 30273 */
 -        "724\0" /* 1 refs @ 30283 */
 -        "740C\0" /* 1 refs @ 30287 */
 -        "(DS-1)\0" /* 2 refs @ 30292 */
 -        "724F\0" /* 1 refs @ 30299 */
 -        "744\0" /* 1 refs @ 30304 */
 -        "(DS-1S)\0" /* 1 refs @ 30308 */
 -        "754\0" /* 1 refs @ 30316 */
 -        "(DS-1E)\0" /* 1 refs @ 30320 */
 -        "1221\0" /* 1 refs @ 30328 */
 -        "PCI-ST32\0" /* 1 refs @ 30333 */
 -        "ZR36057\0" /* 1 refs @ 30342 */
 -        "ZR36120\0" /* 1 refs @ 30350 */
 +        "Centerton\0" /* 1 refs @ 20446 */
 +        "Powerstorm\0" /* 2 refs @ 20456 */
 +        "4D50T\0" /* 1 refs @ 20467 */
 +        "4D60T\0" /* 1 refs @ 20473 */
 +        "PRISM2.5\0" /* 1 refs @ 20479 */
 +        "PRISM\0" /* 2 refs @ 20488 */
 +        "Indigo\0" /* 1 refs @ 20494 */
 +        "Duette\0" /* 1 refs @ 20501 */
 +        "AEON\0" /* 1 refs @ 20508 */
 +        "CBIDE2/CI-iCN\0" /* 1 refs @ 20513 */
 +        "NinjaATA-32Bi\0" /* 3 refs @ 20527 */
 +        "CBSCII\0" /* 1 refs @ 20541 */
 +        "NinjaSCSI-32Bi\0" /* 3 refs @ 20548 */
 +        "RSA-PCI\0" /* 1 refs @ 20563 */
 +        "GV-BCTV5DL/PCI\0" /* 1 refs @ 20571 */
 +       "TV\0" /* 1 refs @ 20586 */
 +        "tuner\0" /* 1 refs @ 20589 */
 +        "IT8152\0" /* 1 refs @ 20595 */
 +        "IT8211\0" /* 1 refs @ 20602 */
 +        "IT8212\0" /* 1 refs @ 20609 */
 +        "AGX016\0" /* 1 refs @ 20616 */
 +        "ITT3204\0" /* 1 refs @ 20623 */
 +        "JMB360\0" /* 1 refs @ 20631 */
 +        "JMB361\0" /* 1 refs @ 20638 */
 +        "SATA/PATA\0" /* 4 refs @ 20645 */
 +        "JMB362\0" /* 1 refs @ 20655 */
 +        "JMB363\0" /* 1 refs @ 20662 */
 +        "JMB365\0" /* 1 refs @ 20669 */
 +        "JMB366\0" /* 1 refs @ 20676 */
 +        "JMB368\0" /* 1 refs @ 20683 */
 +        "PATA\0" /* 1 refs @ 20690 */
 +        "JMB38X\0" /* 4 refs @ 20695 */
 +        "SD/MMC\0" /* 4 refs @ 20702 */
 +        "Stick\0" /* 4 refs @ 20709 */
 +        "xD\0" /* 3 refs @ 20715 */
 +        "JMB388\0" /* 4 refs @ 20718 */
 +        "JMC250\0" /* 1 refs @ 20725 */
 +        "JMC260\0" /* 1 refs @ 20732 */
 +        "JNIC-1460\0" /* 1 refs @ 20739 */
 +        "Fibre-Channel\0" /* 5 refs @ 20749 */
 +        "JNIC-1560\0" /* 1 refs @ 20763 */
 +        "FCI-1063\0" /* 1 refs @ 20773 */
 +        "FCX2-6562\0" /* 1 refs @ 20782 */
 +        "FCX-6562\0" /* 1 refs @ 20792 */
 +        "Experimental\0" /* 1 refs @ 20801 */
 +        "Clock\0" /* 1 refs @ 20814 */
 +        "Version\0" /* 1 refs @ 20820 */
 +        "0\0" /* 2 refs @ 20828 */
 +        "HSSI\0" /* 1 refs @ 20830 */
 +        "DS3\0" /* 1 refs @ 20835 */
 +        "SSI\0" /* 1 refs @ 20839 */
 +        "DS1\0" /* 1 refs @ 20843 */
 +        "805\0" /* 1 refs @ 20847 */
 +        "LXT-1001\0" /* 1 refs @ 20851 */
 +        "DVB\0" /* 2 refs @ 20860 */
 +        "Transmitter\0" /* 1 refs @ 20864 */
 +        "Receiver\0" /* 1 refs @ 20876 */
 +        "EG1032\0" /* 1 refs @ 20885 */
 +        "v2\0" /* 2 refs @ 20892 */
 +        "Instant\0" /* 2 refs @ 20895 */
 +        "EG1064\0" /* 1 refs @ 20903 */
 +        "PCMPC200\0" /* 1 refs @ 20910 */
 +        "IPN\0" /* 1 refs @ 20919 */
 +        "2220\0" /* 1 refs @ 20923 */
 +        "(rev\0" /* 1 refs @ 20928 */
 +        "01)\0" /* 1 refs @ 20933 */
 +        "82C168/82C169\0" /* 1 refs @ 20937 */
 +        "(PNIC)\0" /* 1 refs @ 20951 */
 +        "82C115\0" /* 1 refs @ 20958 */
 +        "(PNIC\0" /* 1 refs @ 20965 */
 +        "II)\0" /* 2 refs @ 20971 */
 +        "K56flex\0" /* 2 refs @ 20975 */
 +        "DSVD\0" /* 1 refs @ 20983 */
 +        "LTMODEM\0" /* 26 refs @ 20988 */
 +        "Venus\0" /* 1 refs @ 20996 */
 +        "ORCA\0" /* 2 refs @ 21002 */
 +        "FPGA\0" /* 2 refs @ 21007 */
 +        "32-bit\0" /* 1 refs @ 21012 */
 +        "ASIC\0" /* 2 refs @ 21019 */
 +        "64-bit\0" /* 1 refs @ 21024 */
 +        "FW322/323\0" /* 1 refs @ 21031 */
 +        "FW643\0" /* 1 refs @ 21041 */
 +        "1394b\0" /* 1 refs @ 21047 */
 +        "ET1310\0" /* 1 refs @ 21053 */
 +        "ET1301\0" /* 1 refs @ 21060 */
 +        "MX98713\0" /* 1 refs @ 21067 */
 +        "(PMAC)\0" /* 2 refs @ 21075 */
 +        "MX987x5\0" /* 1 refs @ 21082 */
 +        "Ringnode\0" /* 1 refs @ 21090 */
 +        "Mk2\0" /* 1 refs @ 21099 */
 +        "Collage\0" /* 2 refs @ 21103 */
 +        "155\0" /* 2 refs @ 21111 */
 +        "PCI-SLRS\0" /* 2 refs @ 21115 */
 +        "MGA\0" /* 14 refs @ 21124 */
 +        "PX2085\0" /* 1 refs @ 21128 */
 +        "(\"Atlas\")\0" /* 1 refs @ 21135 */
 +        "Millennium\0" /* 3 refs @ 21145 */
 +        "2064W\0" /* 1 refs @ 21156 */
 +        "(\"Storm\")\0" /* 1 refs @ 21162 */
 +        "Mystique\0" /* 1 refs @ 21172 */
 +        "1064SG\0" /* 1 refs @ 21181 */
 +        "2164W\0" /* 1 refs @ 21188 */
 +        "2164WA-B\0" /* 1 refs @ 21194 */
 +        "G200\0" /* 2 refs @ 21203 */
 +        "G200e\0" /* 1 refs @ 21208 */
 +        "(ServerEngines)\0" /* 1 refs @ 21214 */
 +        "G400\0" /* 1 refs @ 21230 */
 +        "G200eW\0" /* 1 refs @ 21235 */
 +        "Impression\0" /* 1 refs @ 21242 */
 +        "G100\0" /* 2 refs @ 21253 */
 +        "G550\0" /* 1 refs @ 21258 */
 +        "MQ200\0" /* 1 refs @ 21263 */
 +        "InfiniHost\0" /* 6 refs @ 21269 */
 +        "(Tavor)\0" /* 2 refs @ 21280 */
 +        "Lx\0" /* 2 refs @ 21288 */
 +        "(old\0" /* 1 refs @ 21291 */
 +        "Sinai)\0" /* 1 refs @ 21296 */
 +        "(Sinai)\0" /* 1 refs @ 21303 */
 +        "Ex\0" /* 2 refs @ 21311 */
 +        "(Arbel\0" /* 1 refs @ 21314 */
 +        "in\0" /* 1 refs @ 21321 */
 +        "Tavor\0" /* 1 refs @ 21324 */
 +        "compatility)\0" /* 1 refs @ 21330 */
 +        "(Arbel)\0" /* 1 refs @ 21343 */
 +        "ConnectX\0" /* 7 refs @ 21351 */
 +        "SDR\0" /* 1 refs @ 21360 */
 +        "(Hermon)\0" /* 7 refs @ 21364 */
 +        "DDR\0" /* 3 refs @ 21373 */
 +        "QDR\0" /* 2 refs @ 21377 */
 +        "PCIe\0" /* 8 refs @ 21381 */
 +        "2.5GT/s\0" /* 2 refs @ 21386 */
 +        "EN\0" /* 2 refs @ 21394 */
 +        "10GigE\0" /* 2 refs @ 21397 */
 +        "5GT/s\0" /* 3 refs @ 21404 */
 +        "MM-5415CN\0" /* 1 refs @ 21410 */
 +        "MM-5425CN\0" /* 1 refs @ 21420 */
 +        "MN-120\0" /* 1 refs @ 21430 */
 +        "Switched\0" /* 1 refs @ 21437 */
 +        "Weasel\0" /* 3 refs @ 21446 */
 +        "Tornado\0" /* 1 refs @ 21453 */
 +        "MPC105\0" /* 1 refs @ 21461 */
 +        "\"Eagle\"\0" /* 1 refs @ 21468 */
 +        "MPC106\0" /* 1 refs @ 21476 */
 +        "\"Grackle\"\0" /* 1 refs @ 21483 */
 +        "MPC8240\0" /* 1 refs @ 21493 */
 +        "\"Kahlua\"\0" /* 1 refs @ 21501 */
 +        "MPC107\0" /* 1 refs @ 21510 */
 +        "\"Chaparral\"\0" /* 1 refs @ 21517 */
 +        "MPC8245\0" /* 1 refs @ 21529 */
 +        "\"Kahlua\0" /* 1 refs @ 21537 */
 +        "II\"\0" /* 1 refs @ 21545 */
 +        "MPC8555E\0" /* 1 refs @ 21549 */
 +        "MPC8541\0" /* 1 refs @ 21558 */
 +        "Raven\0" /* 1 refs @ 21566 */
 +        "Multi-Processor\0" /* 1 refs @ 21572 */
 +        "Falcon\0" /* 1 refs @ 21588 */
 +        "ECC\0" /* 1 refs @ 21595 */
 +        "Set\0" /* 1 refs @ 21599 */
 +        "Hawk\0" /* 1 refs @ 21603 */
 +        "MPC5200B\0" /* 1 refs @ 21608 */
 +        "CP102U\0" /* 1 refs @ 21617 */
 +        "C104H\0" /* 1 refs @ 21624 */
 +        "CP104UL\0" /* 1 refs @ 21630 */
 +        "CP104V2\0" /* 1 refs @ 21638 */
 +        "CP104EL\0" /* 1 refs @ 21646 */
 +        "CP114\0" /* 1 refs @ 21654 */
 +        "C168H\0" /* 1 refs @ 21660 */
 +        "C168U\0" /* 1 refs @ 21666 */
 +        "C168EL\0" /* 2 refs @ 21672 */
 +        "MV1000\0" /* 1 refs @ 21679 */
 +        "DAC960\0" /* 4 refs @ 21686 */
 +        "(v2\0" /* 1 refs @ 21693 */
 +        "Interface)\0" /* 4 refs @ 21697 */
 +        "(v3\0" /* 1 refs @ 21708 */
 +        "(v4\0" /* 1 refs @ 21712 */
 +        "(v5\0" /* 1 refs @ 21716 */
 +        "eXtremeRAID\0" /* 4 refs @ 21720 */
 +        "AcceleRAID\0" /* 3 refs @ 21732 */
 +        "352\0" /* 1 refs @ 21743 */
 +        "170\0" /* 1 refs @ 21747 */
 +        "160\0" /* 1 refs @ 21751 */
 +        "1100\0" /* 2 refs @ 21755 */
 +        "2000/3000\0" /* 1 refs @ 21760 */
 +        "MTD803\0" /* 1 refs @ 21770 */
 +        "3-in-1\0" /* 1 refs @ 21777 */
 +        "NCP130\0" /* 2 refs @ 21784 */
 +        "A2\0" /* 1 refs @ 21791 */
 +        "NSP2K\0" /* 1 refs @ 21794 */
 +        "Policy\0" /* 1 refs @ 21800 */
 +        "XLP\0" /* 27 refs @ 21807 */
 +        "controller\0" /* 17 refs @ 21811 */
 +        "Inter-Chip\0" /* 1 refs @ 21822 */
 +        "interconnect\0" /* 1 refs @ 21833 */
 +        "PCI-Express\0" /* 7 refs @ 21846 */
 +        "RootComplex/Endpoint\0" /* 1 refs @ 21858 */
 +        "Interlaken\0" /* 1 refs @ 21879 */
 +        "LA\0" /* 1 refs @ 21890 */
 +        "interface\0" /* 2 refs @ 21893 */
 +        "Acceleration\0" /* 1 refs @ 21903 */
 +        "engine\0" /* 4 refs @ 21916 */
 +        "Ordering\0" /* 1 refs @ 21923 */
 +        "Messaging\0" /* 1 refs @ 21932 */
 +        "Transfer\0" /* 1 refs @ 21942 */
 +        "accelerator\0" /* 3 refs @ 21951 */
 +        "RSA/ECC\0" /* 1 refs @ 21963 */
 +        "Compress/Decompression\0" /* 1 refs @ 21971 */
 +        "JTAG\0" /* 1 refs @ 21994 */
 +        "NOR\0" /* 1 refs @ 21999 */
 +        "flash\0" /* 2 refs @ 22003 */
 +        "NAND\0" /* 1 refs @ 22009 */
 +        "eMMC/SD/SDIO\0" /* 1 refs @ 22014 */
 +        "Regular\0" /* 1 refs @ 22027 */
 +        "Expression\0" /* 1 refs @ 22035 */
 +        "SRIO\0" /* 1 refs @ 22046 */
 +        "(Serial\0" /* 1 refs @ 22051 */
 +        "Rapid\0" /* 1 refs @ 22059 */
 +        "IO)\0" /* 1 refs @ 22065 */
 +        "Universe\0" /* 1 refs @ 22069 */
 +        "VME\0" /* 1 refs @ 22078 */
 +        "QSpan\0" /* 1 refs @ 22082 */
 +        "PowerSpan\0" /* 2 refs @ 22088 */
 +        "MXI-3\0" /* 1 refs @ 22098 */
 +        "Extender\0" /* 1 refs @ 22104 */
 +        "DP83810\0" /* 1 refs @ 22113 */
 +        "PC87415\0" /* 1 refs @ 22121 */
 +        "87560\0" /* 1 refs @ 22129 */
 +        "Legacy\0" /* 1 refs @ 22135 */
 +        "DP83815\0" /* 1 refs @ 22142 */
 +        "DP83820\0" /* 1 refs @ 22150 */
 +        "CS5535\0" /* 6 refs @ 22158 */
 +        "Saturn\0" /* 1 refs @ 22165 */
 +        "SC1100\0" /* 5 refs @ 22172 */
 +        "XpressAUDIO\0" /* 1 refs @ 22179 */
 +        "SMI/ACPI\0" /* 1 refs @ 22191 */
 +        "X-Bus\0" /* 1 refs @ 22200 */
 +        "NS87410\0" /* 1 refs @ 22206 */
 +        "SAA7130HL\0" /* 1 refs @ 22214 */
 +        "Broadcast\0" /* 4 refs @ 22224 */
 +        "SAA7133HL\0" /* 1 refs @ 22234 */
 +        "A/V\0" /* 3 refs @ 22244 */
 +        "SAA7134HL\0" /* 1 refs @ 22248 */
 +        "SAA7135HL\0" /* 1 refs @ 22258 */
 +        "SAA7146AH\0" /* 1 refs @ 22268 */
 +        "53c810\0" /* 1 refs @ 22278 */
 +        "53c820\0" /* 1 refs @ 22285 */
 +        "53c825\0" /* 1 refs @ 22292 */
 +        "53c815\0" /* 1 refs @ 22299 */
 +        "53c810AP\0" /* 1 refs @ 22306 */
 +        "53c860\0" /* 1 refs @ 22315 */
 +        "53c1510D\0" /* 1 refs @ 22322 */
 +        "53c896\0" /* 1 refs @ 22331 */
 +        "53c895\0" /* 1 refs @ 22338 */
 +        "53c885\0" /* 1 refs @ 22345 */
 +        "53c875/876\0" /* 1 refs @ 22352 */
 +        "53c1510\0" /* 1 refs @ 22363 */
 +        "53c895A\0" /* 1 refs @ 22371 */
 +        "53c875A\0" /* 1 refs @ 22379 */
 +        "53c1010\0" /* 2 refs @ 22387 */
 +        "(66MHz)\0" /* 1 refs @ 22395 */
 +        "53c1020/53c1030\0" /* 1 refs @ 22403 */
 +        "53c1030R\0" /* 1 refs @ 22419 */
 +        "53c1030ZC\0" /* 1 refs @ 22428 */
 +        "53c1035\0" /* 1 refs @ 22438 */
 +        "53c1035ZC\0" /* 1 refs @ 22446 */
 +        "SAS1064\0" /* 1 refs @ 22456 */
 +        "SAS1068\0" /* 2 refs @ 22464 */
 +        "SAS1064E\0" /* 2 refs @ 22472 */
 +        "SAS1068E\0" /* 2 refs @ 22481 */
 +        "SAS1066E\0" /* 1 refs @ 22490 */
 +        "SAS2208\0" /* 7 refs @ 22499 */
 +        "SAS1064A\0" /* 1 refs @ 22507 */
 +        "SAS1066\0" /* 1 refs @ 22516 */
 +        "SAS1078\0" /* 2 refs @ 22524 */
 +        "SAS2116\0" /* 2 refs @ 22532 */
 +        "SAS2308\0" /* 3 refs @ 22540 */
 +        "SAS2004\0" /* 1 refs @ 22548 */
 +        "SAS2008\0" /* 2 refs @ 22556 */
 +        "SAS2108\0" /* 5 refs @ 22564 */
 +        "CRYPTO\0" /* 1 refs @ 22572 */
 +        "GEN2\0" /* 2 refs @ 22579 */
 +        "SAS1078DE\0" /* 1 refs @ 22584 */
 +        "53c875J\0" /* 1 refs @ 22594 */
 +        "FC909\0" /* 1 refs @ 22602 */
 +        "FC909A\0" /* 1 refs @ 22608 */
 +        "FC929\0" /* 2 refs @ 22615 */
 +        "FC919\0" /* 2 refs @ 22621 */
 +        "FC929X\0" /* 1 refs @ 22627 */
 +        "FC919X\0" /* 1 refs @ 22634 */
 +        "FC949X\0" /* 1 refs @ 22641 */
 +        "FC939X\0" /* 1 refs @ 22648 */
 +        "FC949E\0" /* 1 refs @ 22655 */
 +        "Megaraid\0" /* 3 refs @ 22662 */
 +        "320-X\0" /* 1 refs @ 22671 */
 +        "320-E\0" /* 1 refs @ 22677 */
 +        "(300-6X/300-8X)\0" /* 1 refs @ 22683 */
 +        "Verde\0" /* 1 refs @ 22699 */
 +        "ZCR\0" /* 1 refs @ 22705 */
 +        "4/SC\0" /* 1 refs @ 22709 */
 +        "G-NIC\0" /* 2 refs @ 22714 */
 +        "Tools\0" /* 1 refs @ 22720 */
 +        "VRC4173\0" /* 3 refs @ 22726 */
 +        "PC-Card\0" /* 1 refs @ 22734 */
 +        "Unit\0" /* 5 refs @ 22742 */
 +        "PowerVR\0" /* 1 refs @ 22747 */
 +        "PCX2\0" /* 1 refs @ 22755 */
 +        "uPD72872\0" /* 1 refs @ 22760 */
 +        "PK-UG-X001\0" /* 1 refs @ 22769 */
 +        "PK-UG-X008\0" /* 1 refs @ 22780 */
 +        "Bus\0" /* 3 refs @ 22791 */
 +        "uPD72870\0" /* 1 refs @ 22795 */
 +        "uPD72871\0" /* 1 refs @ 22804 */
 +        "uPD720400\0" /* 1 refs @ 22813 */
 +        "PCI/PCI-X\0" /* 3 refs @ 22823 */
 +        "Versa\0" /* 2 refs @ 22833 */
 +        "VA26D\0" /* 1 refs @ 22839 */
 +        "MagicGraph\0" /* 4 refs @ 22845 */
 +        "NM2070\0" /* 1 refs @ 22856 */
 +        "128V\0" /* 1 refs @ 22863 */
 +        "128ZV\0" /* 1 refs @ 22868 */
 +        "128XD\0" /* 1 refs @ 22874 */
 +        "MagicMedia\0" /* 5 refs @ 22880 */
 +        "256AV\0" /* 2 refs @ 22891 */
 +        "256ZX\0" /* 2 refs @ 22897 */
 +        "256XL+\0" /* 1 refs @ 22903 */
 +        "NET2280\0" /* 1 refs @ 22910 */
 +        "NET2282\0" /* 1 refs @ 22918 */
 +        "GA620\0" /* 2 refs @ 22926 */
 +        "MA301\0" /* 1 refs @ 22932 */
 +        "1284\0" /* 6 refs @ 22938 */
 +        "Printer\0" /* 6 refs @ 22943 */
 +        "9855\0" /* 1 refs @ 22951 */
 +        "9865\0" /* 1 refs @ 22956 */
 +        "MCS9990\0" /* 1 refs @ 22961 */
 +        "NX82C501\0" /* 1 refs @ 22969 */
 +        "NDR4600\0" /* 1 refs @ 22978 */
 +        "Baystack\0" /* 1 refs @ 22986 */
 +        "21\0" /* 1 refs @ 22995 */
 +        "(Accton\0" /* 1 refs @ 22998 */
 +        "EN5038)\0" /* 1 refs @ 23006 */
 +        "Imagine-128\0" /* 2 refs @ 23014 */
 +        "RIVA\0" /* 4 refs @ 23026 */
 +        "TNT\0" /* 1 refs @ 23031 */
 +        "TNT2\0" /* 4 refs @ 23035 */
 +        "Vanta\0" /* 1 refs @ 23040 */
 +        "Model\0" /* 1 refs @ 23046 */
 +        "64\0" /* 1 refs @ 23052 */
 +        "MCP04\0" /* 7 refs @ 23055 */
 +        "GeForce\0" /* 40 refs @ 23061 */
 +        "6800\0" /* 4 refs @ 23069 */
 +        "GT\0" /* 4 refs @ 23074 */
 +        "nForce4\0" /* 14 refs @ 23077 */
 +        "ATA133\0" /* 13 refs @ 23085 */
 +        "nForce2\0" /* 27 refs @ 23092 */
 +        "MCP-T\0" /* 4 refs @ 23100 */
 +        "400\0" /* 10 refs @ 23106 */
 +        "Aladdin\0" /* 1 refs @ 23110 */
 +        "nForce3\0" /* 23 refs @ 23118 */
 +        "250\0" /* 12 refs @ 23126 */
 +        "Quadro\0" /* 13 refs @ 23130 */
 +        "FX\0" /* 23 refs @ 23137 */
 +        "Quadro4\0" /* 11 refs @ 23140 */
 +        "280\0" /* 2 refs @ 23148 */
 +        "NVS\0" /* 3 refs @ 23152 */
 +        "1300\0" /* 1 refs @ 23156 */
 +        "PCX\0" /* 1 refs @ 23161 */
 +        "4300\0" /* 1 refs @ 23165 */
 +        "256\0" /* 1 refs @ 23170 */
 +        "GeForce2\0" /* 7 refs @ 23174 */
 +        "MX\0" /* 10 refs @ 23183 */
 +        "100/200\0" /* 1 refs @ 23186 */
 +        "Go\0" /* 5 refs @ 23194 */
 +        "Quadro2\0" /* 2 refs @ 23197 */
 +        "MXR/EX\0" /* 1 refs @ 23205 */
 +        "6600\0" /* 5 refs @ 23212 */
 +        "6610\0" /* 1 refs @ 23217 */
 +        "5500\0" /* 1 refs @ 23222 */
 +        "540\0" /* 2 refs @ 23227 */
 +        "GTS\0" /* 4 refs @ 23231 */
 +        "(DDR)\0" /* 1 refs @ 23235 */
 +        "6200TC\0" /* 1 refs @ 23241 */
 +        "6200LE\0" /* 1 refs @ 23248 */
 +        "GeForce4\0" /* 15 refs @ 23255 */
 +        "460\0" /* 1 refs @ 23264 */
 +        "440\0" /* 4 refs @ 23268 */
 +        "420\0" /* 2 refs @ 23272 */
 +        "SE\0" /* 4 refs @ 23276 */
 +        "500XGL\0" /* 1 refs @ 23279 */
 +        "200/400NVS\0" /* 1 refs @ 23286 */
 +        "(AGP8X)\0" /* 4 refs @ 23297 */
 +        "580\0" /* 1 refs @ 23305 */
 +        "XGL\0" /* 4 refs @ 23309 */
 +        "380\0" /* 1 refs @ 23313 */
 +        "4600\0" /* 2 refs @ 23317 */
 +        "nForce\0" /* 153 refs @ 23322 */
 +        "MCP\0" /* 1 refs @ 23329 */
 +        "Xbox\0" /* 3 refs @ 23333 */
 +        "ATA100\0" /* 1 refs @ 23338 */
 +        "7300\0" /* 1 refs @ 23345 */
 +        "GeForce3\0" /* 3 refs @ 23350 */
 +        "Ti\0" /* 10 refs @ 23359 */
 +        "500\0" /* 2 refs @ 23362 */
 +        "DCC\0" /* 1 refs @ 23366 */
 +        "6150\0" /* 2 refs @ 23370 */
 +        "4400\0" /* 1 refs @ 23375 */
 +        "4200\0" /* 3 refs @ 23380 */
 +        "900XGL\0" /* 1 refs @ 23385 */
 +        "750XGL\0" /* 1 refs @ 23392 */
 +        "700XGL\0" /* 1 refs @ 23399 */
 +        "nForce430\0" /* 14 refs @ 23406 */
 +        "C51\0" /* 18 refs @ 23416 */
 +        "4800\0" /* 2 refs @ 23420 */
 +        "8x\0" /* 1 refs @ 23425 */
 +        "980\0" /* 1 refs @ 23428 */
 +        "780\0" /* 1 refs @ 23432 */
 +        "1500\0" /* 1 refs @ 23436 */
 +        "Frame\0" /* 1 refs @ 23441 */
 +        "Buffer\0" /* 1 refs @ 23447 */
 +        "(0x02f0)\0" /* 1 refs @ 23454 */
 +        "(0x02f1)\0" /* 1 refs @ 23463 */
 +       "(0x02f2)\0" /* 1 refs @ 23472 */
 +        "(0x02f3)\0" /* 1 refs @ 23481 */
 +        "(0x02f4)\0" /* 1 refs @ 23490 */
 +        "(0x02f5)\0" /* 1 refs @ 23499 */
 +        "(0x02f6)\0" /* 1 refs @ 23508 */
 +        "(0x02f7)\0" /* 1 refs @ 23517 */
 +        "(0x02fb)\0" /* 1 refs @ 23526 */
 +        "(0x02fc)\0" /* 1 refs @ 23535 */
 +        "(0x02fd)\0" /* 1 refs @ 23544 */
 +        "(0x02ff)\0" /* 1 refs @ 23553 */
 +        "5800\0" /* 2 refs @ 23562 */
 +        "5200\0" /* 2 refs @ 23567 */
 +        "5200SE\0" /* 1 refs @ 23572 */
 +        "5900\0" /* 2 refs @ 23579 */
 +        "5900XT\0" /* 1 refs @ 23584 */
 +        "5950\0" /* 1 refs @ 23591 */
 +        "5700\0" /* 1 refs @ 23596 */
 +        "MCP55\0" /* 17 refs @ 23601 */
 +        "16x\0" /* 2 refs @ 23607 */
 +        "7600\0" /* 1 refs @ 23611 */
 +        "MCP61\0" /* 20 refs @ 23616 */
 +        "8600\0" /* 2 refs @ 23622 */
 +        "8400M\0" /* 1 refs @ 23627 */
 +        "GS\0" /* 2 refs @ 23633 */
 +        "140M\0" /* 1 refs @ 23636 */
 +        "MCP65\0" /* 31 refs @ 23641 */
 +        "PCI-LPC\0" /* 7 refs @ 23647 */
 +        "MCP67\0" /* 20 refs @ 23655 */
 +        "MCP73\0" /* 20 refs @ 23661 */
 +        "8400\0" /* 1 refs @ 23667 */
 +        "MCP77\0" /* 21 refs @ 23672 */
 +        "MCP78S\0" /* 1 refs @ 23678 */
 +        "210\0" /* 1 refs @ 23685 */
 +        "MCP79\0" /* 17 refs @ 23689 */
 +        "GTX\0" /* 1 refs @ 23695 */
 +        "550\0" /* 2 refs @ 23699 */
 +        "Riva\0" /* 1 refs @ 23703 */
 +        "OTI107\0" /* 1 refs @ 23708 */
 +        "OC-3136/3137\0" /* 1 refs @ 23715 */
 +        "Token-Ring\0" /* 2 refs @ 23728 */
 +        "OC-3139f\0" /* 1 refs @ 23739 */
 +        "Fastload\0" /* 1 refs @ 23748 */
 +        "OC-3139/3140\0" /* 1 refs @ 23757 */
 +        "RapidFire\0" /* 5 refs @ 23770 */
 +        "OC-3250\0" /* 1 refs @ 23780 */
 +        "GoCard\0" /* 1 refs @ 23788 */
 +        "OC-3530\0" /* 1 refs @ 23795 */
 +        "OC-3141\0" /* 1 refs @ 23803 */
 +        "OC-3540\0" /* 1 refs @ 23811 */
 +        "HSTR\0" /* 1 refs @ 23819 */
 +        "100/16/4\0" /* 1 refs @ 23824 */
 +        "OC-3150\0" /* 1 refs @ 23833 */
 +        "OC-2805\0" /* 1 refs @ 23841 */
 +        "OC-2325\0" /* 1 refs @ 23849 */
 +        "OC-2183/2185\0" /* 1 refs @ 23857 */
 +        "OC-2326\0" /* 1 refs @ 23870 */
 +        "10/100-TX\0" /* 1 refs @ 23878 */
 +        "OC-2327/2350\0" /* 1 refs @ 23888 */
 +        "OC-6151/6152\0" /* 1 refs @ 23901 */
 +        "82C557\0" /* 1 refs @ 23914 */
 +        "82C558\0" /* 1 refs @ 23921 */
 +        "82C568\0" /* 1 refs @ 23928 */
 +        "82D568\0" /* 1 refs @ 23935 */
 +        "82C621\0" /* 1 refs @ 23942 */
 +        "82C822\0" /* 1 refs @ 23949 */
 +        "82C861\0" /* 1 refs @ 23956 */
 +        "82C700\0" /* 1 refs @ 23963 */
 +        "82C701\0" /* 1 refs @ 23970 */
 +        "011H\0" /* 1 refs @ 23977 */
 +        "OX16PCI954\0" /* 2 refs @ 23982 */
 +        "OX16PCI954K\0" /* 1 refs @ 23993 */
 +        "Exsys\0" /* 2 refs @ 24005 */
 +        "EX-41092\0" /* 1 refs @ 24011 */
 +        "OXCB950\0" /* 1 refs @ 24020 */
 +        "OXmPCI954\0" /* 2 refs @ 24028 */
 +        "Disabled\0" /* 1 refs @ 24038 */
 +        "EX-41098\0" /* 1 refs @ 24047 */
 +        "OX16PCI952\0" /* 2 refs @ 24056 */
 +        "OX16PCI958\0" /* 1 refs @ 24067 */
 +        "OXPCIe952\0" /* 1 refs @ 24078 */
 +        "HD-2000\0" /* 1 refs @ 24088 */
 +        "HDTV\0" /* 2 refs @ 24096 */
 +        "HD-5500\0" /* 1 refs @ 24101 */
 +        "RZ1000\0" /* 1 refs @ 24109 */
 +        "PCAN\0" /* 1 refs @ 24116 */
 +       "P17C9X110\0" /* 1 refs @ 24121 */
 +        "P17C9X\0" /* 1 refs @ 24131 */
 +        "P1000\0" /* 1 refs @ 24138 */
 +        "FNW-3603-TX\0" /* 1 refs @ 24144 */
 +        "FNW-3800-TX\0" /* 1 refs @ 24156 */
 +        "VScom\0" /* 3 refs @ 24168 */
 +        "PCI-400\0" /* 1 refs @ 24174 */
 +        "PCI-800\0" /* 1 refs @ 24182 */
 +        "PCI-200\0" /* 1 refs @ 24190 */
 +        "9030\0" /* 1 refs @ 24198 */
 +        "Accelrator\0" /* 2 refs @ 24203 */
 +        "9050\0" /* 1 refs @ 24214 */
 +        "9054\0" /* 1 refs @ 24219 */
 +        "9060ES\0" /* 1 refs @ 24224 */
 +        "9656\0" /* 2 refs @ 24231 */
 +        "FPBGA\0" /* 1 refs @ 24236 */
 +        "PowerTop\0" /* 1 refs @ 24242 */
 +        "PowerPro\0" /* 1 refs @ 24251 */
 +        "PDC20265\0" /* 1 refs @ 24260 */
 +        "Ultra/66\0" /* 3 refs @ 24269 */
 +        "PDC20263\0" /* 1 refs @ 24278 */
 +        "PDC20275\0" /* 1 refs @ 24287 */
 +        "Ultra/133\0" /* 10 refs @ 24296 */
 +        "PDC20318\0" /* 1 refs @ 24306 */
 +        "PDC20319\0" /* 1 refs @ 24315 */
 +        "PDC20371\0" /* 1 refs @ 24324 */
 +        "PDC20379\0" /* 1 refs @ 24333 */
 +        "PDC20378\0" /* 1 refs @ 24342 */
 +        "PDC20375\0" /* 1 refs @ 24351 */
 +        "PDC20376\0" /* 1 refs @ 24360 */
 +        "PDC20377\0" /* 1 refs @ 24369 */
 +        "PDC40719\0" /* 1 refs @ 24378 */
 +        "PDC40519\0" /* 1 refs @ 24387 */
 +        "PDC20771\0" /* 1 refs @ 24396 */
 +        "PDC20571\0" /* 1 refs @ 24405 */
 +        "PDC20579\0" /* 1 refs @ 24414 */
 +        "PDC40779\0" /* 1 refs @ 24423 */
 +        "PDC40718\0" /* 1 refs @ 24432 */
 +        "PDC40518\0" /* 1 refs @ 24441 */
 +        "PDC20775\0" /* 1 refs @ 24450 */
 +        "PDC20575\0" /* 1 refs @ 24459 */
 +        "PDC20267\0" /* 1 refs @ 24468 */
 +        "Ultra/100\0" /* 3 refs @ 24477 */
 +        "PDC20246\0" /* 1 refs @ 24487 */
 +        "Ultra/33\0" /* 1 refs @ 24496 */
 +        "PDC20262\0" /* 1 refs @ 24505 */
 +        "PDC20268\0" /* 1 refs @ 24514 */
 +        "PDC20269\0" /* 1 refs @ 24523 */
 +        "PDC20276\0" /* 1 refs @ 24532 */
 +        "DC5030\0" /* 1 refs @ 24541 */
 +        "PDC20270\0" /* 1 refs @ 24548 */
 +        "PDC20271\0" /* 1 refs @ 24557 */
 +        "PDC20617\0" /* 1 refs @ 24566 */
 +        "PDC20620\0" /* 1 refs @ 24575 */
 +        "PDC20621\0" /* 1 refs @ 24584 */
 +        "PDC20618\0" /* 1 refs @ 24593 */
 +        "Controler\0" /* 1 refs @ 24602 */
 +        "PDC20619\0" /* 1 refs @ 24612 */
 +        "PDC20277\0" /* 1 refs @ 24621 */
 +        "CH352\0" /* 1 refs @ 24630 */
 +        "CH353\0" /* 1 refs @ 24636 */
 +        "QLA200\0" /* 1 refs @ 24642 */
 +        "ISP1020\0" /* 1 refs @ 24649 */
 +        "ISP1022\0" /* 1 refs @ 24657 */
 +        "ISP1080\0" /* 1 refs @ 24665 */
 +        "ISP1240\0" /* 1 refs @ 24673 */
 +        "ISP1280\0" /* 1 refs @ 24681 */
 +        "ISP2100\0" /* 1 refs @ 24689 */
 +        "ISP4022\0" /* 2 refs @ 24697 */
 +        "TOE\0" /* 2 refs @ 24705 */
 +        "PWDOG1\0" /* 1 refs @ 24709 */
 +        "8580\0" /* 1 refs @ 24716 */
 +        "Virtio\0" /* 64 refs @ 24721 */
 +        "CryptoSwift\0" /* 1 refs @ 24728 */
 +        "PKI\0" /* 1 refs @ 24740 */
 +        "RT2460A\0" /* 1 refs @ 24744 */
 +        "RT2560\0" /* 1 refs @ 24752 */
 +        "802.11b/g\0" /* 4 refs @ 24759 */
 +        "RT2561S\0" /* 1 refs @ 24769 */
 +        "RT2561\0" /* 1 refs @ 24777 */
 +        "RT2661\0" /* 1 refs @ 24784 */
 +        "RT3090\0" /* 1 refs @ 24791 */
 +        "REX\0" /* 1 refs @ 24798 */
 +        "PCI-31/33\0" /* 1 refs @ 24802 */
 +       "R6040\0" /* 1 refs @ 24812 */
 +        "8029\0" /* 1 refs @ 24818 */
 +        "8139D\0" /* 1 refs @ 24823 */
 +        "8100\0" /* 1 refs @ 24829 */
 +        "8129\0" /* 1 refs @ 24834 */
 +        "8100E/8101E/8102E\0" /* 1 refs @ 24839 */
 +        "8138\0" /* 1 refs @ 24857 */
 +        "8169SC/8110SC\0" /* 1 refs @ 24862 */
 +        "8168/8111\0" /* 1 refs @ 24876 */
 +        "8169/8110\0" /* 1 refs @ 24886 */
 +        "RTL8188CE\0" /* 1 refs @ 24896 */
 +        "802.11n\0" /* 1 refs @ 24906 */
 +        "8180\0" /* 1 refs @ 24914 */
 +        "8185\0" /* 1 refs @ 24919 */
 +        "802.11a/b/g\0" /* 1 refs @ 24924 */
 +        "SH7780\0" /* 1 refs @ 24936 */
 +        "SH7785\0" /* 1 refs @ 24943 */
 +        "5C465\0" /* 1 refs @ 24950 */
 +        "5C466\0" /* 1 refs @ 24956 */
 +        "5C475\0" /* 1 refs @ 24962 */
 +        "5C476\0" /* 1 refs @ 24968 */
 +        "5C477\0" /* 1 refs @ 24974 */
 +        "5C478\0" /* 1 refs @ 24980 */
 +        "5C551\0" /* 1 refs @ 24986 */
 +        "Bridge/Firewire\0" /* 2 refs @ 24992 */
 +        "5C552\0" /* 1 refs @ 25008 */
 +        "5C592\0" /* 1 refs @ 25014 */
 +        "Bridge/MS/SD/Firewire\0" /* 2 refs @ 25020 */
 +        "5C593\0" /* 1 refs @ 25042 */
 +        "5C821\0" /* 1 refs @ 25048 */
 +        "Bridge/MS/SD/MMC/SC\0" /* 2 refs @ 25054 */
 +        "5C822\0" /* 1 refs @ 25074 */
 +        "5C832\0" /* 1 refs @ 25080 */
 +        "PCI-SD/MMC/MMC+/MS/xD/Firewire\0" /* 1 refs @ 25086 */
 +        "5C843\0" /* 1 refs @ 25117 */
 +        "Bridge/SD/MMC/MMC+/MS/xD/Firewire\0" /* 2 refs @ 25123 */
 +        "5C847\0" /* 1 refs @ 25157 */
 +        "xD-Picture\0" /* 1 refs @ 25163 */
 +        "5C853\0" /* 1 refs @ 25174 */
 +        "Bridge/SD/MMC/MMC+/MS/xD/SC/Firewire\0" /* 1 refs @ 25180 */
 +        "5U230\0" /* 1 refs @ 25217 */
 +        "FireWire/SD/MMC/xD/MS\0" /* 1 refs @ 25223 */
 +        "5U822\0" /* 1 refs @ 25245 */
 +        "5U823\0" /* 1 refs @ 25251 */
 +        "5U832\0" /* 1 refs @ 25257 */
 +        "5C852\0" /* 1 refs @ 25263 */
 +        "N2\0" /* 1 refs @ 25269 */
 +        "2200\0" /* 1 refs @ 25272 */
 +        "FDDI\0" /* 1 refs @ 25277 */
 +        "Xframe\0" /* 1 refs @ 25282 */
 +        "Xframe2\0" /* 1 refs @ 25289 */
 +        "Xframe3\0" /* 1 refs @ 25297 */
 +        "ViRGE\0" /* 1 refs @ 25305 */
 +        "Trio32\0" /* 1 refs @ 25311 */
 +        "Trio32/64\0" /* 1 refs @ 25318 */
 +        "Aurora64V+\0" /* 1 refs @ 25328 */
 +        "Trio64UV+\0" /* 1 refs @ 25339 */
 +        "ViRGE/VX\0" /* 1 refs @ 25349 */
 +        "868\0" /* 1 refs @ 25358 */
 +        "86C928\0" /* 1 refs @ 25362 */
 +        "86C864-0\0" /* 1 refs @ 25369 */
 +        "(\"Vision864\")\0" /* 4 refs @ 25378 */
 +        "86C864-1\0" /* 1 refs @ 25392 */
 +        "86C864-2\0" /* 1 refs @ 25401 */
 +        "86C864-3\0" /* 1 refs @ 25410 */
 +        "86C964-0\0" /* 1 refs @ 25419 */
 +        "(\"Vision964\")\0" /* 4 refs @ 25428 */
 +        "86C964-1\0" /* 1 refs @ 25442 */
 +        "86C964-2\0" /* 1 refs @ 25451 */
 +        "86C964-3\0" /* 1 refs @ 25460 */
 +        "86C968-0\0" /* 1 refs @ 25469 */
 +        "(\"Vision968\")\0" /* 4 refs @ 25478 */
 +        "86C968-1\0" /* 1 refs @ 25492 */
 +        "86C968-2\0" /* 1 refs @ 25501 */
 +        "86C968-3\0" /* 1 refs @ 25510 */
 +        "Trio64V2/DX\0" /* 1 refs @ 25519 */
 +        "Plato/PX\0" /* 1 refs @ 25531 */
 +        "86C365\0" /* 1 refs @ 25540 */
 +        "Trio3D\0" /* 1 refs @ 25547 */
 +        "ViRGE/DX\0" /* 1 refs @ 25554 */
 +        "ViRGE/GX2\0" /* 1 refs @ 25563 */
 +        "Trio3D/2X\0" /* 1 refs @ 25573 */
 +        "Savage3D\0" /* 1 refs @ 25583 */
 +        "Savage3D+MV\0" /* 1 refs @ 25592 */
 +        "Savage4\0" /* 1 refs @ 25604 */
 +        "ProSavage\0" /* 1 refs @ 25612 */
 +        "KM133\0" /* 1 refs @ 25622 */
 +        "ViRGE/MX\0" /* 1 refs @ 25628 */
 +        "ViRGE/MXP\0" /* 1 refs @ 25637 */
 +        "Savage/MX+MV\0" /* 1 refs @ 25647 */
 +        "Savage/MX\0" /* 1 refs @ 25660 */
 +        "Savage/IX+MV\0" /* 1 refs @ 25670 */
 +        "Savage/IX\0" /* 1 refs @ 25683 */
 +        "Savage/IXC\0" /* 1 refs @ 25693 */
 +        "Savage2000\0" /* 1 refs @ 25704 */
 +        "SonicVibes\0" /* 1 refs @ 25715 */
 +        "SafeXcel\0" /* 1 refs @ 25726 */
 +        "KS8920\0" /* 1 refs @ 25735 */
 +        "QE1000\0" /* 1 refs @ 25742 */
 +        "FE1000\0" /* 1 refs @ 25749 */
 +        "Broadband\0" /* 1 refs @ 25756 */
 +        "CNB20-LE\0" /* 2 refs @ 25766 */
 +        "PCI/AGP\0" /* 6 refs @ 25775 */
 +        "CNB30-LE\0" /* 1 refs @ 25783 */
 +        "CNB20-HE\0" /* 3 refs @ 25792 */
 +        "CIOB-X\0" /* 1 refs @ 25801 */
 +        "CMIC-HE\0" /* 1 refs @ 25808 */
 +        "CNB30-HE\0" /* 1 refs @ 25816 */
 +        "CMIC-LE\0" /* 1 refs @ 25825 */
 +        "CMIC-SL\0" /* 1 refs @ 25833 */
 +        "HT1000\0" /* 6 refs @ 25841 */
 +        "CIOB-X2\0" /* 1 refs @ 25848 */
 +        "BCM5714/BCM5715\0" /* 1 refs @ 25856 */
 +        "Integral\0" /* 1 refs @ 25872 */
 +        "CIOB-E\0" /* 1 refs @ 25881 */
 +        "HT2100\0" /* 4 refs @ 25888 */
 +        "OSB4\0" /* 2 refs @ 25895 */
 +        "CSB5\0" /* 3 refs @ 25900 */
 +        "CSB6\0" /* 5 refs @ 25905 */
 +        "HT1000SB\0" /* 1 refs @ 25910 */
 +        "HT-1000\0" /* 3 refs @ 25919 */
 +        "IDE/RAID\0" /* 2 refs @ 25927 */
 +        "OSB4/CSB5\0" /* 1 refs @ 25936 */
 +        "ISA/LPC\0" /* 2 refs @ 25946 */
 +        "XIOAPIC\0" /* 1 refs @ 25954 */
 +        "Frodo4\0" /* 1 refs @ 25962 */
 +        "Frodo8\0" /* 1 refs @ 25969 */
 +        "IOC3\0" /* 1 refs @ 25976 */
 +        "PsiTech\0" /* 1 refs @ 25981 */
 +        "RAD1\0" /* 1 refs @ 25989 */
 +        "Tigon\0" /* 1 refs @ 25994 */
 +        "STG\0" /* 2 refs @ 26000 */
 +        "2000X\0" /* 1 refs @ 26004 */
 +        "1764X\0" /* 1 refs @ 26010 */
 +       "BCM1250\0" /* 2 refs @ 26016 */
 +        "LDT\0" /* 1 refs @ 26024 */
 +        "REALmagic\0" /* 1 refs @ 26028 */
 +        "Hollywood-Plus\0" /* 1 refs @ 26038 */
 +        "MPEG-2\0" /* 1 refs @ 26053 */
 +        "Cyber10x\0" /* 17 refs @ 26060 */
 +        "16550\0" /* 13 refs @ 26069 */
 +        "16650\0" /* 12 refs @ 26075 */
 +        "16850\0" /* 12 refs @ 26081 */
 +        "2S1P\0" /* 6 refs @ 26087 */
 +        "4S\0" /* 7 refs @ 26092 */
 +        "Cyber20x\0" /* 20 refs @ 26095 */
 +        "2P1S\0" /* 3 refs @ 26104 */
 +        "8000\0" /* 3 refs @ 26109 */
 +        "86C201\0" /* 1 refs @ 26114 */
 +        "86C202\0" /* 1 refs @ 26121 */
 +        "86C205\0" /* 1 refs @ 26128 */
 +        "85C503\0" /* 1 refs @ 26135 */
 +        "or\0" /* 1 refs @ 26142 */
 +        "5597/5598\0" /* 5 refs @ 26145 */
 +        "600\0" /* 1 refs @ 26155 */
 +        "Mngmt\0" /* 1 refs @ 26159 */
 +        "180\0" /* 1 refs @ 26165 */
 +        "181\0" /* 1 refs @ 26169 */
 +        "182\0" /* 1 refs @ 26173 */
 +        "183\0" /* 1 refs @ 26177 */
 +        "190\0" /* 1 refs @ 26181 */
 +        "191\0" /* 1 refs @ 26185 */
 +        "300/305\0" /* 1 refs @ 26189 */
 +        "315\0" /* 1 refs @ 26197 */
 +        "85C501\0" /* 1 refs @ 26201 */
 +        "85C496\0" /* 1 refs @ 26208 */
 +        "530\0" /* 2 refs @ 26215 */
 +        "85C601\0" /* 1 refs @ 26219 */
 +        "620\0" /* 1 refs @ 26226 */
 +        "630\0" /* 1 refs @ 26230 */
 +        "633\0" /* 1 refs @ 26234 */
 +        "635\0" /* 1 refs @ 26238 */
 +        "640\0" /* 1 refs @ 26242 */
 +        "645\0" /* 1 refs @ 26246 */
 +        "646\0" /* 1 refs @ 26250 */
 +        "648\0" /* 1 refs @ 26254 */
 +        "650\0" /* 1 refs @ 26258 */
 +        "651\0" /* 1 refs @ 26262 */
 +        "652\0" /* 1 refs @ 26266 */
 +        "655\0" /* 1 refs @ 26270 */
 +        "658\0" /* 1 refs @ 26274 */
 +        "661\0" /* 1 refs @ 26278 */
 +        "671\0" /* 1 refs @ 26282 */
 +        "730\0" /* 1 refs @ 26286 */
 +        "733\0" /* 1 refs @ 26290 */
 +        "735\0" /* 1 refs @ 26294 */
 +        "740\0" /* 2 refs @ 26298 */
 +        "741\0" /* 1 refs @ 26302 */
 +        "745\0" /* 1 refs @ 26306 */
 +        "746\0" /* 1 refs @ 26310 */
 +        "748\0" /* 1 refs @ 26314 */
 +        "750\0" /* 1 refs @ 26318 */
 +        "751\0" /* 1 refs @ 26322 */
 +        "752\0" /* 1 refs @ 26326 */
 +        "755\0" /* 1 refs @ 26330 */
 +        "756\0" /* 1 refs @ 26334 */
 +        "760\0" /* 1 refs @ 26338 */
 +        "761\0" /* 1 refs @ 26342 */
 +        "900\0" /* 1 refs @ 26346 */
 +        "961\0" /* 1 refs @ 26350 */
 +        "962\0" /* 1 refs @ 26354 */
 +        "963\0" /* 1 refs @ 26358 */
 +        "964\0" /* 1 refs @ 26362 */
 +        "965\0" /* 1 refs @ 26366 */
 +        "966\0" /* 1 refs @ 26370 */
 +        "968\0" /* 1 refs @ 26374 */
 +        "GUI\0" /* 1 refs @ 26378 */
 +        "Accelerator+3D\0" /* 1 refs @ 26382 */
 +        "6325\0" /* 1 refs @ 26397 */
 +        "6326\0" /* 1 refs @ 26402 */
 +        "7002\0" /* 1 refs @ 26407 */
 +        "7012\0" /* 1 refs @ 26412 */
 +        "7016\0" /* 1 refs @ 26417 */
 +        "7018\0" /* 1 refs @ 26422 */
 +        "7502\0" /* 1 refs @ 26427 */
 +        "audio\0" /* 1 refs @ 26432 */
 +        "Voyager\0" /* 1 refs @ 26438 */
 +        "LynxEM\0" /* 1 refs @ 26446 */
 +        "LynxEM+\0" /* 1 refs @ 26453 */
 +        "Lynx3DM\0" /* 1 refs @ 26461 */
 +        "LynxE\0" /* 2 refs @ 26469 */
 +        "Lynx3D\0" /* 1 refs @ 26475 */
 +        "Lynx\0" /* 1 refs @ 26482 */
 +        "FDC37C665\0" /* 1 refs @ 26487 */
 +        "FDC37C922\0" /* 1 refs @ 26497 */
 +        "83C170\0" /* 1 refs @ 26507 */
 +        "(\"EPIC/100\")\0" /* 2 refs @ 26514 */
 +        "83C175\0" /* 1 refs @ 26527 */
 +        "SNP8023:\0" /* 2 refs @ 26534 */
 +        "971\0" /* 1 refs @ 26543 */
 +        "Classifier\0" /* 2 refs @ 26547 */
 +        "PAX.ware\0" /* 1 refs @ 26558 */
 +        "Gb\0" /* 1 refs @ 26567 */
 +        "CXD1947A\0" /* 1 refs @ 26570 */
 +        "CXD3222\0" /* 1 refs @ 26579 */
 +        "PCIO\0" /* 3 refs @ 26587 */
 +        "Ebus2\0" /* 2 refs @ 26592 */
 +        "Happy\0" /* 1 refs @ 26598 */
 +        "Meal\0" /* 1 refs @ 26604 */
 +        "(US\0" /* 1 refs @ 26609 */
 +        "III)\0" /* 3 refs @ 26613 */
 +        "ERI\0" /* 1 refs @ 26618 */
 +        "GEM\0" /* 1 refs @ 26622 */
 +        "Simba\0" /* 1 refs @ 26626 */
 +        "BCM5821\0" /* 1 refs @ 26632 */
 +        "psycho\0" /* 1 refs @ 26640 */
 +        "microSPARC\0" /* 1 refs @ 26647 */
 +        "IIep\0" /* 1 refs @ 26658 */
 +        "UltraSPARC\0" /* 2 refs @ 26663 */
 +        "IIi\0" /* 1 refs @ 26674 */
 +        "Cassini\0" /* 1 refs @ 26678 */
 +        "IP100A\0" /* 1 refs @ 26686 */
 +        "ST201\0" /* 1 refs @ 26693 */
 +        "ST1023\0" /* 1 refs @ 26699 */
 +        "ST2021\0" /* 1 refs @ 26706 */
 +        "Matrix\0" /* 1 refs @ 26713 */
 +        "adapter\0" /* 1 refs @ 26720 */
 +        "SER5xxx\0" /* 1 refs @ 26728 */
 +        "multiport\0" /* 3 refs @ 26736 */
 +        "PCI2S550\0" /* 1 refs @ 26746 */
 +        "SUN1888\0" /* 1 refs @ 26755 */
 +        "parallel\0" /* 1 refs @ 26763 */
 +        "NE-34\0" /* 1 refs @ 26772 */
 +        "4S2P\0" /* 1 refs @ 26778 */
 +        "82C101\0" /* 2 refs @ 26783 */
 +        "82C103\0" /* 1 refs @ 26790 */
 +        "82C105\0" /* 1 refs @ 26797 */
 +        "83C553\0" /* 1 refs @ 26804 */
 +        "SB16C1054\0" /* 1 refs @ 26811 */
 +        "UARTs\0" /* 2 refs @ 26821 */
 +        "SB16C1058\0" /* 1 refs @ 26827 */
 +        "FDDI-xP\0" /* 1 refs @ 26837 */
 +        "GE\0" /* 1 refs @ 26845 */
 +        "SK-9821\0" /* 1 refs @ 26848 */
 +        "SK-9DX1\0" /* 1 refs @ 26856 */
 +        "SK-9D21\0" /* 1 refs @ 26864 */
 +        "1000BASE-T\0" /* 1 refs @ 26872 */
 +        "SK-9D41\0" /* 1 refs @ 26883 */
 +        "1000BASE-X\0" /* 1 refs @ 26891 */
 +        "SK-9Sxx\0" /* 1 refs @ 26902 */
 +        "SK-9E21D/SK-9E22\0" /* 1 refs @ 26910 */
 +        "1000base-T\0" /* 1 refs @ 26927 */
 +        "TC9021\0" /* 2 refs @ 26938 */
 +        "(alt\0" /* 1 refs @ 26945 */
 +        "ServerNet\0" /* 1 refs @ 26950 */
 +        "DC-290(M)\0" /* 1 refs @ 26960 */
 +        "DC-690C\0" /* 1 refs @ 26970 */
 +        "DC-315/DC-395\0" /* 1 refs @ 26978 */
 +        "TLAN\0" /* 1 refs @ 26992 */
 +        "TVP4020\0" /* 1 refs @ 26997 */
 +        "TSB12LV21\0" /* 1 refs @ 27005 */
 +        "TSB12LV22\0" /* 1 refs @ 27015 */
 +        "PCI4450\0" /* 2 refs @ 27025 */
 +        "PCI4410\0" /* 2 refs @ 27033 */
 +        "TSB12LV23\0" /* 1 refs @ 27041 */
 +        "TSB12LV26\0" /* 1 refs @ 27051 */
 +        "TSB43AA22\0" /* 1 refs @ 27061 */
 +        "TSB43AA22/A\0" /* 1 refs @ 27071 */
 +        "TSB43AA23\0" /* 1 refs @ 27083 */
 +        "TSB43AA21\0" /* 1 refs @ 27093 */
 +        "PCI4451\0" /* 2 refs @ 27103 */
 +        "PCI4510\0" /* 2 refs @ 27111 */
 +        "PCI4520\0" /* 2 refs @ 27119 */
 +        "PCI7[4-6]10\0" /* 1 refs @ 27127 */
 +        "PCI7x21/7x11\0" /* 5 refs @ 27139 */
 +        "Cardbus\0" /* 4 refs @ 27152 */
 +        "FlashMedia\0" /* 2 refs @ 27160 */
 +        "SM\0" /* 1 refs @ 27171 */
 +        "PCI6515A\0" /* 2 refs @ 27174 */
 +        "(Smart\0" /* 2 refs @ 27183 */
 +        "PCIXX12\0" /* 5 refs @ 27190 */
 +        "Secure\0" /* 2 refs @ 27198 */
 +        "ACX100A\0" /* 1 refs @ 27205 */
 +        "ACX100B\0" /* 1 refs @ 27213 */
 +        "ACX111\0" /* 1 refs @ 27221 */
 +        "PCI1130\0" /* 1 refs @ 27228 */
 +        "PCI1031\0" /* 1 refs @ 27236 */
 +        "PCI1131\0" /* 1 refs @ 27244 */
 +        "PCI1250\0" /* 1 refs @ 27252 */
 +        "PCI1220\0" /* 1 refs @ 27260 */
 +        "PCI1221\0" /* 1 refs @ 27268 */
 +        "PCI1210\0" /* 1 refs @ 27276 */
 +        "PCI1450\0" /* 1 refs @ 27284 */
 +        "PCI1225\0" /* 1 refs @ 27292 */
 +        "PCI1251\0" /* 1 refs @ 27300 */
 +        "PCI1211\0" /* 1 refs @ 27308 */
 +        "PCI1251B\0" /* 1 refs @ 27316 */
 +        "PCI2030\0" /* 1 refs @ 27325 */
 +        "PCI2050\0" /* 1 refs @ 27333 */
 +        "PCI7510\0" /* 1 refs @ 27341 */
 +        "PCI7610\0" /* 2 refs @ 27349 */
 +        "PCI7410\0" /* 1 refs @ 27357 */
 +        "Mode)\0" /* 3 refs @ 27365 */
 +        "PCI7[46]10\0" /* 2 refs @ 27371 */
 +        "(SD/MMC\0" /* 1 refs @ 27382 */
 +        "(Memory\0" /* 1 refs @ 27390 */
 +        "PCI1410\0" /* 1 refs @ 27398 */
 +        "PCI1420\0" /* 1 refs @ 27406 */
 +        "PCI1451\0" /* 1 refs @ 27414 */
 +        "PCI1421\0" /* 1 refs @ 27422 */
 +        "PCI1620\0" /* 1 refs @ 27430 */
 +        "PCI1520\0" /* 1 refs @ 27438 */
 +        "PCI1510\0" /* 1 refs @ 27446 */
 +        "PCI1530\0" /* 1 refs @ 27454 */
 +        "PCI1515\0" /* 1 refs @ 27462 */
 +        "PCI2040\0" /* 1 refs @ 27470 */
 +        "PCI-DSP\0" /* 1 refs @ 27478 */
 +        "PCI7420\0" /* 1 refs @ 27486 */
 +        "PCI-Cardbus\0" /* 1 refs @ 27494 */
 +        "PCI-010L\0" /* 1 refs @ 27506 */
 +        "PCI-100L\0" /* 1 refs @ 27515 */
 +        "PCI-110L\0" /* 1 refs @ 27524 */
 +        "PCI-200L\0" /* 1 refs @ 27533 */
 +        "PCI-210L\0" /* 1 refs @ 27542 */
 +        "PCI-200Li\0" /* 1 refs @ 27551 */
 +        "PCI-400L\0" /* 1 refs @ 27561 */
 +        "PCI-800L\0" /* 1 refs @ 27570 */
 +        "PCI-011H\0" /* 1 refs @ 27579 */
 +        "PCI-x10H\0" /* 1 refs @ 27588 */
 +        "PCI-100H\0" /* 1 refs @ 27597 */
 +        "PCI-800H\0" /* 1 refs @ 27606 */
 +        "PCI-800H_1\0" /* 1 refs @ 27615 */
 +        "PCI-200H\0" /* 1 refs @ 27626 */
 +        "PCI-010HV2\0" /* 1 refs @ 27635 */
 +        "PCI-200HV2\0" /* 1 refs @ 27646 */
 +        "R4x00\0" /* 1 refs @ 27657 */
 +        "TC35856F\0" /* 1 refs @ 27663 */
 +        "(\"Meteor\")\0" /* 1 refs @ 27672 */
 +        "Portege\0" /* 1 refs @ 27683 */
 +        "Piccolo\0" /* 4 refs @ 27691 */
 +        "ToPIC95\0" /* 1 refs @ 27699 */
 +        "ToPIC95B\0" /* 1 refs @ 27707 */
 +        "ToPIC97\0" /* 1 refs @ 27716 */
 +        "SanRemo?\0" /* 1 refs @ 27724 */
 +        "Triangle\0" /* 1 refs @ 27733 */
 +        "Type-A\0" /* 1 refs @ 27742 */
 +        "ToPIC100\0" /* 1 refs @ 27749 */
 +        "Infrared\0" /* 2 refs @ 27758 */
 +        "Type\0" /* 2 refs @ 27767 */
 +        "O\0" /* 1 refs @ 27772 */
 +        "DO\0" /* 1 refs @ 27774 */
 +        "TM8000\0" /* 1 refs @ 27777 */
 +        "LongRun\0" /* 1 refs @ 27784 */
 +        "SDRAM\0" /* 1 refs @ 27792 */
 +        "BIOS\0" /* 1 refs @ 27798 */
 +        "4DWAVE\0" /* 2 refs @ 27803 */
 +        "DX\0" /* 1 refs @ 27810 */
 +        "NX\0" /* 1 refs @ 27813 */
 +        "CyberBlade\0" /* 2 refs @ 27816 */
 +        "i7\0" /* 1 refs @ 27827 */
 +        "TGUI\0" /* 8 refs @ 27830 */
 +        "9320\0" /* 1 refs @ 27835 */
 +        "9350\0" /* 1 refs @ 27840 */
 +        "9360\0" /* 1 refs @ 27845 */
 +        "CYBER\0" /* 3 refs @ 27850 */
 +        "9397\0" /* 1 refs @ 27856 */
 +        "9397DVD\0" /* 1 refs @ 27861 */
 +        "9525\0" /* 1 refs @ 27869 */
 +        "9420\0" /* 1 refs @ 27874 */
 +        "9440\0" /* 1 refs @ 27879 */
 +        "9660\0" /* 1 refs @ 27884 */
 +        "9680\0" /* 1 refs @ 27889 */
 +        "9682\0" /* 1 refs @ 27894 */
 +        "HPT343/345\0" /* 1 refs @ 27899 */
 +        "HPT366/370/372\0" /* 1 refs @ 27910 */
 +        "HPT372A\0" /* 1 refs @ 27925 */
 +        "HPT302\0" /* 1 refs @ 27933 */
 +        "HPT371\0" /* 1 refs @ 27940 */
 +        "HPT374\0" /* 1 refs @ 27947 */
 +        "HPT372N\0" /* 1 refs @ 27954 */
 +        "RocketRAID\0" /* 2 refs @ 27962 */
 +        "2310\0" /* 1 refs @ 27973 */
 +        "card\0" /* 2 refs @ 27978 */
 +        "2720\0" /* 1 refs @ 27983 */
 +        "Pyramid3D\0" /* 1 refs @ 27988 */
 +        "TR25202\0" /* 1 refs @ 27998 */
 +        "ET4000w32p\0" /* 4 refs @ 28006 */
 +        "ET6000\0" /* 1 refs @ 28017 */
 +        "UM82C881\0" /* 1 refs @ 28024 */
 +        "486\0" /* 2 refs @ 28033 */
 +        "UM82C886\0" /* 1 refs @ 28037 */
 +       "UM8673F\0" /* 1 refs @ 28046 */
 +        "UM8881\0" /* 1 refs @ 28054 */
 +        "UM82C891\0" /* 1 refs @ 28061 */
 +        "UM886A\0" /* 1 refs @ 28070 */
 +        "UM8886BF\0" /* 1 refs @ 28077 */
 +        "UM8710\0" /* 1 refs @ 28086 */
 +        "UM8886\0" /* 1 refs @ 28093 */
 +        "UM8881F\0" /* 1 refs @ 28100 */
 +        "PCI-Host\0" /* 1 refs @ 28108 */
 +        "UM8886F\0" /* 1 refs @ 28117 */
 +        "UM8886A\0" /* 1 refs @ 28125 */
 +        "UM8891A\0" /* 1 refs @ 28133 */
 +        "UM9017F\0" /* 1 refs @ 28141 */
 +        "UM8886N\0" /* 1 refs @ 28149 */
 +        "UM8891N\0" /* 1 refs @ 28157 */
 +        "US201\0" /* 1 refs @ 28165 */
 +        "Voice\0" /* 1 refs @ 28171 */
 +        "Internal\0" /* 1 refs @ 28177 */
 +        "(WinModem)\0" /* 1 refs @ 28186 */
 +        "3CP5609\0" /* 1 refs @ 28197 */
 +        "USR997902\0" /* 1 refs @ 28205 */
 +        "V292PBCPSC\0" /* 1 refs @ 28215 */
 +        "Am29K\0" /* 1 refs @ 28226 */
 +        "Local\0" /* 1 refs @ 28232 */
 +        "V292PBC\0" /* 1 refs @ 28238 */
 +        "AMD290x0\0" /* 1 refs @ 28246 */
 +        "V960PBC\0" /* 1 refs @ 28255 */
 +        "V96DPC\0" /* 1 refs @ 28263 */
 +        "(Dual)\0" /* 1 refs @ 28270 */
 +        "VT6305\0" /* 1 refs @ 28277 */
 +        "K8M800\0" /* 1 refs @ 28284 */
 +        "K8T890\0" /* 7 refs @ 28291 */
 +        "KT880\0" /* 6 refs @ 28298 */
 +        "K8HTB\0" /* 3 refs @ 28304 */
 +        "VT8363\0" /* 2 refs @ 28310 */
 +        "(Apollo\0" /* 24 refs @ 28317 */
 +        "KT133)\0" /* 2 refs @ 28325 */
 +        "VT3351\0" /* 7 refs @ 28332 */
 +        "VT8371\0" /* 2 refs @ 28339 */
 +        "KX133)\0" /* 2 refs @ 28346 */
 +        "VX900\0" /* 2 refs @ 28353 */
 +        "VT8501\0" /* 2 refs @ 28359 */
 +        "MVP4)\0" /* 2 refs @ 28366 */
 +        "VT82C505\0" /* 1 refs @ 28372 */
 +        "(Pluto)\0" /* 1 refs @ 28381 */
 +        "VT82C561\0" /* 1 refs @ 28389 */
 +        "VT82C586A\0" /* 1 refs @ 28398 */
 +        "VT82C576\0" /* 1 refs @ 28408 */
 +        "3V\0" /* 1 refs @ 28417 */
 +        "CX700\0" /* 2 refs @ 28420 */
 +        "VT82C580\0" /* 1 refs @ 28426 */
 +        "VP)\0" /* 1 refs @ 28435 */
 +        "VT82C586\0" /* 3 refs @ 28439 */
 +        "VT8237A\0" /* 4 refs @ 28448 */
 +        "VT82C595\0" /* 2 refs @ 28456 */
 +        "VP2)\0" /* 2 refs @ 28465 */
 +        "VT82C596A\0" /* 1 refs @ 28470 */
 +        "VT82C597\0" /* 2 refs @ 28480 */
 +        "VP3)\0" /* 2 refs @ 28489 */
 +        "VT82C598\0" /* 2 refs @ 28494 */
 +        "MVP3)\0" /* 2 refs @ 28503 */
 +        "VT8605\0" /* 2 refs @ 28509 */
 +        "ProMedia\0" /* 2 refs @ 28516 */
 +        "133)\0" /* 2 refs @ 28525 */
 +        "VT82C686A\0" /* 4 refs @ 28530 */
 +        "VT82C691\0" /* 1 refs @ 28540 */
 +        "Pro)\0" /* 1 refs @ 28549 */
 +        "VT82C693\0" /* 1 refs @ 28554 */
 +        "Plus)\0" /* 1 refs @ 28563 */
 +        "VT86C926\0" /* 1 refs @ 28569 */
 +        "Amazon\0" /* 1 refs @ 28578 */
 +        "PCI-Ethernet\0" /* 1 refs @ 28585 */
 +        "VT82C570M\0" /* 2 refs @ 28598 */
 +        "(Apollo)\0" /* 2 refs @ 28608 */
 +        "VT8251\0" /* 6 refs @ 28617 */
 +        "Port1\0" /* 1 refs @ 28624 */
 +        "Port2\0" /* 1 refs @ 28630 */
 +        "VLINK\0" /* 1 refs @ 28636 */
 +        "VT83C572\0" /* 1 refs @ 28642 */
 +        "VT3043\0" /* 1 refs @ 28651 */
 +        "(Rhine)\0" /* 1 refs @ 28658 */
 +        "VT6306\0" /* 1 refs @ 28666 */
 +        "VT6105M\0" /* 1 refs @ 28673 */
 +        "(Rhine\0" /* 3 refs @ 28681 */
 +        "VT8233/VT8235\0" /* 1 refs @ 28688 */
 +        "VT6102\0" /* 1 refs @ 28702 */
 +        "MC-97\0" /* 1 refs @ 28709 */
 +        "VT8233\0" /* 1 refs @ 28715 */
 +        "VT8366\0" /* 2 refs @ 28722 */
 +        "KT266)\0" /* 2 refs @ 28729 */
 +        "CPU-PCI\0" /* 3 refs @ 28736 */
 +        "VT8653\0" /* 1 refs @ 28744 */
 +        "266T)\0" /* 1 refs @ 28751 */
 +        "VT8237\0" /* 4 refs @ 28757 */
 +        "VT6105\0" /* 1 refs @ 28764 */
 +        "VT612X\0" /* 1 refs @ 28771 */
 +        "(Velocity)\0" /* 1 refs @ 28778 */
 +        "VT8623\0" /* 2 refs @ 28789 */
 +        "CLE266)\0" /* 2 refs @ 28796 */
 +        "VT8233A\0" /* 1 refs @ 28804 */
 +        "VT6410\0" /* 1 refs @ 28812 */
 +        "VT6421\0" /* 1 refs @ 28819 */
 +        "VT3314\0" /* 1 refs @ 28826 */
 +        "CN900\0" /* 1 refs @ 28833 */
 +        "UniChrome\0" /* 2 refs @ 28839 */
 +        "VT8237R\0" /* 1 refs @ 28849 */
 +        "VT8235\0" /* 1 refs @ 28857 */
 +        "KT400)\0" /* 1 refs @ 28864 */
 +        "VT8377\0" /* 2 refs @ 28871 */
 +        "Apollo\0" /* 2 refs @ 28878 */
 +        "KT400\0" /* 1 refs @ 28885 */
 +        "VT8378\0" /* 2 refs @ 28891 */
 +        "KM400\0" /* 2 refs @ 28898 */
 +        "VT8237A/VT8251\0" /* 1 refs @ 28904 */
 +        "VT8237A/VT82C586A\0" /* 1 refs @ 28919 */
 +        "VT8237S\0" /* 2 refs @ 28937 */
 +        "CX700M2/VX700\0" /* 1 refs @ 28945 */
 +        "VT86C100A\0" /* 1 refs @ 28959 */
 +        "(Rhine-II)\0" /* 1 refs @ 28969 */
 +        "VT8231\0" /* 2 refs @ 28980 */
 +        "VX800/VX820\0" /* 1 refs @ 28987 */
 +        "CPU-AGP\0" /* 7 refs @ 28999 */
 +        "VT8633\0" /* 1 refs @ 29007 */
 +        "266)\0" /* 1 refs @ 29014 */
 +        "VT8377CE\0" /* 1 refs @ 29019 */
 +        "Guest\0" /* 1 refs @ 29028 */
 +        "Service\0" /* 1 refs @ 29034 */
 +        "GDT6000/6020/6050\0" /* 1 refs @ 29042 */
 +        "GDT6000B/6010\0" /* 1 refs @ 29060 */
 +        "GDT6110/6510\0" /* 1 refs @ 29074 */
 +        "GDT6120/6520\0" /* 1 refs @ 29087 */
 +        "GDT6530\0" /* 1 refs @ 29100 */
 +        "GDT6550\0" /* 1 refs @ 29108 */
 +        "GDT6117/6517\0" /* 1 refs @ 29116 */
 +        "GDT6127/6527\0" /* 1 refs @ 29129 */
 +        "GDT6537\0" /* 1 refs @ 29142 */
 +        "GDT6557/6557-ECC\0" /* 1 refs @ 29150 */
 +        "GDT6115/6515\0" /* 1 refs @ 29167 */
 +        "GDT6125/6525\0" /* 1 refs @ 29180 */
 +        "GDT6535\0" /* 1 refs @ 29193 */
 +        "GDT6555/6555-ECC\0" /* 1 refs @ 29201 */
 +        "GDT6[15]17RP\0" /* 1 refs @ 29218 */
 +        "GDT6[15]27RP\0" /* 1 refs @ 29231 */
 +        "GDT6537RP\0" /* 1 refs @ 29244 */
 +        "GDT6557RP\0" /* 1 refs @ 29254 */
 +        "GDT6[15]11RP\0" /* 1 refs @ 29264 */
 +        "GDT6[15]21RP\0" /* 1 refs @ 29277 */
 +        "GDT6[15]17RD\0" /* 1 refs @ 29290 */
 +        "GDT6[5]127RD\0" /* 1 refs @ 29303 */
 +        "GDT6537RD\0" /* 1 refs @ 29316 */
 +        "GDT6557RD\0" /* 1 refs @ 29326 */
 +        "GDT6[15]11RD\0" /* 1 refs @ 29336 */
 +        "GDT6[15]21RD\0" /* 1 refs @ 29349 */
 +        "GDT6[156]18RD\0" /* 1 refs @ 29362 */
 +        "GDT6[156]28RD\0" /* 1 refs @ 29376 */
 +        "GDT6[56]38RD\0" /* 1 refs @ 29390 */
 +        "GDT6[56]58RD\0" /* 1 refs @ 29403 */
 +        "GDT6[15]17RP2\0" /* 1 refs @ 29416 */
 +        "GDT6[15]27RP2\0" /* 1 refs @ 29430 */
 +        "GDT6537RP2\0" /* 1 refs @ 29444 */
 +        "GDT6[15]11RP2\0" /* 1 refs @ 29455 */
 +        "GDT6[15]21RP2\0" /* 1 refs @ 29469 */
 +        "GDT6513RS\0" /* 1 refs @ 29483 */
 +        "GDT6523RS\0" /* 1 refs @ 29493 */
 +        "GDT6518RS\0" /* 1 refs @ 29503 */
 +        "GDT6x28RS\0" /* 1 refs @ 29513 */
 +        "GDT6x38RS\0" /* 1 refs @ 29523 */
 +        "GDT6x58RS\0" /* 1 refs @ 29533 */
 +        "GDT6x33RS\0" /* 1 refs @ 29543 */
 +        "GDT6x43RS\0" /* 1 refs @ 29553 */
 +        "GDT6x53RS\0" /* 1 refs @ 29563 */
 +        "GDT6x63RS\0" /* 1 refs @ 29573 */
 +        "GDT7x13RN\0" /* 1 refs @ 29583 */
 +        "GDT7x23RN\0" /* 1 refs @ 29593 */
 +        "GDT7[156]18RN\0" /* 1 refs @ 29603 */
 +        "GDT7[156]28RN\0" /* 1 refs @ 29617 */
 +        "GDT7[56]38RN\0" /* 1 refs @ 29631 */
 +        "GDT7[56]58RN\0" /* 1 refs @ 29644 */
 +        "GDT7[56]43RN\0" /* 1 refs @ 29657 */
 +        "GDT7x53RN\0" /* 1 refs @ 29670 */
 +        "GDT7x63RN\0" /* 1 refs @ 29680 */
 +        "GDT4x13RZ\0" /* 1 refs @ 29690 */
 +        "GDT4x23RZ\0" /* 1 refs @ 29700 */
 +        "GDT8x13RZ\0" /* 1 refs @ 29710 */
 +        "GDT8x23RZ\0" /* 1 refs @ 29720 */
 +        "GDT8x33RZ\0" /* 1 refs @ 29730 */
 +        "GDT8x43RZ\0" /* 1 refs @ 29740 */
 +        "GDT8x53RZ\0" /* 1 refs @ 29750 */
 +        "GDT8x63RZ\0" /* 1 refs @ 29760 */
 +        "GDT6[56]19RD\0" /* 1 refs @ 29770 */
 +        "GDT6[56]29RD\0" /* 1 refs @ 29783 */
 +        "GDT7[56]19RN\0" /* 1 refs @ 29796 */
 +        "GDT7[56]29RN\0" /* 1 refs @ 29809 */
 +        "ICP\0" /* 1 refs @ 29822 */
 +        "82C592\0" /* 1 refs @ 29826 */
 +        "82C593\0" /* 1 refs @ 29833 */
 +        "82C594\0" /* 1 refs @ 29840 */
 +        "Wildcat\0" /* 2 refs @ 29847 */
 +        "82C596/597\0" /* 1 refs @ 29855 */
 +        "82C541\0" /* 1 refs @ 29866 */
 +        "82C543\0" /* 1 refs @ 29873 */
 +        "82C532\0" /* 1 refs @ 29880 */
 +        "82C534\0" /* 1 refs @ 29887 */
 +        "82C535\0" /* 1 refs @ 29894 */
 +        "82C147\0" /* 1 refs @ 29901 */
 +        "82C975\0" /* 1 refs @ 29908 */
 +        "82C925\0" /* 1 refs @ 29915 */
 +        "SVGA\0" /* 2 refs @ 29922 */
 +        "Machine\0" /* 1 refs @ 29927 */
 +        "Communication\0" /* 1 refs @ 29935 */
 +        "82545EM\0" /* 1 refs @ 29949 */
 +        "82546EB\0" /* 1 refs @ 29957 */
 +        "PVSCSI\0" /* 1 refs @ 29965 */
 +        "VMI\0" /* 1 refs @ 29972 */
 +        "option\0" /* 1 refs @ 29976 */
 +        "ROM\0" /* 1 refs @ 29983 */
 +        "P9000\0" /* 1 refs @ 29987 */
 +        "P9100\0" /* 1 refs @ 29993 */
 +        "WD33C193A\0" /* 1 refs @ 29999 */
 +        "WD33C196A\0" /* 1 refs @ 30009 */
 +        "WD33C197A\0" /* 1 refs @ 30019 */
 +        "WD7193\0" /* 1 refs @ 30029 */
 +        "WD7197\0" /* 1 refs @ 30036 */
 +        "WD33C296A\0" /* 1 refs @ 30043 */
 +        "WD34C296\0" /* 1 refs @ 30053 */
 +        "90C\0" /* 1 refs @ 30062 */
 +        "W83769F\0" /* 1 refs @ 30066 */
 +        "W83C553F\0" /* 2 refs @ 30074 */
 +        "W83628F\0" /* 1 refs @ 30083 */
 +        "W89C840F\0" /* 1 refs @ 30091 */
 +        "W89C940F\0" /* 2 refs @ 30100 */
 +        "W6692\0" /* 1 refs @ 30109 */
 +        "NinjaSCSI-32UDE\0" /* 5 refs @ 30115 */
 +        "(KME)\0" /* 3 refs @ 30131 */
 +        "(IODATA)\0" /* 1 refs @ 30137 */
 +        "(LOGITEC)\0" /* 1 refs @ 30146 */
 +        "(LOGITEC2)\0" /* 1 refs @ 30156 */
 +        "(BUFFALO)\0" /* 2 refs @ 30167 */
 +        "CF32A\0" /* 2 refs @ 30177 */
 +        "CompactFlash\0" /* 1 refs @ 30183 */
 +        "CF\0" /* 1 refs @ 30196 */
 +        "NPATA-32\0" /* 1 refs @ 30199 */
 +        "Xen\0" /* 1 refs @ 30208 */
 +        "Platform\0" /* 1 refs @ 30212 */
 +        "Volari\0" /* 5 refs @ 30221 */
 +        "Z7/Z9/Z9s\0" /* 1 refs @ 30228 */
 +        "Z9m\0" /* 1 refs @ 30238 */
 +        "Z11/Z11M\0" /* 1 refs @ 30242 */
 +       "V3XT/V5/V8\0" /* 1 refs @ 30251 */
 +        "XP10\0" /* 1 refs @ 30262 */
 +        "X3201-3\0" /* 2 refs @ 30267 */
 +        "(21143)\0" /* 1 refs @ 30275 */
 +        "WinGlobal\0" /* 1 refs @ 30283 */
 +        "724\0" /* 1 refs @ 30293 */
 +        "740C\0" /* 1 refs @ 30297 */
 +        "(DS-1)\0" /* 2 refs @ 30302 */
 +        "724F\0" /* 1 refs @ 30309 */
 +        "744\0" /* 1 refs @ 30314 */
 +        "(DS-1S)\0" /* 1 refs @ 30318 */
 +        "754\0" /* 1 refs @ 30326 */
 +        "(DS-1E)\0" /* 1 refs @ 30330 */
 +        "1221\0" /* 1 refs @ 30338 */
 +        "PCI-ST32\0" /* 1 refs @ 30343 */
 +        "ZR36057\0" /* 1 refs @ 30352 */
 +        "ZR36120\0" /* 1 refs @ 30360 */
 };
 -const int pci_nwords =3D 4095;
 +const int pci_nwords =3D 4096;
 Index: dev/pci/puccn.c
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
 RCS file: /cvsroot/src/sys/dev/pci/puccn.c,v
 retrieving revision 1.10
 diff -u -r1.10 puccn.c
 --- dev/pci/puccn.c  28 Apr 2010 19:17:05 -0000 1.10
 +++ dev/pci/puccn.c  5 Jul 2013 01:08:41 -0000
 @@ -181,7 +181,8 @@
           goto resume_scan;
     }
 -    cn->cn_pri =3D CN_REMOTE;
 +    if (cn)
 +          cn->cn_pri =3D CN_REMOTE;
     return PCI_MAPREG_IO_ADDR(base);
 }
 Index: dev/pci/pucdata.c
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
 RCS file: /cvsroot/src/sys/dev/pci/pucdata.c,v
 retrieving revision 1.84
 diff -u -r1.84 pucdata.c
 --- dev/pci/pucdata.c 3 Jun 2013 16:21:50 -0000  1.84
 +++ dev/pci/pucdata.c 5 Jul 2013 01:08:41 -0000
 @@ -57,8 +57,8 @@
         { PCI_VENDOR_ADVANTECH, PCI_PRODUCT_ADVANTECH_PCI1604, 0, 0 },
         { 0xffff,    0xffff,    0x0, 0x0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ * 8 },
         },
     },
 @@ -67,10 +67,10 @@
           PCI_PRODUCT_ADVANTECH_PCI1610,  0x0 },
         { 0xffff,    0xffff,    0xffff,    0x0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 8 },
         },
     },
 @@ -79,10 +79,10 @@
           PCI_PRODUCT_ADVANTECH_PCI1612,  0x0 },
         { 0xffff,    0xffff,    0xffff,    0x0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 8 },
         },
     },
 @@ -92,10 +92,10 @@
           PCI_PRODUCT_ADVANTECH_PCI1620,  0x0 },
         { 0xffff,    0xffff,    0xffff,    0x0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 8 },
         },
     },
 @@ -105,10 +105,10 @@
           PCI_PRODUCT_ADVANTECH_PCI1620,  0x0 },
         { 0xffff,    0xffff,    0xffff,    0x0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 2 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 2 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 2 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 2 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 2 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 2 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 2 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 2 },
         },
     },
 @@ -120,14 +120,14 @@
         {   PCI_VENDOR_AMCIRCUITS, PCI_PRODUCT_AMCIRCUITS_ADDI7800, 0, 0  }=
 ,
         {   0xffff, 0xffff, 0, 0  },
         {
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x08, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x08, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x20, 0x08, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x08, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x08, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x08, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x08, COM_FREQ },
         },
     },
 @@ -136,8 +136,8 @@
         { PCI_VENDOR_AVLAB, PCI_PRODUCT_AVLAB_PCI2S, 0, 0  },
         { 0xffff,    0xffff,                         0, 0  },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },
         },
     },
 @@ -146,10 +146,10 @@
         { PCI_VENDOR_AVLAB, PCI_PRODUCT_AVLAB_LPPCI4S,    0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ },
         },
     },
 @@ -158,10 +158,10 @@
         { PCI_VENDOR_AVLAB, PCI_PRODUCT_AVLAB_LPPCI4S_2,  0, 0  },
         { 0xffff,    0xffff,                         0, 0  },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ },
         },
     },
 @@ -172,32 +172,32 @@
         { PCI_VENDOR_BBELEC, PCI_PRODUCT_BBELEC_ISOLATED_2_PORT, 0, 0 },
         { 0xffff, 0xffff, 0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0000, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0200, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0000, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0200, COM_FREQ * 8 },
         },
     },
     {   "BBELEC ISOLATED_4_PORT",
         { PCI_VENDOR_BBELEC, PCI_PRODUCT_BBELEC_ISOLATED_4_PORT, 0, 0 },
         { 0xffff, 0xffff, 0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0000, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0200, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0400, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0600, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0000, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0200, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0400, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0600, COM_FREQ * 8 },
         },
     },
     {   "BBELEC ISOLATED_8_PORT",
         { PCI_VENDOR_BBELEC, PCI_PRODUCT_BBELEC_ISOLATED_8_PORT, 0, 0 },
         { 0xffff, 0xffff, 0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0000, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0200, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0400, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0600, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0800, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0a00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0c00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0e00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0000, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0200, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0400, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0600, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0800, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0a00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0c00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0e00, COM_FREQ * 8 },
         },
     },
 @@ -209,10 +209,10 @@
           0, 0 },
         { 0xffff,    0xffff,    0,   0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 4},
         },
     },
     {   "Comtrol RocketPort 550/8 RJ11 part B",
 @@ -220,10 +220,10 @@
           0, 0 },
         { 0xffff,    0xffff,    0,   0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 4},
         },
     },
     {   "Comtrol RocketPort 550/8 Octa part A",
 @@ -231,10 +231,10 @@
           0, 0 },
         { 0xffff,    0xffff,    0,   0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 4},
         },
     },
     {   "Comtrol RocketPort 550/8 Octa part B",
 @@ -242,30 +242,30 @@
           0, 0 },
         { 0xffff,    0xffff,    0,   0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 4},
         },
     },
     {   "Comtrol RocketPort 550/4 RJ45",
         { PCI_VENDOR_COMTROL, PCI_PRODUCT_COMTROL_ROCKETPORT5504, 0, 0 },
         { 0xffff,    0xffff,    0,   0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 4},
         },
     },
     {   "Comtrol RocketPort 550/Quad",
         { PCI_VENDOR_COMTROL, PCI_PRODUCT_COMTROL_ROCKETPORT550Q, 0, 0 },
         { 0xffff,    0xffff,    0,   0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 4},
         },
     },
     {   "Comtrol RocketPort 550/16 part A",
 @@ -273,10 +273,10 @@
           0, 0 },
         { 0xffff,    0xffff,    0,   0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 4},
         },
     },
     {   "Comtrol RocketPort 550/16 part B",
 @@ -284,18 +284,18 @@
           0, 0 },
         { 0xffff,    0xffff,    0,   0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x20, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x28, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x30, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x38, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x40, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x48, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x50, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x58, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x20, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x28, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x30, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x38, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x40, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x48, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x50, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x58, COM_FREQ * 4},
         },
     },
     {   "Comtrol RocketPort 550/8 part A",
 @@ -303,10 +303,10 @@
           0, 0 },
         { 0xffff,    0xffff,    0,   0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 4},
         },
     },
     {   "Comtrol RocketPort 550/8 part B",
 @@ -314,10 +314,10 @@
           0, 0 },
         { 0xffff,    0xffff,    0,   0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 4},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 4},
         },
     },
 @@ -329,8 +329,8 @@
         { PCI_VENDOR_DCI, PCI_PRODUCT_DCI_APCI2,     0x0, 0x0  },
         { 0xffff,    0xffff,    0x0, 0x0  },
         {
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x08, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x08, COM_FREQ},
         },
     },
 @@ -339,10 +339,10 @@
         { PCI_VENDOR_DCI, PCI_PRODUCT_DCI_APCI4,     0x0, 0x0  },
         { 0xffff,    0xffff,    0x0, 0x0  },
         {
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x08, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x10, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x18, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x08, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x10, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x18, COM_FREQ},
         },
     },
 @@ -351,14 +351,14 @@
         { PCI_VENDOR_DCI, PCI_PRODUCT_DCI_APCI8,     0x0, 0x0  },
         { 0xffff,    0xffff,    0x0, 0x0  },
         {
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x08, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x10, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x18, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x20, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x28, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x30, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x38, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x08, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x10, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x18, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x20, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x28, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x30, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x38, COM_FREQ},
         },
     },
 @@ -367,10 +367,10 @@
         { PCI_VENDOR_DIGI, PCI_PRODUCT_DIGI_NEO4,         0, 0  },
         { 0xffff, 0xffff,                      0, 0  },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0000, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0200, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0400, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0600, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0000, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0200, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0400, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0600, COM_FREQ * 8 },
         },
     },
 @@ -379,14 +379,14 @@
         { PCI_VENDOR_DIGI, PCI_PRODUCT_DIGI_NEO8,         0, 0  },
         { 0xffff, 0xffff,                      0, 0  },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0000, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0200, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0400, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0600, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0800, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0a00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0c00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0e00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0000, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0200, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0400, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0600, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0800, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0a00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0c00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0e00, COM_FREQ * 8 },
         },
     },
 @@ -394,18 +394,18 @@
         {   PCI_VENDOR_EXAR, PCI_PRODUCT_EXAR_XR17D152, 0,      0       },
         {   0xffff, 0xffff, 0,      0       },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0000, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0200, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0000, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0200, COM_FREQ * 8 },
         },
     },
     {   "EXAR XR17D154",
         {   PCI_VENDOR_EXAR, PCI_PRODUCT_EXAR_XR17D154, 0,      0       },
         {   0xffff, 0xffff, 0,      0       },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0000, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0200, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0400, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0600, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0000, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0200, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0400, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0600, COM_FREQ * 8 },
         },
     },
 @@ -418,10 +418,10 @@
         {   PCI_VENDOR_EXAR, PCI_PRODUCT_EXAR_XR17D158, 0x2205,      0x2003=
        },
         {   0xffff, 0xffff, 0xffff,      0xffff       },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0000, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0200, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0400, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0600, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0000, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0200, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0400, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0600, COM_FREQ * 8 },
         },
     },
 @@ -429,14 +429,14 @@
         {   PCI_VENDOR_EXAR, PCI_PRODUCT_EXAR_XR17D158, 0,      0       },
         {   0xffff, 0xffff, 0,      0       },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0000, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0200, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0400, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0600, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0800, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0a00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0c00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x0e00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0000, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0200, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0400, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0600, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0800, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0a00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0c00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0e00, COM_FREQ * 8 },
         },
     },
 @@ -445,10 +445,10 @@
         {   PCI_VENDOR_IBM, PCI_PRODUCT_IBM_4810_SCC, 0, 0 },
         {   0xffff, 0xffff,                           0, 0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ }, /* Port C */
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ }, /* Port D */
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ }, /* Port E */
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ }, /* Port F */
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ }, /* Port C */
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ }, /* Port D */
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ }, /* Port E */
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ }, /* Port F */
         },
     },
 @@ -457,8 +457,8 @@
         { PCI_VENDOR_IODATA, PCI_PRODUCT_IODATA_RSAPCI, 0, 0 },
         { 0xffff, 0xffff, 0, 0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ },
         },
     },
 
 @@ -467,7 +467,7 @@
         { PCI_VENDOR_LAVA,     PCI_PRODUCT_LAVA_TWOSP_1P, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x00, 0x00 },
         },
     },
 @@ -476,8 +476,8 @@
         { PCI_VENDOR_LAVA,     PCI_PRODUCT_LAVA_TWOSP_2S, 0, 0 },
         { 0xffff,    0xfffc,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },
         },
     },
 @@ -486,8 +486,8 @@
         { PCI_VENDOR_LAVA,     PCI_PRODUCT_LAVA_QUATTRO_AB, 0, 0 },
         { 0xffff,    0xfffc,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },
         },
     },
 @@ -496,8 +496,8 @@
         { PCI_VENDOR_LAVA,     PCI_PRODUCT_LAVA_QUATTRO_CD, 0, 0 },
         { 0xffff,    0xfffc,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },
         },
     },
 @@ -506,7 +506,7 @@
         { PCI_VENDOR_LAVA,     PCI_PRODUCT_LAVA_IOFLEX_2S_0, 0, 0 },
         { 0xffff,    0xfffc,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -515,8 +515,8 @@
         {   PCI_VENDOR_LAVA, PCI_PRODUCT_LAVA_QUATTRO_AB2, 0, 0 },
         {   0xffff, 0xfffc, 0, 0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },
         },
     },
 @@ -525,8 +525,8 @@
         {   PCI_VENDOR_LAVA, PCI_PRODUCT_LAVA_QUATTRO_CD2, 0, 0 },
         {   0xffff, 0xfffc, 0, 0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },
         },
     },
 @@ -535,10 +535,10 @@
         { PCI_VENDOR_LAVA,     PCI_PRODUCT_LAVA_OCTOPUS550_0, 0, 0 },
         { 0xffff,    0xfffc,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ },
         },
     },
 @@ -547,10 +547,10 @@
         { PCI_VENDOR_LAVA,     PCI_PRODUCT_LAVA_OCTOPUS550_1, 0, 0 },
         { 0xffff,    0xfffc,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ },
         },
     },
 @@ -559,7 +559,7 @@
         { PCI_VENDOR_LAVA,     PCI_PRODUCT_LAVA_SSERIAL, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -569,7 +569,7 @@
           0x0, 0x0 },
         { 0xffff,    0xffff,    0x0, 0x0  },
         {
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1,  0x00, COM_FREQ },
         },
     },
 @@ -582,7 +582,7 @@
           PCI_PRODUCT_MIDDLE_DIGITAL_WEASEL_SERIAL, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -591,8 +591,8 @@
         { PCI_VENDOR_MOXA,     PCI_PRODUCT_MOXA_CP102U, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x08, COM_FREQ * 8 },
         },
     },
 @@ -601,10 +601,10 @@
         { PCI_VENDOR_MOXA,     PCI_PRODUCT_MOXA_C104H, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x08, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x10, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 8 },
         },
     },
 @@ -613,10 +613,10 @@
         { PCI_VENDOR_MOXA,     PCI_PRODUCT_MOXA_CP104, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x08, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x10, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 8 },
         },
     },
 @@ -625,10 +625,10 @@
         { PCI_VENDOR_MOXA,     PCI_PRODUCT_MOXA_CP104V2, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x08, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x10, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 8 },
         },
     },
 @@ -637,10 +637,10 @@
         { PCI_VENDOR_MOXA,     PCI_PRODUCT_MOXA_CP104EL, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x08, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x10, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 8 },
         },
     },
 @@ -649,10 +649,10 @@
         { PCI_VENDOR_MOXA,     PCI_PRODUCT_MOXA_CP114, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x08, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x10, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 8 },
         },
     },
 @@ -661,14 +661,14 @@
         { PCI_VENDOR_MOXA,     PCI_PRODUCT_MOXA_C168H, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x38, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x08, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x10, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, PCI_BAR2, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x20, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x28, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x30, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x38, COM_FREQ * 8 },
         },
     },
 @@ -677,14 +677,14 @@
         { PCI_VENDOR_MOXA,     PCI_PRODUCT_MOXA_C168U, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x38, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x08, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x10, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x20, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x28, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x30, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x38, COM_FREQ * 8 },
         },
     },
 @@ -693,14 +693,14 @@
         { PCI_VENDOR_MOXA,     PCI_PRODUCT_MOXA_C168EL, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x38, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x08, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x10, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x20, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x28, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x30, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x38, COM_FREQ * 8 },
         },
     },
     /* Moxa Technologies Co., Ltd. PCI-Express I/O Card 8S RS232 */
 @@ -708,14 +708,14 @@
         { PCI_VENDOR_MOXA,     PCI_PRODUCT_MOXA_C168ELA, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x14, 0x000, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x200, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x400, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x600, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x800, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x14, 0xa00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x14, 0xc00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x14, 0xe00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x000, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x200, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x400, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x600, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x800, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0xa00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0xc00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0xe00, COM_FREQ * 8 },
         },
     },
 @@ -726,7 +726,7 @@
           0x8014 },
         { 0xffff,    0xffff,    0xffff,    0xffff     },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -736,7 +736,7 @@
           0x8012 },
         { 0xffff,    0xffff,    0xffff,    0xffff     },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ},
         },
     },
 @@ -745,7 +745,7 @@
         { PCI_VENDOR_NETMOS,   PCI_PRODUCT_NETMOS_NM9805, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x00, 0x00 },
         },
     },
 @@ -754,8 +754,8 @@
         { PCI_VENDOR_NETMOS,   PCI_PRODUCT_NETMOS_NM9815, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
 -          { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR2, 0x00, 0x00 },
         },
     },
 @@ -764,7 +764,7 @@
         { PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9835, 0x1000, 0x0001 },
         { 0xffff, 0xffff, 0xffff, 0xffff  },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -773,8 +773,8 @@
         { PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9835, 0x1000, 0x0002 },
         { 0xffff, 0xffff, 0xffff, 0xffff  },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },
         },
     },
 @@ -783,9 +783,9 @@
         { PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9835, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR2, 0x00, 0x00 },
         },
     },
 @@ -794,10 +794,10 @@
        {   PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9845, 0x1000, 0x0004 },
        {   0xffff, 0xffff, 0xffff, 0xffff  },
        {
 -           { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 -           { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
 -           { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
 -           { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
 +           { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +           { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },
 +           { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ },
 +           { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ },
        },
     },
 @@ -806,11 +806,11 @@
         {   PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9845, 0x1000, 0x0014 },
         {   0xffff, 0xffff, 0xffff, 0xffff  },
         {
 -           { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 -           { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
 -           { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
 -           { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
 -           { PUC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },
 +           { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +           { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },
 +           { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ },
 +           { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ },
 +           { PUC_PORT_TYPE_LPT, PCI_BAR4, 0x00, 0x00 },
         },
     },
 @@ -819,12 +819,12 @@
         {   PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9845, 0x1000, 0x0006 },
         {   0xffff, 0xffff, 0xffff, 0xffff  },
         {
 -           { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 -           { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
 -           { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
 -           { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
 -           { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ },
 -           { PUC_PORT_TYPE_COM, 0x24, 0x00, COM_FREQ },
 +           { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +           { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },
 +           { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ },
 +           { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ },
 +           { PUC_PORT_TYPE_COM, PCI_BAR4, 0x00, COM_FREQ },
 +           { PUC_PORT_TYPE_COM, PCI_BAR5, 0x00, COM_FREQ },
         },
     },
 @@ -833,11 +833,11 @@
         { PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9845, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR4, 0x00, 0x00 },
         },
     },
 @@ -846,11 +846,11 @@
         { PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9855, 0x1000, 0x0014 },
         { 0xffff,    0xffff,    0xffff,    0xffff     },
         {
 -          { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x24, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR5, 0x00, COM_FREQ },
         },
     },
 @@ -859,7 +859,7 @@
         { PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9865, 0xa000, 0x1000 },
         { 0xffff,    0xffff,    0xffff,    0xffff     },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -868,8 +868,8 @@
         { PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9865, 0xa000, 0x3002 },
         { 0xffff,    0xffff,    0xffff,    0xffff     },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },
         },
     },
 @@ -878,9 +878,9 @@
         { PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9865, 0xa000, 0x3003 },
         { 0xffff,    0xffff,    0xffff,    0xffff     },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ },
         },
     },
 @@ -889,10 +889,10 @@
         { PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9865, 0xa000, 0x3004 },
         { 0xffff,    0xffff,    0xffff,    0xffff     },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ },
         },
     },
 @@ -901,8 +901,8 @@
         { PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9865, 0xa000, 0x3011 },
         { 0xffff,    0xffff,    0xffff,    0xffff     },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR1, 0x00, 0x00 },
         },
     },
 @@ -911,9 +911,9 @@
         { PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9865, 0xa000, 0x3012 },
         { 0xffff,    0xffff,    0xffff,    0xffff     },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
 +         { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR2, 0x00, 0x00 },
         },
     },
 @@ -922,8 +922,8 @@
         { PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9865, 0xa000, 0x3020 },
         { 0xffff,    0xffff,    0xffff,    0xffff     },
         {
 -          { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
 -          { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR1, 0x00, 0x00 },
         },
     },
 @@ -935,15 +935,15 @@
         { PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9865, 0xa000, 0x1000 },
         { 0xffff, 0xffff, 0xffff, 0xffff },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
     {   "NetMos NM9865 2S",
         { PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9865, 0xa000, 0x3002 },
         { 0xffff, 0xffff, 0xffff, 0xffff },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },
         },
     },
 @@ -952,7 +952,7 @@
         {   PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9901, 0xa000, 0x1000 },
         { 0xffff,    0xffff,                          0xffff, 0xffff },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -961,7 +961,7 @@
         { PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9901, 0xa000, 0x2000 },
         { 0xffff,    0xffff,    0xffff,    0xffff     },
         {
 -          { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x00, 0x00 },
         },
     },
 @@ -970,7 +970,7 @@
         {   PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9904, 0, 0 },
         { 0xffff,    0xffff,                          0, 0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -979,7 +979,7 @@
         {   PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9922, 0, 0 },
         { 0xffff,    0xffff,                          0, 0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -999,7 +999,7 @@
           PCI_VENDOR_OXFORDSEMI, PCI_PRODUCT_OXFORDSEMI_OXPCIE952 },
         { 0xffff,    0xffff,    0xffff,    0xffff     },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -1009,8 +1009,8 @@
           0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 10 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 10 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 10 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 10 },
         },
     },
 @@ -1020,8 +1020,8 @@
           0, 0 },
         {   0xffff, 0xffff, 0, 0    },
         {
 -         { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },
         },
     },
 @@ -1031,7 +1031,7 @@
           0, 0 },
         {   0xffff, 0xffff, 0, 0    },
         {
 -          { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x00, 0x00 },
         },
     },
 @@ -1041,10 +1041,10 @@
           PCI_VENDOR_INNOSYS, 0x5850 },
         { 0xffff,    0xffff,    0xffff,    0xffff     },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 8 },
         },
     },
 @@ -1054,8 +1054,8 @@
           PCI_VENDOR_IODATA, 0xc070 },
         { 0xffff,    0xffff,    0xffff,    0xffff     },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8 },
         },
     },
 @@ -1065,10 +1065,10 @@
           PCI_VENDOR_IODATA, 0xd007 },
         { 0xffff,    0xffff,    0xffff,    0xffff     },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 8 },
         },
     },
 @@ -1078,10 +1078,10 @@
           PCI_VENDOR_SIIG, 0x2050    },
         { 0xffff,    0xffff,    0xffff,    0xffff     },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 10 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 10 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 10 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 10 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 10 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 10 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 10 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 10 },
         },
     },
 @@ -1091,10 +1091,10 @@
           PCI_VENDOR_SIIG, 0x2051    },
         { 0xffff,    0xffff,    0xffff,    0xffff     },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 10 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 10 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 10 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 10 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 10 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 10 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 10 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 10 },
         },
     },
 @@ -1104,10 +1104,10 @@
           PCI_VENDOR_AVLAB, 0x2150 },
         { 0xffff,    0xffff,    0xffff,    0xffff     },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 10 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 10 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 10 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 10 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 10 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 10 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 10 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 10 },
         },
     },
 @@ -1117,10 +1117,10 @@
           PCI_VENDOR_OXFORDSEMI,     0 },
         { 0xffff,    0xffff,    0xffff,    0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 8},
         },
     },
 @@ -1130,10 +1130,10 @@
           0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ},
         },
     },
 @@ -1143,10 +1143,10 @@
           PCI_VENDOR_IODATA, 0xd007 },
         { 0xffff,    0xffff,    0xffff,    0xffff     },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 8 },
         },
     },
 @@ -1156,10 +1156,10 @@
           PCI_VENDOR_SIIG, 0x2082    },
         { 0xffff,    0xffff,    0xffff,    0xffff     },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 10},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 10},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 10},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 10},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 10},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 10},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 10},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 10},
         },
     },
 @@ -1169,7 +1169,7 @@
           0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x00, 0x00 },
         },
     },
 @@ -1179,14 +1179,14 @@
           PCI_VENDOR_OXFORDSEMI, 0x0671 },
         { 0xffff,    0xffff,    0xffff,    0xffff     },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x18, 0x38, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x08, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x10, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x20, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x28, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x30, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x38, COM_FREQ},
         },
     },
 @@ -1196,14 +1196,14 @@
           0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 10},
 -          { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 10},
 -          { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 10},
 -          { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 10},
 -          { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 10},
 -          { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 10},
 -          { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ * 10},
 -          { PUC_PORT_TYPE_COM, 0x18, 0x38, COM_FREQ * 10},
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 10},
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x08, COM_FREQ * 10},
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x10, COM_FREQ * 10},
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 10},
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x20, COM_FREQ * 10},
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x28, COM_FREQ * 10},
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x30, COM_FREQ * 10},
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x38, COM_FREQ * 10},
         },
     },
 @@ -1212,7 +1212,7 @@
           0x1fd4,    0x0100 },
         { 0xffff,    0xffff,    0xffff,    0xeff0 },
         {
 -          { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR1, 0x00, 0x00 },
         },
     },
 @@ -1221,26 +1221,26 @@
           0x1fd4,    0x0010 },
         { 0xffff,    0xffff,    0xffff,    0xffff },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x14, 0x08, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x14, 0x10, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x14, 0x18, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x08, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x10, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x18, COM_FREQ * 8},
 /*
   * PUC_MAX_PORTS needs to be raised in order to reach these ports
   */
 #if PUC_MAX_PORTS >=3D 16
 -          { PUC_PORT_TYPE_COM, 0x14, 0x20, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x14, 0x28, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x14, 0x30, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x14, 0x38, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x14, 0x40, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x14, 0x48, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x14, 0x50, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x14, 0x58, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x20, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x28, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x30, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x38, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x40, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x48, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x50, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x58, COM_FREQ * 8},
 #endif /* PUC_MAX_PORTS >=3D 16 */
         },
     },
 @@ -1250,7 +1250,7 @@
           0x1fd4,    0x0001 },
         { 0xffff,    0xffff,    0xffff,    0xffff },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8},
         },
     },
 @@ -1259,8 +1259,8 @@
           0x1fd4,    0x0002 },
         { 0xffff,    0xffff,    0xffff,    0xffff },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8},
         },
     },
 @@ -1269,10 +1269,10 @@
           0x1fd4,    0x0004 },
         { 0xffff,    0xffff,    0xffff,    0xffff },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 8},
         },
     },
 @@ -1281,14 +1281,14 @@
           0x1fd4,    0x0008 },
         { 0xffff,    0xffff,    0xffff,    0xffff },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x14, 0x08, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x14, 0x10, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x14, 0x18, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x08, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x10, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x18, COM_FREQ * 8},
         },
     },
 @@ -1297,8 +1297,8 @@
           0x1fd4,    0x0101 },
         { 0xffff,    0xffff,    0xffff,    0xeff0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_LPT, PCI_BAR1, 0x00, 0x00 },
         },
     },
 @@ -1307,9 +1307,9 @@
           0x1fd4,    0x0102 },
         { 0xffff,    0xffff,    0xffff,    0xffff },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_LPT, PCI_BAR1, 0x00, 0x00 },
         },
     },
 @@ -1318,11 +1318,11 @@
           0x1fd4,    0x0104 },
         { 0xffff,    0xffff,    0xffff,    0xffff },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_LPT, PCI_BAR1, 0x00, 0x00 },
         },
     },
 @@ -1341,8 +1341,8 @@
         { PCI_VENDOR_PLX, PCI_PRODUCT_PLX_9050, 0xd84d,    0x6810     },
         { 0xffff,    0xffff,    0xffff,    0xffff     },
         {
 -          { PUC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },
 -          { PUC_PORT_TYPE_LPT, 0x24, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR4, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR5, 0x00, 0x00 },
         },
     },
 @@ -1361,8 +1361,8 @@
         { PCI_VENDOR_PLX, PCI_PRODUCT_PLX_9050, 0xd84d,    0x6808     },
         { 0xffff,    0xffff,    0xffff,    0xffff     },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ },
         },
     },
 @@ -1380,8 +1380,8 @@
           PCI_VENDOR_QINHENG, 0x3253 },
         { 0xffff, 0xffff, 0xffff, 0xffff  },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },
         },
     },
 @@ -1390,9 +1390,9 @@
           PCI_VENDOR_QINHENG, 0x7053 },
         { 0xffff, 0xffff, 0xffff, 0xffff  },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR2, 0x00, 0x00 },
         },
     },
 @@ -1401,7 +1401,7 @@
         { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82946GZ_KT, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -1410,7 +1410,7 @@
         { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82P965_KT, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -1419,7 +1419,7 @@
         { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82965PM_KT, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -1428,7 +1428,7 @@
         { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82965GME_KT, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -1437,7 +1437,7 @@
         { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82Q965_KT, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -1446,7 +1446,7 @@
         { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82G33_KT, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -1455,7 +1455,7 @@
         { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82Q35_KT, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -1464,7 +1464,7 @@
         { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82Q33_KT, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -1473,7 +1473,7 @@
         { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82X38_KT, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -1482,7 +1482,7 @@
         { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_3200_KT, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -1491,7 +1491,7 @@
         { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82GM45_KT, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -1500,7 +1500,7 @@
         { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82Q45_KT, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -1509,7 +1509,7 @@
         { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_3400_KT, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -1518,7 +1518,7 @@
         { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_6SERIES_KT, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -1527,7 +1527,7 @@
         { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_7SERIES_KT, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -1536,7 +1536,7 @@
         { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_8SERIES_KT, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -1545,7 +1545,7 @@
         { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_C600_KT, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -1554,7 +1554,7 @@
         { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_EG20T_UART_0, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -1563,7 +1563,7 @@
         { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_EG20T_UART_1, 0, 1 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -1572,7 +1572,7 @@
         { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_EG20T_UART_2, 0, 2 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -1581,7 +1581,7 @@
         { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_EG20T_UART_3, 0, 3 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 @@ -1591,8 +1591,8 @@
           PCI_VENDOR_PLX, 0x1103 },
         { 0xffff,    0xffff,    0xffff,    0xffff     },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ * 8 },
         },
     },
 @@ -1602,10 +1602,10 @@
           PCI_VENDOR_PLX, 0x1077     },
         { 0xffff,    0xffff,    0xffff,    0xffff     },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x08, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x10, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 8 },
         },
     },
 @@ -1615,14 +1615,14 @@
           PCI_VENDOR_PLX, 0x1076     },
         { 0xffff,    0xffff,    0xffff,    0xffff     },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x38, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x08, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x10, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x20, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x28, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x30, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x38, COM_FREQ * 8 },
         },
     },
 @@ -1633,10 +1633,10 @@
         { PCI_VENDOR_PLX, PCI_PRODUCT_PLX_9030, 0x155f, 0xf001 },
         { 0xffff, 0xffff, 0xffff, 0xffff  },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x08, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x10, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 4 },
         },
     },
 @@ -1647,10 +1647,10 @@
         { PCI_VENDOR_PLX, PCI_PRODUCT_PLX_9050, 0x155f, 0xf001 },
         { 0xffff, 0xffff, 0xffff, 0xffff  },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x08, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x10, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 4 },
         },
     },
 @@ -1661,14 +1661,14 @@
         { PCI_VENDOR_PLX, PCI_PRODUCT_PLX_9030, 0x155f, 0xf010 },
         { 0xffff, 0xffff, 0xffff, 0xffff  },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x38, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x08, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x10, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x20, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x28, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x30, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x38, COM_FREQ * 4 },
         },
     },
 @@ -1679,14 +1679,14 @@
         { PCI_VENDOR_PLX, PCI_PRODUCT_PLX_9050, 0x155f, 0xf010 },
         { 0xffff, 0xffff, 0xffff, 0xffff  },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x38, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x08, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x10, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x20, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x28, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x30, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x38, COM_FREQ * 4 },
         },
     },
 @@ -1699,10 +1699,10 @@
         {   PCI_VENDOR_PLX, PCI_PRODUCT_PLX_9050, 0x12e0, 0x0031  },
         {   0xffff, 0xffff, 0xffff, 0xffff  },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x08, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x10, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 4 },
         },
     },
 @@ -1715,14 +1715,14 @@
         {   PCI_VENDOR_PLX, PCI_PRODUCT_PLX_9050, 0x12e0, 0x0021  },
         {   0xffff, 0xffff, 0xffff, 0xffff  },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 4 },
 -         { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ * 4 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x38, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x08, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x10, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x20, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x28, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x30, COM_FREQ * 4 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x38, COM_FREQ * 4 },
         },
     },
 @@ -1745,7 +1745,7 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER10_S550, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR1 },
         },
     },
 @@ -1755,7 +1755,7 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER10_S650, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR1 },
         },
     },
 @@ -1765,7 +1765,7 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER10_S850, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR1 },
         },
     },
 @@ -1775,9 +1775,9 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER10_IO550, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR0 },
 -          { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR3, 0x00, 0x00 },
         },
     },
 @@ -1786,9 +1786,9 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER10_IO650, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR0 },
 -          { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR3, 0x00, 0x00 },
         },
     },
 @@ -1797,9 +1797,9 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER10_IO850, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR0 },
 -          { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR3, 0x00, 0x00 },
         },
     },
 @@ -1808,7 +1808,7 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER10_P, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR2, 0x00, 0x00 },
         },
     },
 @@ -1817,8 +1817,8 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER10_2P, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
 -          { PUC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR2, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR4, 0x00, 0x00 },
         },
     },
 @@ -1827,9 +1827,9 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER10_2S550, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR2 },
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR3 },
         },
     },
 @@ -1839,9 +1839,9 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER10_2S650, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR2 },
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR3 },
         },
     },
 @@ -1851,9 +1851,9 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER10_2S850, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR2 },
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR3 },
         },
     },
 @@ -1864,11 +1864,11 @@
           0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR2 },
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR3 },
 -          { PUC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR4, 0x00, 0x00 },
         },
     },
 @@ -1878,11 +1878,11 @@
           0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR2 },
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR3 },
 -          { PUC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR4, 0x00, 0x00 },
         },
     },
 @@ -1892,11 +1892,11 @@
           0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR2 },
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR3 },
 -          { PUC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR4, 0x00, 0x00 },
         },
     },
 @@ -1905,11 +1905,11 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER10_4S550, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR0 },
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x24, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR5, 0x00, COM_FREQ * 8 },
         },
     },
 @@ -1918,11 +1918,11 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER10_4S650, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR0 },
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x24, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR5, 0x00, COM_FREQ * 8 },
         },
     },
 @@ -1931,11 +1931,11 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER10_4S850, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR0 },
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x24, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR5, 0x00, COM_FREQ * 8 },
         },
     },
 @@ -1948,7 +1948,7 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER20_S550, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
         },
     },
 @@ -1958,7 +1958,7 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER20_S650, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
         },
     },
 @@ -1968,7 +1968,7 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER20_S850, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
         },
     },
 @@ -1978,9 +1978,9 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER20_IO550, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
 -          { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR1, 0x00, 0x00 },
         },
     },
 @@ -1989,9 +1989,9 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER20_IO650, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
 -          { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR1, 0x00, 0x00 },
         },
     },
 @@ -2000,9 +2000,9 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER20_IO850, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
 -          { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR1, 0x00, 0x00 },
         },
     },
 @@ -2011,7 +2011,7 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER20_P, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x00, 0x00 },
         },
     },
 @@ -2020,8 +2020,8 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER20_2P, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
 -          { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR2, 0x00, 0x00 },
         },
     },
 @@ -2030,9 +2030,9 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER20_2S550, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR1 },
         },
     },
 @@ -2042,9 +2042,9 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER20_2S650, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR1 },
         },
     },
 @@ -2054,9 +2054,9 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER20_2S850, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR1 },
         },
     },
 @@ -2067,10 +2067,10 @@
           0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
 -          { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },
 -          { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR1, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR3, 0x00, 0x00 },
         },
     },
 @@ -2080,10 +2080,10 @@
           0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
 -          { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },
 -          { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR1, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR3, 0x00, 0x00 },
         },
     },
 @@ -2093,10 +2093,10 @@
           0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
 -          { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },
 -          { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR1, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR3, 0x00, 0x00 },
         },
     },
 @@ -2105,11 +2105,11 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER20_4S550, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ * 8 },
         },
     },
 @@ -2118,11 +2118,11 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER20_4S650, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ * 8 },
         },
     },
 @@ -2131,11 +2131,11 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_CYBER20_4S850, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ * 8 },
         },
     },
 @@ -2145,11 +2145,11 @@
           0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR1 },
 -          { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR2, 0x00, 0x00 },
         },
     },
 @@ -2159,11 +2159,11 @@
           0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR1 },
 -          { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR2, 0x00, 0x00 },
         },
     },
 @@ -2173,11 +2173,11 @@
           0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR1 },
 -          { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR2, 0x00, 0x00 },
         },
     },
 @@ -2186,15 +2186,15 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_PS8000P550, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x20, 0x08, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x20, 0x10, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x20, 0x18, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x08, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x10, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x18, COM_FREQ * 8 },
         },
     },
 @@ -2203,15 +2203,15 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_PS8000P650, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x20, 0x08, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x20, 0x10, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x20, 0x18, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x08, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x10, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x18, COM_FREQ * 8 },
         },
     },
 @@ -2220,15 +2220,15 @@
         { PCI_VENDOR_SIIG,     PCI_PRODUCT_SIIG_PS8000P850, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00,
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,
               (COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x20, 0x08, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x20, 0x10, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x20, 0x18, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x08, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x10, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x18, COM_FREQ * 8 },
         },
     },
 @@ -2241,7 +2241,7 @@
           PCI_VENDOR_SUNIX, 0x4000 },
         { 0xffff,    0xffff,    0xffff,    0xeff0 },
         {
 -          { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x00, 0x00 },
         },
     },
 @@ -2250,8 +2250,8 @@
           PCI_VENDOR_SUNIX, 0x4010 },
         { 0xffff,    0xffff,    0xffff,    0xeff0 },
         {
 -          { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
 -          { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR2, 0x00, 0x00 },
         },
     },
 @@ -2260,7 +2260,7 @@
           PCI_VENDOR_SUNIX, 0x4020 },
         { 0xffff,    0xffff,    0xffff,    0xeff0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8},
         },
     },
 @@ -2269,8 +2269,8 @@
           PCI_VENDOR_SUNIX, 0x4030 },
         { 0xffff,    0xffff,    0xffff,    0xeff0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8},
         },
     },
 @@ -2279,8 +2279,8 @@
           PCI_VENDOR_SUNIX, 0x0002 },
         { 0xffff,    0xffff,    0xffff,    0xeff0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8},
         },
     },
 @@ -2289,10 +2289,10 @@
           PCI_VENDOR_SUNIX, 0x4050 },
         { 0xffff,    0xffff,    0xffff,    0xeff0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x14, 0x08, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x08, COM_FREQ},
         },
     },
 @@ -2301,14 +2301,14 @@
           PCI_VENDOR_SUNIX, 0x4060 },
         { 0xffff,    0xffff,    0xffff,    0xeff0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x14, 0x08, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x24, 0x00, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x08, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x00, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR5, 0x00, COM_FREQ},
         },
     },
 @@ -2317,9 +2317,9 @@
           PCI_VENDOR_SUNIX, 0x4070 },
         { 0xffff,    0xffff,    0xffff,    0xeff0 },
         {
 -         { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8},
 +         { PUC_PORT_TYPE_LPT, PCI_BAR2, 0x00, 0x00 },
         },
     },
 @@ -2328,10 +2328,10 @@
           PCI_VENDOR_SUNIX, 0x4080 },
         { 0xffff,    0xffff,    0xffff,    0xeff0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
 -          { PUC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_LPT, PCI_BAR2, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR4, 0x00, 0x00 },
         },
     },
 @@ -2340,12 +2340,12 @@
           PCI_VENDOR_SUNIX, 0x4090 },
         { 0xffff,    0xffff,    0xffff,    0xeff0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ},
 -          { PUC_PORT_TYPE_COM, 0x14, 0x08, COM_FREQ},
 -          { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },
 -          { PUC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ},
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x08, COM_FREQ},
 +          { PUC_PORT_TYPE_LPT, PCI_BAR2, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR4, 0x00, 0x00 },
         },
     },
 @@ -2358,8 +2358,8 @@
           0x0, 0x0  },
         { 0xffff,    0xffff,    0x0, 0x0  },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8},
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8},
         },
     },
 @@ -2373,10 +2373,10 @@
         {   PCI_VENDOR_SYBA, PCI_PRODUCT_SYBA_4S,        0, 0 },
         { 0xffff,    0xffff,                         0, 0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x3e8, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x2e8, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x3f8, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x2f8, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x3e8, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x2e8, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x3f8, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x2f8, COM_FREQ },
         },
     },
 @@ -2385,12 +2385,12 @@
         {   PCI_VENDOR_SYBA, PCI_PRODUCT_SYBA_4S2P,      0, 0 },
         { 0xffff,    0xffff,                         0, 0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x2e8, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x2f8, COM_FREQ },
 -          { PUC_PORT_TYPE_LPT, 0x10, 0x000, 0x00 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x3e8, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x3f8, COM_FREQ },
 -          { PUC_PORT_TYPE_LPT, 0x10, 0x000, 0x00 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x2e8, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x2f8, COM_FREQ },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x000, 0x00 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x3e8, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x3f8, COM_FREQ },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x000, 0x00 },
         },
     },
 @@ -2399,10 +2399,10 @@
         { PCI_VENDOR_SYSTEMBASE, PCI_PRODUCT_SYSTEMBASE_SB16C1054, 0, 0 },
         { 0xffff,    0xffff,                              0, 0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ },
         },
     },
 @@ -2411,14 +2411,14 @@
         {   PCI_VENDOR_SYSTEMBASE, PCI_PRODUCT_SYSTEMBASE_SB16C1058, 0, 0 }=
 ,
         { 0xffff,    0xffff,                              0, 0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x20, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x28, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x30, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x38, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x20, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x28, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x30, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x38, COM_FREQ },
         },
     },
 @@ -2431,7 +2431,7 @@
         { PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI010L,    0, 0 },
         { 0xffff, 0xffff,                      0, 0 },
         {
 -          { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR3, 0x00, 0x00 },
         },
     },
 @@ -2445,7 +2445,7 @@
         { PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI100L,   0, 0 },
         { 0xffff, 0xffff,                            0, 0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ * 8 },
         },
     },
 @@ -2458,8 +2458,8 @@
         { PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI110L,   0, 0 },
         { 0xffff, 0xffff,                            0, 0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR3, 0x00, 0x00 },
         },
     },
 @@ -2473,8 +2473,8 @@
         { PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI200L,   0, 0 },
         { 0xffff, 0xffff,                            0, 0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },
         },
     },
 @@ -2487,9 +2487,9 @@
         { PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI210L,   0, 0 },
         { 0xffff, 0xffff,                      0, 0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR3, 0x00, 0x00 },
         },
     },
 @@ -2498,8 +2498,8 @@
         { PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI200LI,  0, 0 },
         { 0xffff, 0xffff,                            0, 0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ },
 -          { PUC_PORT_TYPE_COM, 0x20, 0x08, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x08, COM_FREQ },
         },
     },
 @@ -2508,10 +2508,10 @@
         { PCI_VENDOR_MOLEX, PCI_PRODUCT_MOLEX_VSCOM_PCI400L,   0, 0 },
         { 0xffff, 0xffff,                      0, 0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x20, 0x08, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x08, COM_FREQ * 8 },
         },
     },
 @@ -2519,14 +2519,14 @@
         { PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI800L,   0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x20, 0x08, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x20, 0x10, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x20, 0x18, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x20, 0x20, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x20, 0x28, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x08, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x10, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x18, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x20, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR4, 0x28, COM_FREQ * 8 },
         },
     },
 @@ -2534,7 +2534,7 @@
         { PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI011H,   0, 0 },
         { 0xffff, 0xffff,                      0, 0 },
         {
 -          { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x00, 0x00 },
         },
     },
 @@ -2546,7 +2546,7 @@
         { PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCIx10H,   0, 0 },
         { 0xffff, 0xffff,                      0, 0 },
         {
 -          { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x00, 0x00 },
         },
     },
 @@ -2560,7 +2560,7 @@
         { PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI100H,   0, 0 },
         { 0xffff, 0xffff,                      0, 0 },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8 },
         },
     },
 @@ -2573,28 +2573,28 @@
         { PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI800H,   0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 8 },
         },
     },
     {   "VScom PCI-800H",
         { PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI800H_1, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 8 },
         },
     },
          {   "VScom PCI-200H",
         {   PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI200H, 0, 0 },
              {   0xffff, 0xffff, 0,      0       },
              {
 -                { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
 -                { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },
 +                { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8 },
 +                { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8 },
              },
          },
 @@ -2602,15 +2602,15 @@
         {   PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI010HV2,    0, 0 },
         {   0xffff, 0xffff, 0,      0       },
         {
 -          { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },
 +          { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x00, 0x00 },
         },
     },
     {   "VScom PCI-200HV2",
         {   PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI200HV2,    0, 0 },
         {   0xffff, 0xffff, 0,      0       },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },
 -          { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8 },
 +          { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ * 8 },
         },
     },
 @@ -2619,7 +2619,16 @@
         { PCI_VENDOR_USR, PCI_PRODUCT_USR_3CP5609, 0, 0 },
         { 0xffff,    0xffff,    0,   0    },
         {
 -          { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
 +        },
 +    },
 +
 +    /* Intel Centerton Processor UART */
 +    {   "Centerton Processor Integrated PCI UART",
 +        { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_CENTERTON_UART, 0, 0 },
 +        { 0xffff,    0xffff,    0,   0    },
 +        {
 +          { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },
         },
     },
 
 
 
 --_000_A5B985BD62DE2943886F9B23F410AF1F01B76F213BFEAUSX7MCPC10_
 Content-Type: text/html; charset="us-ascii"
 Content-Transfer-Encoding: quoted-printable
 
 <html xmlns:v=3D"urn:schemas-microsoft-com:vml" xmlns:o=3D"urn:schemas-micr=
 osoft-com:office:office" xmlns:w=3D"urn:schemas-microsoft-com:office:word" =
 xmlns:m=3D"http://schemas.microsoft.com/office/2004/12/omml"; xmlns=3D"http:=
 //www.w3.org/TR/REC-html40"><head><meta http-equiv=3DContent-Type content=
 =3D"text/html; charset=3Dus-ascii"><meta name=3DGenerator content=3D"Micros=
 oft Word 14 (filtered medium)"><style><!--
 /* Font Definitions */
 @font-face
        {font-family:Helvetica;
        panose-1:2 11 6 4 2 2 2 2 2 4;}
 @font-face
        {font-family:Courier;
        panose-1:2 7 4 9 2 2 5 2 4 4;}
 @font-face
        {font-family:"Tms Rmn";
        panose-1:2 2 6 3 4 5 5 2 3 4;}
 @font-face
        {font-family:Helv;
        panose-1:2 11 6 4 2 2 2 3 2 4;}
 @font-face
        {font-family:"New York";
        panose-1:2 4 5 3 6 5 6 2 3 4;}
 @font-face
        {font-family:System;
        panose-1:0 0 0 0 0 0 0 0 0 0;}
 @font-face
        {font-family:Wingdings;
        panose-1:5 0 0 0 0 0 0 0 0 0;}
 @font-face
        {font-family:"MS Mincho";
        panose-1:2 2 6 9 4 2 5 8 3 4;}
 @font-face
        {font-family:Batang;
        panose-1:2 3 6 0 0 1 1 1 1 1;}
 @font-face
        {font-family:SimSun;
        panose-1:2 1 6 0 3 1 1 1 1 1;}
 @font-face
        {font-family:PMingLiU;
        panose-1:2 2 5 0 0 0 0 0 0 0;}
 @font-face
        {font-family:"MS Gothic";
        panose-1:2 11 6 9 7 2 5 8 2 4;}
 @font-face
        {font-family:Dotum;
        panose-1:2 11 6 0 0 1 1 1 1 1;}
 @font-face
        {font-family:SimHei;
        panose-1:2 1 6 9 6 1 1 1 1 1;}
 @font-face
        {font-family:MingLiU;
        panose-1:2 2 5 9 0 0 0 0 0 0;}
 @font-face
        {font-family:Mincho;
        panose-1:2 2 6 9 4 3 5 8 3 5;}
 @font-face
        {font-family:Gulim;
        panose-1:2 11 6 0 0 1 1 1 1 1;}
 @font-face
        {font-family:Century;
        panose-1:2 4 6 4 5 5 5 2 3 4;}
 @font-face
        {font-family:"Angsana New";
        panose-1:2 2 6 3 5 4 5 2 3 4;}
 @font-face
        {font-family:"Cordia New";
        panose-1:2 11 3 4 2 2 2 2 2 4;}
 @font-face
        {font-family:Mangal;
        panose-1:2 4 5 3 5 2 3 3 2 2;}
 @font-face
        {font-family:Latha;
        panose-1:2 11 6 4 2 2 2 2 2 4;}
 @font-face
        {font-family:Sylfaen;
        panose-1:1 10 5 2 5 3 6 3 3 3;}
 @font-face
        {font-family:Vrinda;
        panose-1:2 11 5 2 4 2 4 2 2 3;}
 @font-face
        {font-family:Raavi;
        panose-1:2 11 5 2 4 2 4 2 2 3;}
 @font-face
        {font-family:Shruti;
        panose-1:2 11 5 2 4 2 4 2 2 3;}
 @font-face
        {font-family:Sendnya;
        panose-1:0 0 4 0 0 0 0 0 0 0;}
 @font-face
        {font-family:Gautami;
        panose-1:2 11 5 2 4 2 4 2 2 3;}
 @font-face
        {font-family:Tunga;
        panose-1:2 11 5 2 4 2 4 2 2 3;}
 @font-face
        {font-family:"Estrangelo Edessa";
        panose-1:3 8 6 0 0 0 0 0 0 0;}
 @font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
 @font-face
        {font-family:"Arial Unicode MS";
        panose-1:2 11 6 4 2 2 2 2 2 4;}
 @font-face
        {font-family:Cambria;
        panose-1:2 4 5 3 5 4 6 3 2 4;}
 @font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
 @font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
 @font-face
        {font-family:"\@SimSun";
        panose-1:2 1 6 0 3 1 1 1 1 1;}
 @font-face
        {font-family:Consolas;
        panose-1:2 11 6 9 2 2 4 3 2 4;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";}
 a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
 a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
 p.MsoListParagraph, li.MsoListParagraph, div.MsoListParagraph
        {mso-style-priority:34;
        margin-top:0in;
        margin-right:0in;
        margin-bottom:0in;
        margin-left:.5in;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";}
 span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
 span.msoIns
        {mso-style-type:export-only;
        mso-style-name:"";
        text-decoration:underline;
        color:teal;}
 span.msoDel
        {mso-style-type:export-only;
        mso-style-name:"";
        text-decoration:line-through;
        color:red;}
 .MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri","sans-serif";}
 @page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
 div.WordSection1
        {page:WordSection1;}
 /* List Definitions */
 @list l0
        {mso-list-id:2075278404;
        mso-list-type:hybrid;
        mso-list-template-ids:-1570235902 1847129984 67698691 67698693 67698689 
67=
 698691 67698693 67698689 67698691 67698693;}
 @list l0:level1
        {mso-level-start-at:0;
        mso-level-number-format:bullet;
        mso-level-text:-;
        mso-level-tab-stop:none;
        mso-level-number-position:left;
        text-indent:-.25in;
        font-family:"Courier New";
        mso-fareast-font-family:SimSun;}
 @list l0:level2
        {mso-level-number-format:bullet;
        mso-level-text:o;
        mso-level-tab-stop:none;
        mso-level-number-position:left;
        text-indent:-.25in;
        font-family:"Courier New";}
 @list l0:level3
        {mso-level-number-format:bullet;
        mso-level-text:\F0A7;
        mso-level-tab-stop:none;
        mso-level-number-position:left;
        text-indent:-.25in;
        font-family:Wingdings;}
 @list l0:level4
        {mso-level-number-format:bullet;
        mso-level-text:\F0B7;
        mso-level-tab-stop:none;
        mso-level-number-position:left;
        text-indent:-.25in;
        font-family:Symbol;}
 @list l0:level5
        {mso-level-number-format:bullet;
        mso-level-text:o;
        mso-level-tab-stop:none;
        mso-level-number-position:left;
        text-indent:-.25in;
        font-family:"Courier New";}
 @list l0:level6
        {mso-level-number-format:bullet;
        mso-level-text:\F0A7;
        mso-level-tab-stop:none;
        mso-level-number-position:left;
        text-indent:-.25in;
        font-family:Wingdings;}
 @list l0:level7
        {mso-level-number-format:bullet;
        mso-level-text:\F0B7;
        mso-level-tab-stop:none;
        mso-level-number-position:left;
        text-indent:-.25in;
        font-family:Symbol;}
 @list l0:level8
        {mso-level-number-format:bullet;
        mso-level-text:o;
        mso-level-tab-stop:none;
        mso-level-number-position:left;
        text-indent:-.25in;
        font-family:"Courier New";}
 @list l0:level9
        {mso-level-number-format:bullet;
        mso-level-text:\F0A7;
        mso-level-tab-stop:none;
        mso-level-number-position:left;
        text-indent:-.25in;
        font-family:Wingdings;}
 ol
        {margin-bottom:0in;}
 ul
        {margin-bottom:0in;}
 --></style><!--[if gte mso 9]><xml>
 <o:shapedefaults v:ext=3D"edit" spidmax=3D"1026" />
 </xml><![endif]--><!--[if gte mso 9]><xml>
 <o:shapelayout v:ext=3D"edit">
 <o:idmap v:ext=3D"edit" data=3D"1" />
 </o:shapelayout></xml><![endif]--></head><body lang=3DEN-US link=3Dblue vli=
 nk=3Dpurple><div class=3DWordSection1><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>Add support for Int=
 el Centerton SOC&#8217;s Integrated UART<o:p></o:p></span></p><p class=3DMs=
 oListParagraph style=3D'text-indent:-.25in;mso-list:l0 level1 lfo1;text-aut=
 ospace:none'><![if !supportLists]><span style=3D'font-family:"Courier New"'=
 ><span style=3D'mso-list:Ignore'>-<span style=3D'font:7.0pt "Times New Roma=
 n"'>&nbsp;&nbsp; </span></span></span><![endif]><span style=3D'font-family:=
 "Courier New"'>Updated PCI database to add entry for Centerton Integrated U=
 ART.<o:p></o:p></span></p><p class=3DMsoListParagraph style=3D'text-indent:=
 -.25in;mso-list:l0 level1 lfo1;text-autospace:none'><![if !supportLists]><s=
 pan style=3D'font-family:"Courier New"'><span style=3D'mso-list:Ignore'>-<s=
 pan style=3D'font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></spa=
 n><![endif]><span style=3D'font-family:"Courier New"'>Updated consinit to u=
 se Integrated UART as early console.<o:p></o:p></span></p><p class=3DMsoLis=
 tParagraph style=3D'text-indent:-.25in;mso-list:l0 level1 lfo1;text-autospa=
 ce:none'><![if !supportLists]><span style=3D'font-family:"Courier New"'><sp=
 an style=3D'mso-list:Ignore'>-<span style=3D'font:7.0pt "Times New Roman"'>=
 &nbsp;&nbsp; </span></span></span><![endif]><span style=3D'font-family:"Cou=
 rier New"'>Replaced PCI BAR address in hexadecimal with PCI_BAR* macros for=
  better code readability.<o:p></o:p></span></p><p class=3DMsoListParagraph =
 style=3D'text-indent:-.25in;mso-list:l0 level1 lfo1;text-autospace:none'><!=
 [if !supportLists]><span style=3D'font-family:"Courier New"'><span style=3D=
 'mso-list:Ignore'>-<span style=3D'font:7.0pt "Times New Roman"'>&nbsp;&nbsp=
 ; </span></span></span><![endif]><span style=3D'font-family:"Courier New"'>=
 User should make sure that following entries are present in kernel conf fil=
 e in order to use this driver.<o:p></o:p></span></p><p class=3DMsoListParag=
 raph style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"=
 '>puc* at pci? Dev ? function ?<o:p></o:p></span></p><p class=3DMsoListPara=
 graph style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>options&nbsp;&nbsp;&nbsp; PUCCN<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'><=
 o:p>&nbsp;</o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'>Index: arch/x86/x86/consinit.c=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'>=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>RCS file: /cvsroo=
 t/src/sys/arch/x86/x86/consinit.c,v<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>=
 retrieving revision 1.24<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span style=3D'font-family:"Courier New"'>diff -u -r1=
 .24 consinit.c<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span style=3D'font-family:"Courier New"'>--- arch/x86/x86/cons=
 init.c&nbsp;&nbsp;&nbsp;&nbsp; 13 Oct 2012 17:58:55 -0000 1.24<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'>+++ arch/x86/x86/consinit.c&nbsp;&nbsp;&nbsp;&nb=
 sp; 5 Jul 2013 01:08:40 -0000<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>@@ -37=
 ,6 +37,7 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'> #include &lt;sys/bus.h&=
 gt;<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'> #include &lt;machine/bootinfo.h=
 &gt;<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'> #include &lt;arch/x86/include/=
 genfb_machdep.h&gt;<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>+#include &lt;de=
 v/cons.h&gt;<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'> <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'>&nbsp;#include &quot;genfb.h&quot;<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'> #include &quot;vga.h&quot;<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>@@ -99,6 +100,11 @@<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> int c=
 omcnmode =3D CONMODE;<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'> #endif /* NCO=
 M */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+#if (PUCCN &gt; 0)<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+void =
 comcnprobe(struct consdev *cn);<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+voi=
 d comcninit(struct consdev *cn);<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+#e=
 ndif /* PUCCN */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>+<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'> const struct btinfo_console default_consinfo =3D {<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; {0, 0},<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; CONSDEVNAME,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D=
 'font-family:"Courier New"'>@@ -212,7 +218,11 @@<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (co=
 mcnattach(x86_bus_space_io, addr, speed,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'>COM_FREQ, COM_TYPE_NORMAL, comcnmode))<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span st=
 yle=3D'font-family:"Courier New"'>panic(&quot;can't init serial console @%x=
 &quot;, consinfo-&gt;addr);<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>+#if (PUCCN &gt; 0)<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /*=
  Use PCI com serial port as system console */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; comcnprob=
 e(NULL);<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp; comcninit(NULL);<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+#endif<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return;<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; }<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> #en=
 dif<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'>Index: dev/pci/pcidevs<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span style=3D'font-family:"Courier New"'>RCS file: /cvsroot/src/sys=
 /dev/pci/pcidevs,v<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>retrieving revisi=
 on 1.1158<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span style=3D'font-family:"Courier New"'>diff -u -r1.1158 pcidevs<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>--- dev/pci/pcidevs&nbsp; 13 Jun 2013=
  06:11:34 -0000 1.1158<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span style=3D'font-family:"Courier New"'>+++ dev/pci/p=
 cidevs&nbsp; 5 Jul 2013 01:08:40 -0000<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>@@ -3525,6 +3525,7 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span style=3D'font-family:"Courier New"'> product IN=
 TEL CP_SCS_REGS 0xd157&nbsp;&nbsp;&nbsp;&nbsp; Core Processor System Contro=
 l and Status Registers<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span style=3D'font-family:"Courier New"'> product INTE=
 L CP_MISC_REGS&nbsp;&nbsp;&nbsp;&nbsp; 0xd158&nbsp;&nbsp;&nbsp;&nbsp; Core =
 Processor Miscellaneous Registers<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> p=
 roduct INTEL HANKSVILLE&nbsp; 0xf0fe&nbsp;&nbsp;&nbsp;&nbsp; HANKSVILLE LAN=
  Controller<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'>+product INTEL CENTERTON=
 _UART&nbsp;&nbsp; 0x0c5f&nbsp;&nbsp;&nbsp;&nbsp; Centerton Processor Integr=
 ated PCI UART<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'> <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fam=
 ily:"Courier New"'>&nbsp;<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>&nbsp;/*=
  Intergraph products */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'>Index: dev/p=
 ci/pcidevs.h<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'>=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>RCS f=
 ile: /cvsroot/src/sys/dev/pci/pcidevs.h,v<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'>retrieving revision 1.1150<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>dif=
 f -u -r1.1150 pcidevs.h<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'>--- dev/pci/=
 pcidevs.h 13 Jun 2013 06:11:54 -0000 1.1150<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+++ dev/pci/pcidevs.h 5 Jul 2013 01:08:41 -0000<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV styl=
 e=3D'font-family:"Courier New"'>@@ -1,4 +1,4 @@<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-=
 family:"Courier New"'>-/*&nbsp; $NetBSD: pcidevs.h,v 1.1150 2013/06/13 06:1=
 1:54 matt Exp $ */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>+/*&nbsp; $NetBSD=
 $&nbsp;&nbsp; */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'> <o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'>&nbsp;/*<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>&nbsp=
 ; * THIS FILE AUTOMATICALLY GENERATED.&nbsp; DO NOT EDIT.<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'>@@ -3532,6 +3532,7 @@<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'> #define&nbsp;&nbsp; PCI_PRODUCT_INTEL_CP_SCS_REGS&nbsp;&nbsp; 0x=
 d157&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* Core Processo=
 r System Control and Status Registers */<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier N=
 ew"'> #define&nbsp;&nbsp; PCI_PRODUCT_INTEL_CP_MISC_REGS&nbsp; 0xd158&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* Core Processor Miscella=
 neous Registers */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'> #define&nbsp;&nb=
 sp; PCI_PRODUCT_INTEL_HANKSVILLE&nbsp;&nbsp;&nbsp; 0xf0fe&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* HANKSVILLE LAN Controller */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>+#define&nbsp;&nbsp; PCI_PRODUCT_INTEL_CEN=
 TERTON_UART&nbsp;&nbsp;&nbsp;&nbsp; 0x0c5f&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp; /* Centerton Processor Integrated PCI UART */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span styl=
 e=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>&n=
 bsp;<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'>&nbsp;/* Intergraph products */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'>Index: dev/pci/pcidevs_data.h<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span st=
 yle=3D'font-family:"Courier New"'>=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'>RCS file: /cvsroot/src/=
 sys/dev/pci/pcidevs_data.h,v<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>retriev=
 ing revision 1.1149<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>diff -u -r1.1149=
  pcidevs_data.h<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span style=3D'font-family:"Courier New"'>--- dev/pci/pcidevs_=
 data.h 13 Jun 2013 06:11:54 -0000 1.1149<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier N=
 ew"'>+++ dev/pci/pcidevs_data.h 5 Jul 2013 01:08:41 -0000<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'>@@ -1,4 +1,4 @@<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"=
 '>-/*&nbsp; $NetBSD: pcidevs_data.h,v 1.1149 2013/06/13 06:11:54 matt Exp $=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'>+/*&nbsp; $NetBSD$&nbsp;&nbsp; *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'>&nbsp;/*<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span style=3D'font-family:"Courier New"'>&nbsp; * THIS FILE A=
 UTOMATICALLY GENERATED.&nbsp; DO NOT EDIT.<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'>@@ -5823,96 +5823,98 @@<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;20388, 10366, 7772, 19061, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_HANKSVILLE, <o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:=
 "Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;</span><spa=
 n lang=3DIT style=3D'font-family:"Courier New"'>20435, 4534, 6225, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_CENTERTON_UART, <o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDE s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 0446, 10366, 692, 615, 10885, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DDE style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_INTERGRAPH, P=
 CI_PRODUCT_INTERGRAPH_4D50T, <o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DDE style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20446, 20457, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDE st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20=
 456, 20467, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DDE style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_INTERGRAPH, PCI_PRODUCT_INTERGR=
 APH_4D60T, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DDE style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 20446, 20463, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DDE style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20456, 20473, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DDE style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;PCI_VENDOR_INTERSIL, PCI_PRODUCT_INTERSIL_MINI_PCI_WLAN, <o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 20469, 5525, 7454, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20479, 5525, 7454, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_INTERSIL, PCI_PRODUCT_INTERSIL_MINI_PCI_3877, <o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; 20478, 20484, 5525, 7454, 0,<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20488, 20494, 5525, 7454, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_INTERSIL, PCI_PRODUCT_INTERSIL_MINI_PCI_389=
 0, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 20478, 20491, 5525, 7454, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20488, 20501, 55=
 25, 7454, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_INVERTEX, PCI_PRODUCT_INVERTEX_AE=
 ON, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 20498, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20508, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_IODATA, PCI_PRODUCT_IODATA_CBIDE2, <o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20503, 20517, 6396, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 20513, 20527, 6396, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_IODATA, =
 PCI_PRODUCT_IODATA_CBSCII, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20531, 20538, 6440, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DI=
 T style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 20541, 20548, 6440, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_IODATA, PCI_PRODUCT_I=
 ODATA_RSAPCI, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; 20553, 13578, 10492, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20563, 135=
 78, 10492, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_IODATA, PCI_PRODUCT_IODATA_GVBCT=
 V5DL, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 20561, 20576, 20579, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20571, 20586, 20589, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_ITE, PCI_PRODUCT_ITE_IT8152, <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20585, 6729, 6333, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20595, 6729,=
  6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp;&nbsp;PCI_VENDOR_ITE, PCI_PRODUCT_ITE_IT8211, <o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20592, 6396, =
 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 20602, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_ITE, PCI_PRODUCT_ITE_I=
 T8212, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 20599, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20609, 6396, 6225, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDO=
 R_ITE, PCI_PRODUCT_ITE_IT8888, <o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>&nbs=
 p;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;6607, 6333, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fon=
 t-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEN=
 DOR_ITE, PCI_PRODUCT_ITE_IT8892, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>&n=
 bsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;15142, 6333, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_=
 VENDOR_ITT, PCI_PRODUCT_ITT_AGX016, <o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20606, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20=
 616, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_ITT, PCI_PRODUCT_ITT_ITT3204, <o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 20613, 6684, 6689, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20623, 6684, 6689, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB360, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20621=
 , 8249, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 20631, 8249, 6225, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_V=
 ENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB361, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20628, 20635, 62=
 25, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 20638, 20645, 6225, 0,<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-famil=
 y:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_JMI=
 CRON, PCI_PRODUCT_JMICRON_JMB362, <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20645, 8249, 6225, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; 20655, 8249, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier Ne=
 w"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_JMICRON, PCI_PRO=
 DUCT_JMICRON_JMB363, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20652, 20635, 6225, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2066=
 2, 20645, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRO=
 N_JMB365, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 20659, 20635, 6225, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20669, 20645, 6=
 225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB366, <=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; 20666, 20635, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20676, 20645, 6225, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB368, <o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DS=
 V style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 20673, 20680, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20683, 20690, 6225, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV s=
 tyle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&n=
 bsp;PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB38X_SD, <o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20685=
 , 8259, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20695, 8259, 6729, 6225, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DS=
 V style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB38X_MMC, <o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20=
 685, 20692, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20695, 20702, 6729, 6225, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp;&nbsp;PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB38X_MS, <o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 SV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 20685, 4513, 20699, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20695, 4513, 20709, 6729=
 , 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JMB38X=
 _XD, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 20685, 20705, 6729, 6225, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20695, 20715, =
 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_JM=
 B388_SD, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 20708, 8259, 6729, 6225, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20718, 8259=
 , 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_JMICRON, PCI_PRODUCT_JMICRON_=
 JMB388_MMC, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 20708, 20692, 6729, 6225, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20718=
 , 20702, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_JMICRON, PCI_PRODUCT_J=
 MICRON_JMB388_MS, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20708, 4513, 20699, 6729, 6225, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 20718, 4513, 20709, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_JMICR=
 ON, PCI_PRODUCT_JMICRON_JMB388_XD, <o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20708, 20705, 6729, 6225, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 20718, 20715, 6729, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 JMICRON, PCI_PRODUCT_JMICRON_JMC250, <o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20715, 5479, 5487, 6225,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 20725, 5479, 5487, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 JMICRON, PCI_PRODUCT_JMICRON_JMC260, <o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20722, 2439, 5487, 6225,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 20732, 2439, 5487, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 JNI, PCI_PRODUCT_JNI_JNIC1460, <o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20729, 20739, 5679, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 20739, 20749, 5679, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New=
 "'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_JNI, PCI_PRODUCT_=
 JNI_JNIC1560, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; 20753, 10019, 20739, 5679, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2076=
 3, 10019, 20749, 5679, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_JNI, PCI_PRODUCT_J=
 NI_FCI1063, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 20763, 20739, 5679, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20773, 20749,=
  5679, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_JNI, PCI_PRODUCT_JNI_FCX26562, <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 20772, 10019, 20739, 5679, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20782, 10019, 20749, 56=
 79, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_JNI, PCI_PRODUCT_JNI_FCX6562, <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 20782, 20739, 5679, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20792, 20749, 5679, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 SV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;PCI_VENDOR_JUNIPER, PCI_PRODUCT_JUNIPER_XCLK0, <o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20791=
 , 20804, 20810, 20818, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20801, 20814, 20820, 20828, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;PCI_VENDOR_KTI, PCI_PRODUCT_KTI_NE2KETHER, <o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV sty=
 le=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LMC, PCI_PRODUCT_LMC_HSSI, <o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 20820, 3027, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20830, 3027, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_LMC, PCI_PRODUCT_LMC_DS3, <o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20825, 3027, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 20835, 3027, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LMC, PCI_PRODUCT_LMC_SSI=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 20829, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20839, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_LMC, PCI_PRODUCT_LMC_DS1, <o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20833, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20843=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LAVA, PCI_PRODUCT_LAVA_TWOSP_2S, <o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DSV style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;</span><span lang=3DIT style=3D'font-family:"Courier New"'>=
 10019, 10492, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LAVA, PCI_PRODUCT_LAVA_QUATTR=
 O_AB, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DIT style=3D'font-family:"Courier New"'>@@ -5950,529 +5952,=
 529 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LAVA, PCI_PRODUCT_LAVA_PARALLELB, <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp;&nbsp;</span><span style=3D'font-family:"Courier New"'>10019, =
 16943, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp;&nbsp;PCI_VENDOR_LEADTEK, PCI_PRODUCT_LEADTEK_S3_805, <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 5296,=
  20837, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 5296, 20847, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LEVELONE, PCI_PRODUCT_LEVE=
 LONE_LXT1001, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 20841, 5502, 5487, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20851, 5502, 5487, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_LINEARSYS, PCI_PRODUCT_LINEARSYS_DVB_TX, <o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20850, 20854, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  20860, 20864, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LINEARSYS, PCI_PRODUCT_LINEARSYS_DVB_R=
 X, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; 20850, 20866, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 20860, 20876, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LINKSYS, P=
 CI_PRODUCT_LINKSYS_EG1032, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20875, 20882, 20885, 5479, 3888, 5679, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  20885, 20892, 20895, 5479, 3888, 5679, 0,<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LINKSYS, PCI_=
 PRODUCT_LINKSYS_EG1064, <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; 20893, 20882, 20885, 5479, 3888, 5679, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20=
 903, 20892, 20895, 5479, 3888, 5679, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span style=3D'font-family:"Courier Ne=
 w"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LINKSYS, PCI_PRO=
 DUCT_LINKSYS_PCMPC200, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 20900, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20910, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LINKSY=
 S, PCI_PRODUCT_LINKSYS_PCM200, <o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>&nbs=
 p;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;6285, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LI=
 NKSYS2, PCI_PRODUCT_LINKSYS2_IPN2220, <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20909, 20913, 4739, 4534, 5679, 2=
 0918, 20923, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 20919, 20923, 4739, 4534, 5679, 20928, 20933, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;PCI_VENDOR_LITEON, PCI_PRODUCT_LITEON_82C168, <o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20927, 20941, 5589, 5487=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; 20937, 20951, 5589, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 > &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LITEON, PCI_PRODUCT=
 _LITEON_82C115, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 20948, 20955, 20961, 5589, 5487, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20958, 20965, 20=
 971, 5589, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0=
 440, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 20965, 20973, 20978, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20975, 20983, 20988, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fon=
 t-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEN=
 DOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0441, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20978, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;20988, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0442, <o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20978, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 0988, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0443, <o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20=
 978, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 20988, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_=
 0444, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp; &n=
 bsp;&nbsp;20978, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 20988, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LUCENT, PCI_PRODUCT_LUC=
 ENT_LTMODEM_0445, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 20978, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20988, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LUCENT, PC=
 I_PRODUCT_LUCENT_LTMODEM_0446, <o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20978, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20988, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0447, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20978, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20988, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0448, <o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20978, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 0988, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0449, <o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20=
 978, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 20988, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_=
 044a, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 20978, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 20988, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LUCENT, PCI_PRODUCT_LUC=
 ENT_LTMODEM_044b, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 20978, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20988, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LUCENT, PC=
 I_PRODUCT_LUCENT_LTMODEM_044c, <o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20978, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20988, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_044d, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20978, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20988, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_044e, <o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20978, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 0988, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0450, <o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20=
 978, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 20988, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_=
 0451, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 20978, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 20988, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LUCENT, PCI_PRODUCT_LUC=
 ENT_LTMODEM_0452, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 20978, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20988, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LUCENT, PC=
 I_PRODUCT_LUCENT_LTMODEM_0453, <o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20978, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20988, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0454, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20978, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20988, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0455, <o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20978, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 0988, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_0456, <o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20=
 978, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 20988, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_=
 0457, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 20978, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 20988, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LUCENT, PCI_PRODUCT_LUC=
 ENT_LTMODEM_0458, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 20978, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20988, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LUCENT, PC=
 I_PRODUCT_LUCENT_LTMODEM_0459, <o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20978, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20988, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_LUCENT, PCI_PRODUCT_LUCENT_LTMODEM_045a, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20978, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20988, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_VENUSMODEM, <o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20986, 5534, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 20996, 5534, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_OR3LP26, <=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; 20992, 20997, 5926, 21002, 615, 21009, 20388, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 21002, 21007, 5926, 21012, 615, 21019, 20388, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_LUCENT, PCI_PRODUCT_LUCENT_OR3TP12, <o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20992, 20997, 5926, 21=
 014, 615, 21009, 20388, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21002, 21007, 5926, 21024, 615, 21=
 019, 20388, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_USBH=
 C, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DFR style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;6721, 6729, 6225, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDO=
 R_LUCENT, PCI_PRODUCT_LUCENT_USBHC2, <o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;13578, 6721, 6=
 729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_FW322=
 _323, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 21021, 14406, 14411, 6729, 6225, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21031=
 , 14406, 14411, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_LUCENT, PCI_PRO=
 DUCT_LUCENT_FW643_PCIE, <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21031, 18408, 14406, 21037, 6729, 622=
 5, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 21041, 18408, 14406, 21047, 6729, 6225, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_LUCENT, PCI_PRODUCT_LUCENT_ET1310, <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21043, 550=
 2, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 21053, 5502, 5487, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-f=
 amily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR=
 _LUCENT, PCI_PRODUCT_LUCENT_ET1301, <o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21050, 5589, 5487, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 21060, 5589, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MACRONIX, PCI_=
 PRODUCT_MACRONIX_MX98713, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21057, 21065, 5589, 5487, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; 21067, 21075, 5589, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MACRONIX,=
  PCI_PRODUCT_MACRONIX_MX987x5, <o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21072, 21065, 5589, 5487, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 21082, 21075, 5589, 5487, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MADGE=
 , PCI_PRODUCT_MADGE_SMARTRN2, <o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 12813, 16306, 615, 21080, 21089=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 12813, 16306, 615, 21090, 21099, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D=
 'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI=
 _VENDOR_MADGE, PCI_PRODUCT_MADGE_COLLAGE25, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21093, 16350, 68=
 95, 5679, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 21103, 16350, 6895, 5679, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_MADGE, PCI_PRODUCT_MADGE_COLLAGE155, <o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21093, 21101,=
  6895, 5679, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; 21103, 21111, 6895, 5679, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;PCI_VENDOR_MAGMA, PCI_PRODUCT_MAGMA_SERIAL16, <o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 13038, 19781, =
 21105, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 13038, 19781, 21115, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-f=
 amily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR=
 _MAGMA, PCI_PRODUCT_MAGMA_SERIAL4, <o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 6556, 19781, 21105, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 6556, 19781, 21115, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MATROX, PCI_P=
 RODUCT_MATROX_ATLAS, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21114, 21118, 21125, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 211=
 24, 21128, 21135, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MATROX, PCI_PRODUCT_MATRO=
 X_MILLENNIUM, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; 21114, 21135, 21146, 21152, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 211=
 24, 21145, 21156, 21162, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MATROX, PCI_PRODUC=
 T_MATROX_MYSTIQUE, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21114, 21162, 21171, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21124=
 , 21172, 21181, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MATROX, PCI_PRODUCT_MATROX_=
 MILLENNIUM2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 21114, 21135, 7361, 21178, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21124=
 , 21145, 7361, 21188, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MATROX, PCI_PRODUCT_M=
 ATROX_MILLENNIUM2_AGP, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21114, 21135, 7361, 21184, 8068, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 21124, 21145, 7361, 21194, 8068, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-f=
 amily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR=
 _MATROX, PCI_PRODUCT_MATROX_G200_PCI, <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21114, 21193, 615, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 21124, 21203, 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courie=
 r New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MATROX, PCI_=
 PRODUCT_MATROX_G200_AGP, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21114, 21193, 8068, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 21124, 21203, 8068, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MATROX, PCI_PRODUCT_M=
 ATROX_G200E_SE, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 21114, 21198, 21204, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21124, 2=
 1208, 21214, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MATROX, PCI_PRODUCT_MATROX_G40=
 0_AGP, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 21114, 21220, 8068, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21124, 21230, 80=
 68, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MATROX, PCI_PRODUCT_MATROX_G200EW, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 21114, 21225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21124, 21235, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;PCI_VENDOR_MATROX, PCI_PRODUCT_MATROX_IMPRESSION, <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21114, 212=
 32, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 21124, 21242, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MATROX, P=
 CI_PRODUCT_MATROX_G100_PCI, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21114, 21243, 615, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 21124, 21253, 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MATROX, PCI_PRODUCT_MA=
 TROX_G100_AGP, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; 21114, 21243, 8068, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21124, 212=
 53, 8068, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MATROX, PCI_PRODUCT_MATROX_G550_A=
 GP, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 21114, 21248, 8068, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21124, 21258, 8068, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MEDIAQ, PCI_PRODUCT_MEDIAQ_MQ200, <o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 21253, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; 21263, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MELLANO=
 X, PCI_PRODUCT_MELLANOX_MT23108, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;21259, 21270, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 21269, 21280, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MELLANOX, PCI_PRODUCT_MELLA=
 NOX_MT23108_PCI, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21259, 615, 6333, 21270, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 212=
 69, 615, 6333, 21280, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MELLANOX, PCI_PRODUCT=
 _MELLANOX_MT25204_OLD, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21259, 8732, 21278, 21281, 21286, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 21269, 8732, 21288, 21291, 21296, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_MELLANOX, PCI_PRODUCT_MELLANOX_MT25204, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21259, 8732, 212=
 78, 21293, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 21269, 8732, 21288, 21303, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_MELLANOX, PCI_PRODUCT_MELLANOX_MT25208_COMPAT, <o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 212=
 59, 8732, 21301, 21304, 21311, 21314, 21320, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21269, 8732, 2=
 1311, 21314, 21321, 21324, 21330, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MELLANOX,=
  PCI_PRODUCT_MELLANOX_MT25208, <o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21259, 8732, 21301, 21333, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; 21269, 8732, 21311, 21343, 0,<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-famil=
 y:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MEL=
 LANOX, PCI_PRODUCT_MELLANOX_MT25408_SDR, <o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21341, 21350, 21354,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 21351, 21360, 21364, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MELLA=
 NOX, PCI_PRODUCT_MELLANOX_MT25408_DDR, <o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21341, 21363, 21354, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 21351, 21373, 21364, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MELLANO=
 X, PCI_PRODUCT_MELLANOX_MT25408_QDR, <o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21341, 21367, 21371, 674=
 0, 21376, 21354, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21351, 21377, 21381, 6740, 21386, 21364, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MELLANOX, PCI_PRODUCT_MELLANOX_MT25408_EN, <=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; 21341, 21384, 21387, 21371, 6740, 21376, 21354, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 21351, 21394, 21397, 21381, 6740, 21386, 21364, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_=
 VENDOR_MELLANOX, PCI_PRODUCT_MELLANOX_MT25408_DDR_2, <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21341, 2=
 1363, 21371, 6740, 21394, 21354, 0,<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21351, 21373, 21381, 6740,=
  21404, 21364, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MELLANOX, PCI_PRODUCT_MELLAN=
 OX_MT25408_QDR_2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21341, 21367, 21371, 6740, 21394, 21354, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 21351, 21377, 21381, 6740, 21404, 21364, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;PCI_VENDOR_MELLANOX, PCI_PRODUCT_MELLANOX_MT25408_EN_2, <o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2134=
 1, 21384, 21387, 21371, 6740, 21394, 21354, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21351, 21394, 2=
 1397, 21381, 6740, 21404, 21364, 0,<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MICROMEMOR=
 Y, PCI_PRODUCT_MICROMEMORY_5415CN, <o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21400, 4513, 10458, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; PCI_VENDOR_MICROMEMORY, PCI_PRODUCT_MICROMEMORY_5425CN, <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;21410, 4513, 10458, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_MICROMEMORY,=
  PCI_PRODUCT_MICROMEMORY_5425CN, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21420, 4513, 10458, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp;&nbsp;PCI_VENDOR_MICROSOFT, PCI_PRODUCT_MICROSOFT_MN120, <o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 21420, 5589, 5487, 12772, 5679, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21430, 5589, 5487, 12772=
 , 5679, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MICREL, PCI_PRODUCT_MICREL_KSZ8841,=
  <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DFR style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;5589, 5487, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MICREL=
 , PCI_PRODUCT_MICREL_KSZ8842, <o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21427, 6181, 7887, 5589, 5487, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 21437, 6181, 7887, 5589, 5487, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fon=
 t-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEN=
 DOR_MIDDLE_DIGITAL, PCI_PRODUCT_MIDDLE_DIGITAL_WEASEL_VGA, <o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21=
 436, 18522, 7967, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21446, 18522, 7967, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_MIDDLE_DIGITAL, PCI_PRODUCT_MIDDLE_DIGITAL_WEASEL_SERIAL, <o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; 21436, 10492, 7887, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21446, 10492, 7887, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_MIDDLE_DIGITAL, PCI_PRODUCT_MIDDLE_DIGITAL_WEASEL_CON=
 TROL, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 21436, 8388, 0,<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21446, 8388, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;PCI_VENDOR_MITSUBISHIELEC, PCI_PRODUCT_MITSUBISHIELEC_TORNADO, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 21443, 14756, 8068, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21453, 14756, 8068, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp;&nbsp;PCI_VENDOR_MOT, PCI_PRODUCT_MOT_MPC105, <o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21451, 21=
 458, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21461, 21468, 6729, 6333, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_MOT, PCI_PRODUCT_MOT_MPC106, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21466, 21473, 67=
 29, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 21476, 21483, 6729, 6333, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_MOT, PCI_PRODUCT_MOT_MPC8240, <o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21483, 21491, 6729, =
 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 21493, 21501, 6729, 6333, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_MOT, PCI_PRODUCT_MOT_MPC107, <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21500, 21507, 6729, 6333, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 21510, 21517, 6729, 6333, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 MOT, PCI_PRODUCT_MOT_MPC8245, <o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21519, 21527, 21535, 6729, 6333=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 21529, 21537, 21545, 6729, 6333, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D=
 'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI=
 _VENDOR_MOT, PCI_PRODUCT_MOT_MPC8555E, <o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21539, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  21549, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MOT, PCI_PRODUCT_MOT_MPC8541, <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 21548, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21558, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MOT,=
  PCI_PRODUCT_MOT_MPC8548E, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;14761, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR s=
 tyle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&n=
 bsp;PCI_VENDOR_MOT, PCI_PRODUCT_MOT_MPC8548, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;14770,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MOT, PCI_PRODUCT_MOT_RAVEN, <o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 21556, 6729, 6333, 647, 21562, 17901, 6225, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21566, 6729, 63=
 33, 647, 21572, 17901, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MOT, PCI_PRODU=
 CT_MOT_FALCON, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; 21578, 21585, 4513, 6225, 4569, 21589, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 21588, 21595, 4513, 6225, 4569, 21599, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_MOT, PCI_PRODUCT_MOT_HAWK, <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21593, 6, 4513, 6225, 647, 61=
 5, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21603, 6, 4513, 6225, 647, 615, 6729, 6333, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MOT, PCI_PRODUCT_MOT_MPC5200B, <o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 21598, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21608, 6729, 6333, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;PCI_VENDOR_MOXA, PCI_PRODUCT_MOXA_CP102U, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21607, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; 21617, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
  &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MOXA, PCI_PRODUCT_MO=
 XA_C104H, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 21614, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21624, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp;&nbsp;PCI_VENDOR_MOXA, PCI_PRODUCT_MOXA_CP104, <o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21620, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 21630, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MOXA, PCI_PRODU=
 CT_MOXA_CP104V2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21628, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21638, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp;&nbsp;PCI_VENDOR_MOXA, PCI_PRODUCT_MOXA_CP104EL, <o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 21636, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; 21646, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MOXA=
 , PCI_PRODUCT_MOXA_CP114, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21644, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21654=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MOXA, PCI_PRODUCT_MOXA_C168H, <o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 21650, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21660, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_MOXA, PCI_PRODUCT_MOXA_C168U, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21656, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21666=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MOXA, PCI_PRODUCT_MOXA_C168EL, <o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 21662, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21672, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_MOXA, PCI_PRODUCT_MOXA_C168ELA, <o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>=
 -&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21662, 9983, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fam=
 ily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21672, 9983, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;PCI_VENDOR_MUTECH, PCI_PRODUCT_MUTECH_MV1000, <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21669, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21679=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp;&nbsp;PCI_VENDOR_MYLEX, PCI_PRODUCT_MYLEX_RAID_V2, <o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21676, 6220, =
 21683, 21687, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 21686, 6220, 21693, 21697, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MYLEX,=
  PCI_PRODUCT_MYLEX_RAID_V3, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21676, 6220, 21698, 21687, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21686, 622=
 0, 21708, 21697, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MYLEX, PCI_PRODUCT_MYLEX_RAID_V4, <o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 21676, 6220, 21702, 21687, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21686, 6220, 21712, 21697, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_MYLEX, PCI_PRODUCT_MYLEX_RAID_V5, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21676, 6220, 21706, 21687,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; 21686, 6220, 21716, 21697, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 > &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MYLEX, PCI_PRODUCT_=
 MYLEX_EXTREMERAID_3000, <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; 21710, 14756, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21720, 14756, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_MYLEX, PCI_PRODUCT_MYLEX_EXTREMERAID_2000, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fam=
 ily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21710, 1319, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbs=
 p;21720, 1319, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MYLEX, PCI_PRODUCT_MYLEX_ACCELERAID, <=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 21722, 21733, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 21732, 21743, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span style=3D'font-family:"Courier Ne=
 w"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MYLEX, PCI_PRODU=
 CT_MYLEX_ACCELERAID_170, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21722, 21737, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21732, 21747, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;PCI_VENDOR_MYLEX, PCI_PRODUCT_MYLEX_ACCELERAID_160, <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21722, 21741, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 21732, 21751, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MYLEX, PCI_PRODUCT_MYLEX_EXTREMERAID1=
 100, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 21710, 21745, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21720, 21755, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MYLEX, P=
 CI_PRODUCT_MYLEX_EXTREMERAID, <o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DDA style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21710, 21750, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 1720, 21760, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DDA style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MYRICOM, PCI_PRODUCT_MYRICOM_M=
 YRINET, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DDA style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;10407, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DDA style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_MYSO=
 N, PCI_PRODUCT_MYSON_MTD803, <o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DDA style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21760, 21767, 2439, 5487, 6225, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DDA style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 21770, 21777, 2439, 5487, 6225, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_NDC, PCI_PRODUCT_NDC_NCP130, <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DDA style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21774, 4739, 15973, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DDA style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 21784, 4739, 15973, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DDA style=3D'font-family:"Courier =
 New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NDC, PCI_PRODU=
 CT_NDC_NCP130A2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DDA style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21774, 8612, 21781, 4739, 15973, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DDA style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 21784, 8612, 21791, 4739, 15973, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DDA style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETO=
 CTAVE, PCI_PRODUCT_NETOCTAVE_NSP2K, <o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21784, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21794, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_=
 VENDOR_NETBOOST, PCI_PRODUCT_NETBOOST_POLICY, <o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21790, 7607, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21800=
 , 7607, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_SBC, <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 1797, 6, 6333, 21801, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; 21807, 6, 6333, 21811, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NE=
 TLOGIC, PCI_PRODUCT_NETLOGIC_XLP_ICI, <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21797, 21812, 21823, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21807=
 , 21822, 21833, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_PI=
 C, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; 21797, 17888, 17901, 21801, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21807, 17888, 17901, 21811, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_PCIROOT, <o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21797, 2183=
 6, 21848, 6558, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 21807, 21846, 21858, 6558, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETL=
 OGIC, PCI_PRODUCT_NETLOGIC_XLP_INTERLAKEN, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21797, 21869, 21880, 21883=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; 21807, 21879, 21890, 21893, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETLOGIC, PCI_PRO=
 DUCT_NETLOGIC_XLP_DEVUSB, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21797, 2427, 6721, 21801, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21807, 2427,=
  6721, 21811, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_EHCI=
 USB, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 21797, 8024, 6721, 21801, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21807, 8024, 6721, 21811, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nb=
 sp;PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_OHCIUSB, <o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21797, 8019, =
 6721, 21801, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 21807, 8019, 6721, 21811, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETLOGIC=
 , PCI_PRODUCT_NETLOGIC_XLP_NAE, <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21797, 3888, 21893, 21906, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21807=
 , 3888, 21903, 21916, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_=
 XLP_POE, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; 21797, 4487, 21913, 21906, 0,<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21807, 4487, 21923, 21916, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp;&nbsp;PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_FMN, <o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21797, 2439=
 , 21922, 3888, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 21807, 2439, 21932, 3888, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETLOG=
 IC, PCI_PRODUCT_NETLOGIC_XLP_DMA, <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21797, 490, 21932, 558, 6220, 21906, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 21807, 490, 21942, 558, 6220, 21916, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETLOGIC, =
 PCI_PRODUCT_NETLOGIC_XLP_SAE, <o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21797, 7975, 21941, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21807, 7975, 21=
 951, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_PKE, <o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2179=
 7, 21953, 21941, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 21807, 21963, 21951, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETLOGIC,=
  PCI_PRODUCT_NETLOGIC_XLP_CDE, <o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21797, 21961, 21906, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21807, 21971,=
  21916, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_UART, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 21797, 10885, 21801, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 21807, 10885, 21811, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETLO=
 GIC, PCI_PRODUCT_NETLOGIC_XLP_I2C, <o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>=
 -&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21797, 20208, 21801, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21807, 20=
 208, 21811, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_GPIO, =
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; 21797, 20189, 21801, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21807, 20189, 21811, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_N=
 ETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_SYSTEM, <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21797, 6, 21801, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21807=
 , 6, 21811, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_JTAG, =
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; 21797, 21984, 21883, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21807, 21994, 21893, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_N=
 ETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_NOR, <o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21797, 21989, 21993, 21801, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 21807, 21999, 22003, 21811, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETLOGIC, PCI_PRODUCT_N=
 ETLOGIC_XLP_NAND, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 21797, 21999, 21993, 21801, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21807, 22009, 22003=
 , 21811, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_SPI, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 21797, 20204, 21801, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 21807, 20204, 21811, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETLO=
 GIC, PCI_PRODUCT_NETLOGIC_XLP_SDHC, <o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21797, 22004, 21801, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21807, 2=
 2014, 21811, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_RXE, =
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; 21797, 22017, 22025, 21941, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21807, 22027, 22035, 21951, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;PCI_VENDOR_NETLOGIC, PCI_PRODUCT_NETLOGIC_XLP_AHCISATA, <o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21797, 8254, =
 8249, 21801, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 21807, 8254, 8249, 21811, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETLOGIC=
 , PCI_PRODUCT_NETLOGIC_XLP_SRIO, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 21797, 22036, 22041, 22049, 22055, 218=
 01, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 21807, 22046, 22051, 22059, 22065, 21811, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_N=
 ETVIN, PCI_PRODUCT_NETVIN_5000, <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>&nb=
 sp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;19052, 5487, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_V=
 ENDOR_NEWBRIDGE, PCI_PRODUCT_NEWBRIDGE_CA91CX42, <o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22059, 22068, 6333, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; 22069, 22078, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NEWBRIDGE, PCI_PRODUCT_NEWBR=
 IDGE_CA91L826A, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 22072, 7361, 615, 6333, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22082, 7361, 615, 6333, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp;&nbsp;PCI_VENDOR_NEWBRIDGE, PCI_PRODUCT_NEWBRIDGE_CA91L8260, <o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22078=
 , 615, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 22088, 615, 6333, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span style=3D'font-family:"Courier Ne=
 w"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NEWBRIDGE, PCI_P=
 RODUCT_NEWBRIDGE_CA91L8261, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22078, 7361, 615, 6333, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22088, 7361, =
 615, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NATIONALINST, PCI_PRODUCT_NATIONALINST_MXI=
 3, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; 22088, 615, 22094, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;22098, 615, 22104, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NS=
 , PCI_PRODUCT_NS_DP83810, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22103, 5589, 5487, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22113, 5589, 5487, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_NS, PCI_PRODUCT_NS_PC87415, <o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22111, 6396, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22=
 121, 6396, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NS, PCI_PRODUCT_NS_PC87560, <o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22119, 221=
 25, 8209, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 22129, 22135, 8209, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NS, PCI_PRODUCT_N=
 S_USB, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;6721, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NS, PCI_PRODUCT_NS_DP83815=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 22132, 5589, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22142, 5589, 5487, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NS,=
  PCI_PRODUCT_NS_DP83820, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22140, 5502, 5487, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22150, 5502, 5487, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_NS, PCI_PRODUCT_NS_CS5535_HB, <o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22148, 6621, 6333, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 22158, 6621, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NS, PCI_PRODUCT_NS_CS5535_IS=
 A, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; 22148, 6607, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22158, 6607, 6333, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NS=
 , PCI_PRODUCT_NS_CS5535_IDE, <o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22148, 6396, 6225, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fam=
 ily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22158, 6396, 6225=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp;&nbsp;PCI_VENDOR_NS, PCI_PRODUCT_NS_CS5535_AUDIO, <o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22148, 6824, 6=
 225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 22158, 6824, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NS, PCI_PRODUCT_NS_CS55=
 35_USB, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DDA style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 22148, 6721, 6729, 6225, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22158, 6721,=
  6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DDA style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NS, PCI_PRODUCT_NS_CS5535_VIDE=
 O, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DDA style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 22148, 234, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DDA style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22158, 234, 6225, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DDA style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;PCI_VENDOR_NS, PCI_PRODUCT_NS_SATURN, <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22155, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DDA style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 22165, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DDA style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NS, PCI_PRODUCT_NS_SC=
 1100_IDE, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DDA style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 22162, 615, 6396, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22172, 615, 6396=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DDA style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NS, PCI_PRODUCT_NS_SC1100_AUDIO, <o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 22162, 22169, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;22172, 22179, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_=
 VENDOR_NS, PCI_PRODUCT_NS_SC1100_ISA, <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22162, 6607, 6333, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 22172, 6607, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courie=
 r New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NS, PCI_PROD=
 UCT_NS_SC1100_ACPI, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22162, 22181, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22172, 2219=
 1, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NS, PCI_PRODUCT_NS_SC1100_XBUS, <o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 22162, 22190, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22172, 22200, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_=
 VENDOR_NS, PCI_PRODUCT_NS_NS87410, <o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22196, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 222=
 06, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PHILIPS, PCI_PRODUCT_PHILIPS_SAA7130HL,=
  <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 22204, 615, 234, 22214, 6689, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22214, 615, 23=
 4, 22224, 6689, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PHILIPS, PCI_PRODUCT_PHILIP=
 S_SAA7133HL, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 22224, 615, 22234, 22214, 6689, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 22234, 615, 22244, 22224, 6689, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PHILIPS, PC=
 I_PRODUCT_PHILIPS_SAA7134HL, <o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22238, 615, 22234, 22214, 6689, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 22248, 615, 22244, 22224, 6689, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_PHILIPS, PCI_PRODUCT_PHILIPS_SAA7135HL, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22248, 615, 2223=
 4, 22214, 6689, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22258, 615, 22244, 22224, 6689, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_PHILIPS, PCI_PRODUCT_PHILIPS_SAA7146AH, <o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  22258, 615, 2455, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22268, 615, 2455, 6333, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_810, <o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22268=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 22278, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODU=
 CT_SYMBIOS_820, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 22275, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22285, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_825, <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22282, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; 22292, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SY=
 MBIOS_815, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 22289, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22299, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_810AP, <o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22296, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 22306, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBI=
 OS_860, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 22305, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22315, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_1510D, <o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22312, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 22322, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIO=
 S_896, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 22321, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22331, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D=
 'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI=
 _VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_895, <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22328, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 22338, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_8=
 85, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 22335, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22345, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_875, <o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22342, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  22352, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_1510, =
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 22353, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22363, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-f=
 amily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR=
 _SYMBIOS, PCI_PRODUCT_SYMBIOS_895A, <o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22361, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22=
 371, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_875A, <o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 22369, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22379, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 SYMBIOS, PCI_PRODUCT_SYMBIOS_1010, <o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22377, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 223=
 87, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_1010_2, <o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 22377, 22385, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22387, 22395, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_1030, <o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22393, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 22403, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBI=
 OS_1030R, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 22409, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22419, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_1030ZC, <o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22418, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_1035, <o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=
 =3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;22428, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_1035, <=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; 22438, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SY=
 MBIOS_1035ZC, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; 22436, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_SYMBIOS, PCI_=
 PRODUCT_SYMBIOS_SAS1064, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"=
 '>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;22446, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; P=
 CI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1064, <o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;22456, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1068, <o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 ES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 22454, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 22464, 0,<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, P=
 CI_PRODUCT_SYMBIOS_SAS1068_2, <o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22454, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22464, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1064E, <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 22462, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22472, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMB=
 IOS, PCI_PRODUCT_SYMBIOS_SAS1064E_2, <o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22462, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 2472, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1068E=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 22471, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22481, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1068E_2, <o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22471, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; 22481, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS=
 _SAS1066E, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 22480, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22490, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_MEGARAID_2208, <o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 8325,=
  22489, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 8325, 22499, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIO=
 S, PCI_PRODUCT_SYMBIOS_SAS1064A, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22497, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22507=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1066, <o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 22506, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22516, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1078, <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22514, 615, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 22524, 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMB=
 IOS_SAS1078_PCIE, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22514, 615, 4329, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22524, 61=
 5, 4329, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS21=
 16_1, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 22522, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22532, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_=
 VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2116_2, <o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22522, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 22532, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIO=
 S_SAS2308_3, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 22530, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22540, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nb=
 sp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2004, <o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22538, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 22548, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_S=
 YMBIOS_SAS2008, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 22546, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22556, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2008_1, <o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 8325=
 , 22546, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 8325, 22556, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBI=
 OS, PCI_PRODUCT_SYMBIOS_SAS2108_3, <o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22554, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 225=
 64, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2108_4,=
  <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 22554, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22564, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-=
 family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDO=
 R_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2108_5, <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22554, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 22564, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_S=
 AS2108_1, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 8325, 22554, 22562, 22569, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 8325, 22=
 564, 22572, 22579, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYM=
 BIOS_SAS2108_2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 8325, 22554, 22569, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 8325, 225=
 64, 22579, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS=
 1078DE, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 22574, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22584, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2208_1, <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22489, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; 22499, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SY=
 MBIOS_SAS2208_2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22489, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;22499, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DE=
 S style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2208_3, <o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 224=
 89, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 22499, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier Ne=
 w"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRO=
 DUCT_SYMBIOS_SAS2208_4, <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22489, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22499, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2208_5, <o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 22489, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; 22499, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS=
 , PCI_PRODUCT_SYMBIOS_SAS2208_6, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22489, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22499=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2308_1, <=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; 22530, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22540, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS2308_2, <o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22530, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DE=
 S style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 22540, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_875J,=
  <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 22584, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22594, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-=
 family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDO=
 R_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC909, <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22592, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 22602, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC909A,=
  <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 22598, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22608, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-=
 family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDO=
 R_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC929, <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22605, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 22615, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC929_1=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 22605, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22615, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC919, <o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22611, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 ES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 22621, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC91=
 9_1, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 22611, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22621, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_V=
 ENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC929X, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22617, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; 22627, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_=
 FC919X, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 22624, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22634, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC949X, <o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22631, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 22641, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBI=
 OS_FC939X, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 22638, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22648, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC949E, <o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22645, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 22655, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMB=
 IOS_MEGARAID_320X, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 289, 22652, 6440, 22661, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 89, 22662, 6440, 22671, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODU=
 CT_SYMBIOS_MEGARAID_320E, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 289, 22652, 6440, 22667, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; 289, 22662, 6440, 22677, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PC=
 I_PRODUCT_SYMBIOS_MEGARAID_300X, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 289, 22652, 8249, 22673, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; 289, 22662, 8249, 22683, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBI=
 OS, PCI_PRODUCT_SYMBIOS_MEGARAID_SAS, <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"C=
 ourier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;8325, 5779, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_MEGARAID_VERDE_=
 ZCR, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 8325, 22689, 22695, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 8325, 22699, 22705, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_PERC_4SC, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 7291, 22699, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 7291, 22709, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_PE_GNIC, <o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 4487, 4494, =
 22704, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; 4487, 4494, 22714, 5487, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_PARALLELS, PCI_PRODUCT_PARALLELS_TOOLS, <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22710, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; 22720, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PARALLELS, PCI_PRODUCT_=
 PARALLELS_VIDEO, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>&nbsp;&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;234, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_PARALLELS, PCI_PRODUCT_PARALLELS_VIDEO2, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-fa=
 mily:"Courier New"'>@@ -6480,77 +6482,77 @@<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 NEC, PCI_PRODUCT_NEC_USB, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"=
 '>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;6721, 6729, 6225, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;PCI_VENDOR_NEC, PCI_PRODUCT_NEC_VRC4173_CARDU, <o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22716, 22=
 724, 22732, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 22726, 22734, 22742, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NEC, PCI_PRODU=
 CT_NEC_POWERVR2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 22737, 22745, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22747, 22755, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDO=
 R_NEC, PCI_PRODUCT_NEC_PD72872, <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22750, 14406, 14411, 6729, 6225, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 22760, 14406, 14411, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>=
  &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NEC, PCI_PRODUCT_NEC=
 _PKUGX001, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 22759, 20965, 5534, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22769, 20975, 5534, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D=
 'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI=
 _VENDOR_NEC, PCI_PRODUCT_NEC_PKUGX008, <o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22770, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22780, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_NEC, PCI_PRODUCT_NEC_VRC4173_BCU, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22716, 22781, 8388, 22732,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; 22726, 22791, 8388, 22742, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 > &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NEC, PCI_PRODUCT_NE=
 C_VRC4173_AC97U, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 22716, 8136, 22732, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22726, 8136, 22742, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_NEC, PCI_PRODUCT_NEC_PD72870, <o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22785, 14406, 14411, 6729=
 , 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 22795, 14406, 14411, 6729, 6225, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NEC, P=
 CI_PRODUCT_NEC_PD72871, <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; 22794, 14406, 14411, 6729, 6225, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22804, 1=
 4406, 14411, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NEC, PCI_PRODUCT_NEC_PD72010=
 0A, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp;&nbsp;9154, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NEC, PCI_PRODUCT_=
 NEC_PD720400, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 22803, 615, 4329, 16154, 22813, 6333, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22813, 615, 4=
 329, 16154, 22823, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NEC, PCI_PRODUCT_NEC_PD72020=
 0, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;14604, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NEC, PCI_PRODUCT_=
 NEC_VA26D, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 22823, 7023, 7964, 22829, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22833, 7023, 7964, 22839, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_NEC, PCI_PRODUCT_NEC_VERSALX, <o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22823, 7964, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 22833, 7964, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NEOMAGIC, PCI_PRODUCT_NEOMAGIC_NMMG2070,=
  <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp; 22835, 22846, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 22845, 22856, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NEOMAGIC, PCI_=
 PRODUCT_NEOMAGIC_NMMG128V, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22835, 22853, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22845, 22863, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;PCI_VENDOR_NEOMAGIC, PCI_PRODUCT_NEOMAGIC_NMMG128ZV, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fam=
 ily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22835, 22858, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 22845, 22868, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NEOMAGIC, PCI_PRODUCT_NEOMAGIC_NMMG2=
 160, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 22835, 22864, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22845, 22874, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NEOMAGIC=
 , PCI_PRODUCT_NEOMAGIC_NMMM256AV_VGA, <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22870, 22881, 7967, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22880=
 , 22891, 7967, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NEOMAGIC, PCI_PRODUCT_NEOMAGIC_NMMM256=
 ZX_VGA, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 22870, 22887, 7967, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22880, 22897, 7967, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_NEOMAGIC, PCI_PRODUCT_NEOMAGIC_NMMM256XLP_AU, <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22870, 22893, 6824, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 22880, 22903, 6824, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NEOMAGIC, PCI_PRODUCT_NEOMA=
 GIC_NMMM256AV_AU, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 22870, 22881, 6824, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22880, 22891, 6824, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_NEOMAGIC, PCI_PRODUCT_NEOMAGIC_NMMM256ZX_AU, <o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22870, 228=
 87, 6824, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 22880, 22897, 6824, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETCHIP, PCI_PROD=
 UCT_NETCHIP_NET2280, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 22900, 6721, 2427, 6225, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22910, 6721, 2427, =
 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;PCI_VENDOR_NETCHIP, PCI_PRODUCT_NETCHIP_NET2282, <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22908=
 , 6721, 2427, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 22918, 6721, 2427, 6225, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NE=
 TGEAR, PCI_PRODUCT_NETGEAR_GA620, <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22916, 7636, 5487, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22926, 7636,=
  5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp;&nbsp;PCI_VENDOR_NETGEAR, PCI_PRODUCT_NETGEAR_GA620T, <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22916=
 , 7647, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 22926, 7647, 5487, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETGEAR, PCI_P=
 RODUCT_NETGEAR_MA301, <o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 22922, 615, 14406, 7446, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22932, 615, 14406,=
  7446, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp;&nbsp;PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9805, <o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22928=
 , 22933, 7887, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 22938, 22943, 7887, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETMOS, PC=
 I_PRODUCT_NETMOS_NM9815, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 10019, 22928, 22933, 7887, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 10019, 2293=
 8, 22943, 7887, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9820, <o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp;&nbsp;6345, 10885, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_N=
 M9835, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 10019, 10885, 558, 22928, 22933, 7887, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 10019, 10885, 558, =
 22938, 22943, 7887, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9845=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 13041, 10885, 558, 22928, 22933, 7887, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 13041, 10885, 558, 22938=
 , 22943, 7887, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9855, <o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  22941, 13041, 10885, 558, 22928, 22933, 7887, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22951, 13041, 10885, 5=
 58, 22938, 22943, 7887, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_N=
 M9865, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 22946, 13041, 10885, 558, 22928, 22933, 7887, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22956, 13041=
 , 10885, 558, 22938, 22943, 7887, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 > &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETMOS, PCI_PRODUCT=
 _NETMOS_MCS9990, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 22951, 13041, 6721, 6740, 7887, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22961, 13041, 67=
 21, 6740, 7887, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9901, <o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp;&nbsp;10019, 15580, 10885, 0,<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>=
  &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NETMOS, PCI_PRODUCT_=
 NETMOS_NM9904, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span style=3D'font-family:"Courier New"'>@@ -6560,2435 +6562,=
 2435 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;PCI_VENDOR_NETSEC, PCI_PRODUCT_NETSEC_7751, <o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fo=
 nt-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;1=
 6039, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;PCI_VENDOR_NEXGEN, PCI_PRODUCT_NEXGEN_NX82C501, <o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22959=
 , 6621, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 22969, 6621, 6333, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NKK, PCI_PRODU=
 CT_NKK_NDR4600, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 22968, 6621, 6333, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22978, 6621, 6333, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_NORTEL, PCI_PRODUCT_NORTEL_BAYSTACK_21, <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22976, 22985, 22988,=
  6492, 22996, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 22986, 22995, 22998, 6492, 23006, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-f=
 amily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR=
 _NUMBER9, PCI_PRODUCT_NUMBER9_I128, <o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23004, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23014, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_=
 VENDOR_NUMBER9, PCI_PRODUCT_NUMBER9_I128_2, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23004, 7361, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23014=
 , 7361, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_RIVATNT, <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23016=
 , 23021, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp; &nbsp;23026, 23031, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVID=
 IA_RIVATNT2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 23016, 23025, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23026, 23035, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NV=
 IDIA, PCI_PRODUCT_NVIDIA_RIVATNT2U, <o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23016, 23025, 6935, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23026, 23=
 035, 6935, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_VANTA, <o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2303=
 0, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23040, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_RIVATNT2M6=
 4, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; 23016, 23025, 23036, 23042, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23026, 23035, 23046, 23052, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP04_PCIB, <o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23045, 6607, 633=
 3, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23055, 6607, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDI=
 A_MCP04_SMBUS, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23045, 8226, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23055, 8226=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP04_IDE, =
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 23045, 6396, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23055, 6396, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP04_SATA, <o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 23045, 8249, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23055, 8249, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI=
 _VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP04_LAN1, <o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23045, 5487=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 23055, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA=
 , PCI_PRODUCT_NVIDIA_MCP04_LAN2, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23045, 5487, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23055, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUC=
 T_NVIDIA_MCP04_SATA2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 -&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23045, 8249, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2305=
 5, 8249, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFO=
 RCE_6800U, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 23059, 6935, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23061, 2=
 3069, 6935, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_G=
 EFORCE_6800, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 23059, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23061, 23069=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE_680=
 0LE, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 23051, 23059, 9046, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23061, 23069,=
  9046, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORC=
 E_6800GT, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 23059, 23064, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23061, 2=
 3069, 23074, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_=
 NFORCE4_PCIB1, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23067, 6607, 6333, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23077=
 , 6607, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA=
 _NFORCE4_PCIB2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23067, 6607, 6333, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2307=
 7, 6607, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDI=
 A_NFORCE4_SMBUS, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23067, 8226, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23077, 82=
 26, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE4_A=
 TA133, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 23067, 23075, 6396, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23077, 23085=
 , 6396, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORC=
 E4_SATA1, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 23067, 10492, 6216, 14351, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23=
 077, 10492, 6216, 14351, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRO=
 DUCT_NVIDIA_NFORCE4_SATA2, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23067, 10492, 6216, 6181, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 23077, 10492, 6216, 6181, 0,<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE4_LAN1, <o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23067, 5487, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 23077, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_=
 PRODUCT_NVIDIA_NFORCE4_LAN2, <o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23067, 5487, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 23077, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVID=
 IA_NFORCE4_AC, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23067, 18670, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23077, 186=
 70, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE4_U=
 SB, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 23067, 6721, 6729, 6225, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23077, 672=
 1, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDI=
 A_NFORCE4_USB2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23067, 9154, 6729, 6225, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 23077, 9154, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_P=
 RODUCT_NVIDIA_NFORCE4_PCI, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23067, 615, 6729, 6333, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 23077, 615, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVID=
 IA, PCI_PRODUCT_NVIDIA_NFORCE4_PCIE, <o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23067, 21371, 6729, 6=
 333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 23077, 21381, 6729, 6333, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE4_MEM, <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23067=
 , 4513, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23077, 4513, 6225, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_PCIB, <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23082=
 , 6607, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23092, 6607, 6333, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_SMBUS, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2308=
 2, 8226, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23092, 8226, 6225, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_ATA133, <o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23=
 082, 23075, 6396, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23092, 23085, 6396, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_LAN, <o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 3082, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23092, 5487, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEN=
 DOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_OHCI, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23082, 6721, =
 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23092, 6721, 6729, 6225, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_EHCI, <o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 3082, 9154, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23092, 9154, 6729, 6225, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_MCPT_AC, <o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 23082, 23090, 18670, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23092, 23100, 18670,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_MCPT=
 _AP, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 23082, 23090, 6824, 811, 22732, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23=
 092, 23100, 6824, 811, 22742, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PC=
 I_PRODUCT_NVIDIA_NFORCE2_PPB, <o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23082, 8055, 6333, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 23092, 8055, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI=
 _PRODUCT_NVIDIA_NFORCE2_FW, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23082, 8441, 6225, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23092, 8441, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_=
 PRODUCT_NVIDIA_NFORCE2_400_PCIB, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23082, 6935, 23096, 6607,=
  6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 23092, 6935, 23106, 6607, 6333, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_400_SMBUS, <o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 23082, 6935, 23096, 8226, 6225, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23092, 6935, 23106=
 , 8226, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA=
 _NFORCE2_400_ATA133, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23082, 6935, 23096, 23075, 6396, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 23092, 6935, 23106, 23085, 6396, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI=
 _VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_400_LAN1, <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23082=
 , 6935, 23096, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23092, 6935, 23106, 5487, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_400_OHCI, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; 23082, 6935, 23096, 6721, 6729, 6225, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23092=
 , 6935, 23106, 6721, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA,=
  PCI_PRODUCT_NVIDIA_NFORCE2_400_EHCI, <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23082, 6935, 23096, =
 9154, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23092, 6935, 23106, 9154, 6729, 6225, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_400_M=
 CPT_AC, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 23082, 6935, 23096, 18670, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2309=
 2, 6935, 23106, 18670, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRO=
 DUCT_NVIDIA_NFORCE2_400_PPB, <o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23082, 6935, 23096, 8055, 633=
 3, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 23092, 6935, 23106, 8055, 6333, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nb=
 sp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_400_LAN2, <o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  23082, 6935, 23096, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23092, 6935, 23106, 5487, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_400_SATA=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 23082, 6935, 23096, 10492, 6216, 6225, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 23092, 6935, 23106, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_NVIDIA, PCI_PRODUCT_NVIDIA_ALADDINTNT2, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23100, 23025,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 23110, 23035, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA=
 , PCI_PRODUCT_NVIDIA_NFORCE3_PCIB, <o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23108, 6607, 6333, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 23118, 6607, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA=
 , PCI_PRODUCT_NVIDIA_NFORCE3_PCHB, <o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23108, 6621, 6333, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 23118, 6621, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA=
 , PCI_PRODUCT_NVIDIA_NFORCE3_PPB2, <o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23108, 8055, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23118, 8055, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUC=
 T_NVIDIA_NFORCE3_SMBUS, <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23108, 8226, 6225, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; 23118, 8226, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRO=
 DUCT_NVIDIA_NFORCE3_ATA133, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23108, 23075, 6396, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23118, 23085, 6396, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI=
 _PRODUCT_NVIDIA_NFORCE3_LAN1, <o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23108, 5487, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; 23118, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVI=
 DIA_NFORCE3_OHCI, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23108, 6721, 6729, 6225, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; 23118, 6721, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI=
 _PRODUCT_NVIDIA_NFORCE3_EHCI, <o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23108, 9154, 6729, 6225, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 23118, 9154, 6729, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_MCPT_AC, <o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23108, 2309=
 0, 18670, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; 23118, 23100, 18670, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_PPB, <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23108=
 , 8055, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23118, 8055, 6333, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_LAN4, <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23108=
 , 5487, 19164, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23118, 5487, 19164, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nb=
 sp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_250_PCIB, <o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  23108, 23116, 6607, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23118, 23126, 6607, 6333, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_250_PCHB=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 23108, 23116, 6621, 6333, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23118, 2312=
 6, 6621, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDI=
 A_NFORCE3_250_AGP, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23108, 23116, 8068, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 23118, 23126, 8068, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
  &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_=
 NVIDIA_NFORCE3_250_SATA, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23108, 23116, 10492, 6216, 6225=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 23118, 23126, 10492, 6216, 6225, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nb=
 sp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_250_SMBUS, <o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 23108, 23116, 8226, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23118, 23126, 8226, 6225, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_250_ATA=
 133, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 23108, 23116, 23075, 6396, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23118=
 , 23126, 23085, 6396, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUC=
 T_NVIDIA_NFORCE3_250_LAN, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23108, 23116, 5487, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23118, 23126, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI=
 _PRODUCT_NVIDIA_NFORCE3_250_OHCI, <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23108, 23116, 6721, 6729=
 , 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 23118, 23126, 6721, 6729, 6225, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_250_EHCI, <o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 23108, 23116, 9154, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23118, 23126, 9154=
 , 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA=
 _NFORCE3_250_MCPT_AC, <o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 -&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23108, 23116, 23090, 18670, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 23118, 23126, 23100, 18670, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_N=
 VIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_250_PPB, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23108, 23116,=
  8055, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23118, 23126, 8055, 6333, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_250_SATA2, <o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 23108, 23116, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23118, 23126, 104=
 92, 6216, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVID=
 IA_QUADROFX3400, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23120, 23127, 10292, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 3130, 23137, 10292, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
  &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_=
 NVIDIA_QUADRO4_280NVS2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23130, 23138, 23142, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 23140, 23148, 23152, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_P=
 RODUCT_NVIDIA_QUADROFX1300, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23120, 23127, 23146, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 23130, 23137, 23156, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, P=
 CI_PRODUCT_NVIDIA_GEFORCEPCX4300, <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 23151, 23155, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 23061, 23161, 23165, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVI=
 DIA, PCI_PRODUCT_NVIDIA_GEFORCE256, <o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 23160, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 23061, 23170, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRO=
 DUCT_NVIDIA_GEFORCEDDR, <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 21363, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 3061, 21373, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_=
 QUADRO, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 23120, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23130, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE2MX, <o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 3164, 23173, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23174, 23183, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_V=
 ENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE2MX200, <o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23164, 231=
 73, 23176, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 23174, 23183, 23186, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE2GO, <o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23164, 2=
 3184, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 23174, 23194, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_N=
 VIDIA, PCI_PRODUCT_NVIDIA_QUADRO2_MXR, <o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23187, 23195, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 23197, 23205, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_=
 PRODUCT_NVIDIA_GEFORCE6600GT, <o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 23202, 23064, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 23061, 23212, 23074, 0,<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA,=
  PCI_PRODUCT_NVIDIA_GEFORCE6600, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 23202, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23061, 23212, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRO=
 DUCT_NVIDIA_GEFORCE6600_2, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 23202, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 23061, 23212, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVID=
 IA_GEFORCE6600GO, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 23202, 23184, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 23061, 23212, 23194, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 > &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT=
 _NVIDIA_GEFORCE6610XL, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 23207, 5577, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; 23061, 23217, 5577, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRO=
 DUCT_NVIDIA_GEFORCE6600GO_2, <o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 23202, 23184, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 23061, 23212, 23194, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, =
 PCI_PRODUCT_NVIDIA_QUADROFX5500, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23120, 23127, 23212, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 23130, 23137, 23222, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVID=
 IA, PCI_PRODUCT_NVIDIA_QUADROFX540, <o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23120, 23127, 23217, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 23130, 23137, 23227, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_N=
 VIDIA, PCI_PRODUCT_NVIDIA_GEFORCE6200, <o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 19909, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 23061, 19909, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_=
 PRODUCT_NVIDIA_GEFORCE2, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23164, 23221, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 23174, 23231, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVID=
 IA_GEFORCE2DDR, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23164, 23221, 23225, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23=
 174, 23231, 23235, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_N=
 VIDIA_GEFORCE2BR, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23164, 23221, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23174=
 , 23231, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUAD=
 RO2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 23187, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23197, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&n=
 bsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE6200TC, <o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 3051, 23231, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23061, 23241, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_V=
 ENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE6200LE, <o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 232=
 38, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 23061, 23248, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVI=
 DIA, PCI_PRODUCT_NVIDIA_GEFORCE4_MX460, <o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;23245, 23173, 2325=
 4, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 23255, 23183, 23264, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE4_MX440, <o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23245, 23173=
 , 23258, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; 23255, 23183, 23268, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE4_MX420, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2324=
 5, 23173, 23262, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23255, 23183, 23272, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF4_MX440_SE, <o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 23245, 23173, 23258, 23266, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23255, 23183, 23268, 23276, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO4_500XG=
 L, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp; &nbsp;&nbsp;23130, 23269, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23140, 23279, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO4_200NVS, <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 23130, 23276, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23140, 23286, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF4_MX440_8X, <o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 23245, 23173, 23258, 23287, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23255, 23183, 23268, 23297=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF4_MX440_S=
 E_8X, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 23245, 23173, 23258, 23266, 23287, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 23255, 23183, 23268, 23276, 23297, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVI=
 DIA, PCI_PRODUCT_NVIDIA_GF4_MX420_8X, <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23245, 23173, 23262,=
  23287, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 23255, 23183, 23272, 23297, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&n=
 bsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO4_580XGL, <o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 23130, 23295, 23299, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23140, 23305, 23309, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO4_280NVS, <o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 23130, 23138, 23142, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23140, 23148, 23152, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO4_380XGL, <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 23130, 23303, 23299, 0,<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23140, 23313, 23309, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADROFX4600, <=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 23120, 23127, 23307, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23130, 23137, 23317=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE2_IG=
 P, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 23164, 692, 10310, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23174, 692, 10310=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE_MCP_=
 AC, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 23312, 23319, 18670, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23329,=
  18670, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_XBOX_=
 SMBUS, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 23323, 23312, 8226, 6225, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23333=
 , 23322, 8226, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 > &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT=
 _NVIDIA_NFORCE_ATA100, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23328, 6396, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; 23322, 23338, 6396, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRO=
 DUCT_NVIDIA_NFORCE_USB, <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 6721, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23=
 322, 6721, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NF=
 ORCE_LAN, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 5487, 0,<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 5487, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE_7300LE, =
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 23051, 23335, 9046, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23061, 23345, 9046,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_PCHB=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 23082, 6621, 6333, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23092, 6621, 6333,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_PPB2=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 23082, 8055, 6333, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23092, 8055, 6333,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_MEM1=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 23082, 4513, 6225, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23092, 4513, 6225,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_MEM2=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 23082, 4513, 6225, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23092, 4513, 6225,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_MEM3=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 23082, 4513, 6225, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23092, 4513, 6225,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_MEM4=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 23082, 4513, 6225, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23092, 4513, 6225,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_MEM5=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 23082, 4513, 6225, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23092, 4513, 6225,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF4_MX_IGP, =
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 23245, 23173, 692, 10310, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23255, 23183,=
  692, 10310, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_=
 GEFORCE3, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 23340, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23350, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE3_TI200, <o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp; 23340, 23349, 10052, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23350, 23359, 10052, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE3_TI500, <o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 23340, 23349, 23352, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23350, 23359, 23362, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO_DCC, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; 23120, 23356, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23130, 23366, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE_6150, <o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 23051, 23360, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23061, 23370, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE_6150LE, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2305=
 1, 23360, 9046, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23061, 23370, 9046, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&n=
 bsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE4_TI4600, <o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  23245, 23349, 23307, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23255, 23359, 23317, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE4_TI4400, <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23245, 23349, 23365, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23255, 23359, 23375, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEFORCE4_TI4200, <=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 23245, 23349, 23370, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23255, 23359, 23380=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO4_900=
 XGL, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 23130, 23375, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23140, 23385, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO4_750XGL, <o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 23130, 23382, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23140, 23392, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO4_700XGL, <o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 23130, 23389, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 +&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23140, 23399, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE430_PCIB, <o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23=
 396, 6607, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23406, 6607, 6333, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&n=
 bsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE430_SMBUS, <o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  23396, 8226, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 +&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23406, 8226, 6225, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE430_ATA133, <o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp; 23396, 23075, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23406, 23085, 6396, 6225,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE430_SA=
 TA1, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 23396, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23406, 1=
 0492, 6216, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NV=
 IDIA_NFORCE430_SATA2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 -&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23396, 10492, 6216, 6225, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23406, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDI=
 A, PCI_PRODUCT_NVIDIA_NFORCE430_LAN1, <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23396, 5479, 5487, 6=
 225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 23406, 5479, 5487, 6225, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE430_LAN2, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2339=
 6, 5479, 5487, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23406, 5479, 5487, 6225, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE430_AC, <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23396, 18670, 6824, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23406, 18670, 6824, 6=
 225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE43=
 0_HDA, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 23396, 19137, 19142, 6824, 6225, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  23406, 19137, 19142, 6824, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA=
 , PCI_PRODUCT_NVIDIA_NFORCE430_OHCI, <o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23396, 6721, 6225, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 23406, 6721, 6225, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVID=
 IA, PCI_PRODUCT_NVIDIA_NFORCE430_EHCI, <o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23396, 9154, 6225, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 23406, 9154, 6225, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NV=
 IDIA, PCI_PRODUCT_NVIDIA_NFORCE430_PPB, <o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23396, 8055, 6333,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 23406, 8055, 6333, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_N=
 VIDIA, PCI_PRODUCT_NVIDIA_NFORCE430_HB, <o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23396, 6729, 6333,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 23406, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_N=
 VIDIA, PCI_PRODUCT_NVIDIA_NFORCE430_MC, <o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23396, 4513, 6225,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 23406, 4513, 6225, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_N=
 VIDIA, PCI_PRODUCT_NVIDIA_C51_MC2, <o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23406, 4513, 6225, 6181=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 23416, 4513, 6225, 6181, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_V=
 ENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_MC3, <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23406, 4513, 622=
 5, 6192, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; 23416, 4513, 6225, 6192, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF4_TI_4800, <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23245=
 , 23349, 23410, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23255, 23359, 23420, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF4_TI_4200_8X, <o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  23245, 23349, 23370, 23287, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23255, 23359, 23380, 23297,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF4_TI_4800_=
 SE, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 23245, 23349, 23410, 23266, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23255=
 , 23359, 23420, 23276, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRO=
 DUCT_NVIDIA_GF4_TI_4200_GO, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23245, 23349, 23370, 23184, 80=
 68, 23415, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 23255, 23359, 23380, 23194, 8068, 23425, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO4_980_XGL, =
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 23130, 23418, 23299, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23140, 23428, 2330=
 9, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO4_78=
 0_XGL, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 23130, 23422, 23299, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23140, 2343=
 2, 23309, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUA=
 DRO_FX_1500, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 23120, 23127, 23426, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23130=
 , 23137, 23436, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVID=
 IA_XBOXFB, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; 23323, 23431, 23437, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23333=
 , 23441, 23447, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVID=
 IA_XBOX_PCHB, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23323, 23312, 6621, 6333, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  23333, 23322, 6621, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_P=
 RODUCT_NVIDIA_C51_HB_02F0, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23406, 6729, 6333, 23444, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 23416, 6729, 6333, 23454, 0,<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 NVIDIA, PCI_PRODUCT_NVIDIA_C51_HB_02F1, <o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23406, 6729, 6333,=
  23453, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 23416, 6729, 6333, 23463, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_HB_02F2, <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23406=
 , 6729, 6333, 23462, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23416, 6729, 6333, 23472, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_HB_02F3, <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23406, 6729, 6333, 23471, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23416, 6729, 6333, 23=
 481, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_HB_0=
 2F4, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 23406, 6729, 6333, 23480, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23416, 6=
 729, 6333, 23490, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NV=
 IDIA_C51_HB_02F5, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23406, 6729, 6333, 23489, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp; 23416, 6729, 6333, 23499, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, P=
 CI_PRODUCT_NVIDIA_C51_HB_02F6, <o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23406, 6729, 6333, 23498, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 23416, 6729, 6333, 23508, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEN=
 DOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_HB_02F7, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23406, 6729, =
 6333, 23507, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23416, 6729, 6333, 23517, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_MC5, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2340=
 6, 4513, 6225, 13812, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23416, 4513, 6225, 13812, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_MC4, <o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp; 23406, 4513, 6225, 6556, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23416, 4513, 6225, 6556, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_MC0, <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 23406, 4513, 6225, 20818, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23416, 4513, 6225,=
  20828, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_P=
 PB_02FB, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 23406, 615, 4329, 6333, 23516, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  23416, 615, 4329, 6333, 23526, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, =
 PCI_PRODUCT_NVIDIA_C51_PPB_02FC, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;23406, 615, 4329, 6333, 2=
 3525, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 23416, 615, 4329, 6333, 23535, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_PPB_02FD, <o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 3406, 615, 4329, 6333, 23534, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23416, 615, 4329, 6333, 23=
 544, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_C51_MC1,=
  <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 23406, 4513, 6225, 14351, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23416, 4513,=
  6225, 14351, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA=
 _C51_HB_02FF, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; 23406, 6729, 6333, 23543, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23416=
 , 6729, 6333, 23553, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NV=
 IDIA_GEFORCE_FX5800U, <o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 23127, 23552, 6935, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 23061, 23137, 23562, 6935, 0,<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PC=
 I_PRODUCT_NVIDIA_GEFORCE_FX5800, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 23127, 23552, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23061, 23137, 23562, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_P=
 RODUCT_NVIDIA_QUADRO_FX_2000, <o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23120, 23127, 1319, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 23130, 23137, 1319, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New=
 "'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODU=
 CT_NVIDIA_QUADRO_FX_1000, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23120, 23127, 14095, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 ES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 23130, 23137, 14095, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUC=
 T_NVIDIA_GF_FX5600U, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 23127, 10157, 6935, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 ES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 23061, 23137, 10157, 6935, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_P=
 RODUCT_NVIDIA_GF_FX5600, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 23127, 10157, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23061, 23137, 10157, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PC=
 I_PRODUCT_NVIDIA_GF_FX5600_SE, <o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 23127, 10157, 23266,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 23061, 23137, 10157, 23276, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI=
 _VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF_FX5200U, <o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 2312=
 7, 23557, 6935, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23061, 23137, 23567, 6935, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF_FX5200, <o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 23051, 23127, 23557, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23061, 23137, 23567, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF_FX5200SE, <o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23051, 23127, 23562, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23061, 23137, 23572, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO_FX_500, <o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 23120, 23127, 23352, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23130, 23137, 23362, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF_FX5900U, <=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 23051, 23127, 23569, 6935, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23061, 23137,=
  23579, 6935, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA=
 _GF_FX5900, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 23127, 23569, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23061=
 , 23137, 23579, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVID=
 IA_GF_FX5900XT, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 23127, 23574, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23=
 061, 23137, 23584, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_N=
 VIDIA_GF_FX5950U, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 23127, 23581, 6935, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 23061, 23137, 23591, 6935, 0,<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA,=
  PCI_PRODUCT_NVIDIA_QUADRO_FX_3000, <o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23120, 23127, 14756, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 23130, 23137, 14756, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_N=
 VIDIA, PCI_PRODUCT_NVIDIA_GF_FX5700_LE, <o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 23127, 2358=
 6, 9046, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; 23061, 23137, 23596, 9046, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&n=
 bsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_LPC2, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2331=
 2, 23591, 8222, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23601, 8222, 6333, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_ISA, <o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23312, 23591, 6607, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23601, 6607, 6=
 333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_LP=
 C, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 23312, 23591, 8222, 6333, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 236=
 01, 8222, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVID=
 IA_MCP55_SMB, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp; &nbsp;23312, 23591, 8226, 6225, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  23322, 23601, 8226, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_P=
 RODUCT_NVIDIA_MCP55_MEM, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23591, 4513, 6225, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 23322, 23601, 4513, 6225, 0,<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_MEM2, <o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23591, 4513,=
  6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 23322, 23601, 4513, 6225, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_IDE, <o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 2=
 3591, 23075, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23601, 23085, 6396, 6225=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_OHCI,=
  <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 23312, 23591, 8019, 6721, 6225, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322=
 , 23601, 8019, 6721, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_P=
 RODUCT_NVIDIA_MCP55_EHCI, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23591, 8024, 6721, 6225,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 23322, 23601, 8024, 6721, 6225, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_PPB, <o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 2=
 3591, 8055, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23601, 8055, 6333, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_HDA, <o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp; 23312, 23591, 19137, 19142, 6824, 6225, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 2360=
 1, 19137, 19142, 6824, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI=
 _PRODUCT_NVIDIA_MCP55_LAN1, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23591, 5479, 5487, 6225=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 23322, 23601, 5479, 5487, 6225, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_LAN2, <o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312=
 , 23591, 5479, 5487, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23601, 5479, 5487, 622=
 5, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_PCIE=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 23312, 23591, 21836, 23597, 7887, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 233=
 22, 23601, 21846, 23607, 7887, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, P=
 CI_PRODUCT_NVIDIA_MCP55_PCIE2, <o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23591, 21836, 23597,=
  7887, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 23322, 23601, 21846, 23607, 7887, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_SATA, <o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  23312, 23591, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23601, 10492, 6=
 216, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MC=
 P55_SATA2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23591, 10492, 6216, 6225, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp; 23322, 23601, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NV=
 IDIA, PCI_PRODUCT_NVIDIA_GF_GO_7600, <o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 23184, 23601, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 23061, 23194, 23611, 0,<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_ISA, <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23606, 6607, =
 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 23322, 23616, 6607, 6333, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_HDA, <o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23=
 606, 19137, 19142, 6824, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23616, 19137, 1914=
 2, 6824, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDI=
 A_MCP61_LAN1, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23606, 5479, 5487, 6225, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23322, 23616, 5479, 5487, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_LAN2, <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23606, 54=
 79, 5487, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23616, 5479, 5487, 6225, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_SATA, <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23312, 23606, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23616,=
  10492, 6216, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
  &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_=
 NVIDIA_MCP61_PPB_1, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23606, 8055, 6333, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23322, 23616, 8055, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDI=
 A, PCI_PRODUCT_NVIDIA_MCP61_PPB_2, <o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23606, 8055, 633=
 3, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 23322, 23616, 8055, 6333, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI=
 _VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_MEM, <o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23606=
 , 4513, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;23322, 23616, 4513, 6225, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_SMB, <o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 3312, 23606, 8226, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23616, 8226, 6225, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_IDE, <o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 23312, 23606, 23075, 6396, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23616,=
  23085, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
  &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_=
 NVIDIA_MCP61_LAN3, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23606, 5479, 5487, 6225, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 23322, 23616, 5479, 5487, 6225, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEN=
 DOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_LAN4, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23606,=
  5479, 5487, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23616, 5479, 5487, 6225, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_HDA2, <o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 23312, 23606, 19137, 19142, 6824, 6225, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322=
 , 23616, 19137, 19142, 6824, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDI=
 A, PCI_PRODUCT_NVIDIA_MCP61_OHCI, <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23606, 8019, 6721=
 , 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23616, 8019, 6721, 6225, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_EHCI, <o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 23312, 23606, 8024, 6721, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23616, 8024, 6721=
 , 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61=
 _PCI, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 23312, 23606, 8055, 6333, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322=
 , 23616, 8055, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 > &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT=
 _NVIDIA_MCP61_SMC, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23606, 6, 6848, 6225, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23322, 23616, 6, 6848, 6225, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NV=
 IDIA, PCI_PRODUCT_NVIDIA_MCP61_MEM2, <o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23606, 4513, 6=
 225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 23322, 23616, 4513, 6225, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_SATA2, <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312=
 , 23606, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23616, 10492, 6216, 6=
 225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_SA=
 TA3, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 23312, 23606, 10492, 6216, 6225, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 3322, 23616, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, =
 PCI_PRODUCT_NVIDIA_GEFORCE_8600GTS, <o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 23612, 23221, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 23061, 23622, 23231, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_N=
 VIDIA, PCI_PRODUCT_NVIDIA_GEFORCE_8600GT, <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 23612, 23=
 064, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 23061, 23622, 23074, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF_8500_GT, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 9077, =
 23064, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 23061, 9077, 23074, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_V=
 ENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GF_8400M_GS, <o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 23617=
 , 23623, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; 23061, 23627, 23633, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_QUADRO_NVS140M, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2312=
 0, 23142, 23626, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23130, 23152, 23636, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_ISA, <o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 233=
 12, 23631, 6607, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23641, 6607, 6333, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_LPC1, <o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 23312, 23631, 23637, 6333, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23641, 2364=
 7, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP6=
 5_LPC2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 23312, 23631, 23637, 6333, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2332=
 2, 23641, 23647, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRO=
 DUCT_NVIDIA_MCP65_LPC3, <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23631, 23637, 6333, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 23322, 23641, 23647, 6333, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_N=
 VIDIA, PCI_PRODUCT_NVIDIA_MCP65_MEM, <o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23631, 4513, 6=
 225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 23322, 23641, 4513, 6225, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_MEM2, <o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 2=
 3631, 4513, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23641, 4513, 6225, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_SMB, <o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp; 23312, 23631, 8226, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23641, 8226, 6225,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_SMU, <=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 23312, 23631, 6, 6848, 22732, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 236=
 41, 6, 6848, 22742, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
  &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_=
 NVIDIA_MCP65_IDE, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23631, 23075, 6396, 6225, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 23322, 23641, 23085, 6396, 6225, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_PCI, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23631,=
  615, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23641, 615, 6333, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_HDA_1, <o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23=
 312, 23631, 19137, 19142, 6824, 6225, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23641, 1913=
 7, 19142, 6824, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUC=
 T_NVIDIA_MCP65_HDA_2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 -&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23631, 19137, 19142, 6824, 62=
 25, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 23322, 23641, 19137, 19142, 6824, 6225, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_AHCI_1, <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23312, 23631, 8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23641, 8254, 6=
 225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_AH=
 CI_2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 23312, 23631, 8254, 6225, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322=
 , 23641, 8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 > &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT=
 _NVIDIA_MCP65_AHCI_3, <o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 -&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23631, 8254, 6225, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23322, 23641, 8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDI=
 A, PCI_PRODUCT_NVIDIA_MCP65_AHCI_4, <o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23631, 8254, 62=
 25, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 23322, 23641, 8254, 6225, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_LAN1, <o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 2=
 3631, 5479, 5487, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23641, 5479, 5487, 6225,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_LAN2, =
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 23312, 23631, 5479, 5487, 6225, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322=
 , 23641, 5479, 5487, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_P=
 RODUCT_NVIDIA_MCP65_LAN3, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23631, 5479, 5487, 6225,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 23322, 23641, 5479, 5487, 6225, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_LAN4, <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312=
 , 23631, 5479, 5487, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23641, 5479, 5487, 622=
 5, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_USB_=
 1, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 23312, 23631, 6721, 6225, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 236=
 41, 6721, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVID=
 IA_MCP65_USB_2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23631, 6721, 6225, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 23322, 23641, 6721, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI=
 _PRODUCT_NVIDIA_MCP65_USB_3, <o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23631, 6721, 6225, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 23322, 23641, 6721, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_USB_4, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23631,=
  6721, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23641, 6721, 6225, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_PPB_1, <o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 23312, 23631, 8055, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23641, 8055, 6333, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_PPB_2, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; 23312, 23631, 8055, 6333, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23641, 805=
 5, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP6=
 5_PPB_3, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 23312, 23631, 8055, 6333, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2332=
 2, 23641, 8055, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUC=
 T_NVIDIA_MCP65_SATA, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23631, 10492, 6216, 6225, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 23322, 23641, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI=
 _VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_SATA2, <o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 236=
 31, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23641, 10492, 6216, 6225=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_SATA3=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 23312, 23631, 10492, 6216, 6225, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2332=
 2, 23641, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI=
 _PRODUCT_NVIDIA_MCP65_SATA4, <o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23631, 10492, 6216, 62=
 25, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 23322, 23641, 10492, 6216, 6225, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_SMB, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2331=
 2, 23645, 8226, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23655, 8226, 6225, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_LAN1, <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23312, 23645, 5479, 5487, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23655,=
  5479, 5487, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_N=
 VIDIA_MCP67_LAN2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23645, 5479, 5487, 6225, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 23322, 23655, 5479, 5487, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_LAN3, <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23645, 54=
 79, 5487, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23655, 5479, 5487, 6225, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_LAN4, <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23312, 23645, 5479, 5487, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23655,=
  5479, 5487, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_N=
 VIDIA_MCP67_SATA, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23645, 10492, 6216, 6225, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 23322, 23655, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_SATA2, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23645,=
  10492, 6216, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 +&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23655, 10492, 6216, 6225, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_SATA3, <o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 23312, 23645, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23=
 655, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRO=
 DUCT_NVIDIA_MCP67_SATA4, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23645, 10492, 6216, 6225=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 23322, 23655, 10492, 6216, 6225, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nb=
 sp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_AHCI_1, <o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 233=
 12, 23645, 8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23655, 8254, 6225, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_AHCI_2, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; 23312, 23645, 8254, 6225, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23655, 825=
 4, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP6=
 7_AHCI_3, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23645, 8254, 6225, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 233=
 22, 23655, 8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRO=
 DUCT_NVIDIA_MCP67_AHCI_4, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23645, 8254, 6225, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 23322, 23655, 8254, 6225, 0,<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_AHCI_5, <o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23645, 825=
 4, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23655, 8254, 6225, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nb=
 sp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_AHCI_6, <o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 233=
 12, 23645, 8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23655, 8254, 6225, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_AHCI_7, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; 23312, 23645, 8254, 6225, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23655, 825=
 4, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP6=
 7_AHCI_8, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23645, 8254, 6225, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 233=
 22, 23655, 8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRO=
 DUCT_NVIDIA_MCP67_HDA_1, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23645, 19137, 19142, 682=
 4, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23655, 19137, 19142, 6824, 6225, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_HDA_2, <o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 23312, 23645, 19137, 19142, 6824, 6225, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322=
 , 23655, 19137, 19142, 6824, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDI=
 A, PCI_PRODUCT_NVIDIA_MCP67_IDE, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23645, 23075, 6396=
 , 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23655, 23085, 6396, 6225, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_IDE, <o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 23312, 23651, 23075, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23661, 23085, 63=
 96, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_GEF=
 ORCE8400GS, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 23657, 23623, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23061=
 , 23667, 23633, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVID=
 IA_MCP77_IDE, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23662, 23075, 6396, 6225, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23322, 23672, 23085, 6396, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_LAN1, <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23662, 54=
 79, 5487, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23672, 5479, 5487, 6225, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_LAN2, <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23312, 23662, 5479, 5487, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23672,=
  5479, 5487, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_N=
 VIDIA_MCP77_LAN3, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23662, 5479, 5487, 6225, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 23322, 23672, 5479, 5487, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_LAN4, <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23662, 54=
 79, 5487, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23672, 5479, 5487, 6225, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_HDA_1, <o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23312, 23662, 19137, 19142, 6824, 6225, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322=
 , 23672, 19137, 19142, 6824, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDI=
 A, PCI_PRODUCT_NVIDIA_MCP77_HDA_2, <o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23662, 19137, 19=
 142, 6824, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23672, 19137, 19142, 6824, 6225,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_HDA_3,=
  <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 23312, 23662, 19137, 19142, 6824, 6225, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 23322, 23672, 19137, 19142, 6824, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_HDA_4, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23662,=
  19137, 19142, 6824, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23672, 19137, 19142, 6=
 824, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MC=
 P73_SMB, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 23312, 23651, 8226, 6225, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2332=
 2, 23661, 8226, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUC=
 T_NVIDIA_MCP73_LAN1, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23651, 5479, 5487, 6225, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 23322, 23661, 5479, 5487, 6225, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_V=
 ENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_LAN2, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23651,=
  5479, 5487, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23661, 5479, 5487, 6225, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_LAN3, <o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 23312, 23651, 5479, 5487, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23661,=
  5479, 5487, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_N=
 VIDIA_MCP73_LAN4, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;23312, 23651, 5479, 5487, 6225, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 23322, 23661, 5479, 5487, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_AHCI_1, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23651,=
  8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23661, 8254, 6225, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_AHCI_2, <o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  23312, 23651, 8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23661, 8254, 6225, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_AHCI_3, <o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 23312, 23651, 8254, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23661,=
  8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_=
 MCP73_AHCI_4, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23651, 8254, 6225, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  23322, 23661, 8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_P=
 RODUCT_NVIDIA_MCP73_AHCI_5, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23651, 8254, 6225, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 23322, 23661, 8254, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_AHCI_6, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23651,=
  8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23661, 8254, 6225, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_AHCI_7, <o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  23312, 23651, 8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23661, 8254, 6225, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_AHCI_8, <o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 23312, 23651, 8254, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23661,=
  8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_=
 MCP73_AHCI_9, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23651, 8254, 6225, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  23322, 23661, 8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_P=
 RODUCT_NVIDIA_MCP73_AHCI_10, <o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23651, 8254, 6225, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 23322, 23661, 8254, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_AHCI_11, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23651,=
  8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23661, 8254, 6225, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_AHCI_12, <o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 23312, 23651, 8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23661, 8254, 6225, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_HDA_1, <o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 23312, 23651, 19137, 19142, 6824, 6225, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 3322, 23661, 19137, 19142, 6824, 6225, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_N=
 VIDIA, PCI_PRODUCT_NVIDIA_MCP73_HDA_2, <o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23651, 19137=
 , 19142, 6824, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23661, 19137, 19142, 6824, 6=
 225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP78S_S=
 MB, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 23312, 23668, 8226, 6225, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23=
 678, 8226, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVI=
 DIA_GEFORCE_210, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 23675, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23061, 2=
 3685, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_S=
 MB, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 23312, 23679, 8226, 6225, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23=
 689, 8226, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVI=
 DIA_MCP79_LAN1, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23679, 5479, 5487, 6225, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23322, 23689, 5479, 5487, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_LAN2, <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23679, 54=
 79, 5487, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23689, 5479, 5487, 6225, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_LAN3, <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23312, 23679, 5479, 5487, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23689,=
  5479, 5487, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_N=
 VIDIA_MCP79_LAN4, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;23312, 23679, 5479, 5487, 6225, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 23322, 23689, 5479, 5487, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_1, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23662,=
  8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23672, 8254, 6225, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_2, <o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  23312, 23662, 8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23672, 8254, 6225, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_3, <o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 23312, 23662, 8254, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23672,=
  8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_=
 MCP77_AHCI_4, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23662, 8254, 6225, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  23322, 23672, 8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_P=
 RODUCT_NVIDIA_MCP77_AHCI_5, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23662, 8254, 6225, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 23322, 23672, 8254, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_6, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23662,=
  8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23672, 8254, 6225, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_7, <o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  23312, 23662, 8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23672, 8254, 6225, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_8, <o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 23312, 23662, 8254, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23672,=
  8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_=
 MCP77_AHCI_9, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23662, 8254, 6225, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  23322, 23672, 8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_P=
 RODUCT_NVIDIA_MCP77_AHCI_10, <o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23662, 8254, 6225, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 23322, 23672, 8254, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_11, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23662,=
  8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23672, 8254, 6225, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_AHCI_12, <o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 23312, 23662, 8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23672, 8254, 6225, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_AHCI_1, <=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 23312, 23679, 8254, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23689,=
  8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_=
 MCP79_AHCI_2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23679, 8254, 6225, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  23322, 23689, 8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_P=
 RODUCT_NVIDIA_MCP79_AHCI_3, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23679, 8254, 6225, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 23322, 23689, 8254, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_AHCI_4, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23679,=
  8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23689, 8254, 6225, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_AHCI_5, <o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  23312, 23679, 8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23689, 8254, 6225, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_AHCI_6, <o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 23312, 23679, 8254, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23689,=
  8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_=
 MCP79_AHCI_7, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23679, 8254, 6225, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  23322, 23689, 8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_P=
 RODUCT_NVIDIA_MCP79_AHCI_8, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23679, 8254, 6225, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 23322, 23689, 8254, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_AHCI_9, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23679,=
  8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23689, 8254, 6225, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_AHCI_10, <o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 23312, 23679, 8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23689, 8254, 6225, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_AHCI_11, =
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 23312, 23679, 8254, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23322, 23689,=
  8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_=
 MCP79_AHCI_12, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23312, 23679, 8254, 6225, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 23322, 23689, 8254, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_NVIDIA, PCI_=
 PRODUCT_NVIDIA_GF116, <o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 -&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23051, 23685, 23689, 23349, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 23061, 23695, 23699, 23359, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_N=
 VIDIA_SGS, PCI_PRODUCT_NVIDIA_SGS_RIVA128, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23693, 9507, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 23703, 9507, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_OAKTECH,=
  PCI_PRODUCT_OAKTECH_OTI1007, <o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23698, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23=
 708, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_OLICOM, PCI_PRODUCT_OLICOM_OC3136, =
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 23705, 23718, 16306, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23715, 23728, 1630=
 6, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_OLICOM, PCI_PRODUCT_OLICOM_OC3139, <o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 23729, 23738, 16306, 5783, 5789, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23739, 2=
 3748, 16306, 5783, 5789, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_OLICOM, PCI_PRO=
 DUCT_OLICOM_OC3140, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23747, 23760, 5783, 5789, 16306, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 23757, 23770, 5783, 5789, 16306, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_=
 VENDOR_OLICOM, PCI_PRODUCT_OLICOM_OC3250, <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23770, 23778, 57=
 83, 5789, 16306, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23780, 23788, 5783, 5789, 16306, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp;&nbsp;PCI_VENDOR_OLICOM, PCI_PRODUCT_OLICOM_OC3530, <o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 23785, 23760, 5783, 5789, 5912, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23795, 23770, 5783=
 , 5789, 5912, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_OLICOM, PCI_PRODUCT_OLICOM=
 _OC3141, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 23793, 23760, 5783, 5789, 16306, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 23803, 23770, 5783, 5789, 16306, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_OLIC=
 OM, PCI_PRODUCT_OLICOM_OC3540, <o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23801, 23760, 23809, 23814,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 23811, 23770, 23819, 23824, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI=
 _VENDOR_OLICOM, PCI_PRODUCT_OLICOM_OC3150, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23823, 23760,=
  23718, 16306, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23833, 23770, 23728, 16306, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_OLICOM, PCI_PRODUCT_OLICOM_OC2805, <o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 3831, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23841, 5487, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEN=
 DOR_OLICOM, PCI_PRODUCT_OLICOM_OC2325, <o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23839, 5487, 5589, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 23849, 5487, 5589, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_OL=
 ICOM, PCI_PRODUCT_OLICOM_OC2183, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23847, 5487, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 23857, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_OLICOM, PCI_PRODUC=
 T_OLICOM_OC2326, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23860, 23868, 5487, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23=
 870, 23878, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_OLICOM, PCI_PRODUCT_OL=
 ICOM_OC2327, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 23878, 5589, 5487, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23888=
 , 5589, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_OLICOM, PCI_PRODUCT_OLICOM=
 _OC6151, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 23891, 21101, 8782, 6895, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2390=
 1, 21111, 8782, 6895, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_OLICOM, PCI_PRODUC=
 T_OLICOM_OCATM, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>&nbsp;=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;</span><span lang=3DDA style=3D'=
 font-family:"Courier New"'>6895, 0,<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DDA style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_OPTI, PCI_=
 PRODUCT_OPTI_82C557, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DDA style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23904, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23914, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DDA style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp;&nbsp;PCI_VENDOR_OPTI, PCI_PRODUCT_OPTI_82C558, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23911=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DDA style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 23921, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DDA style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_OPTI, PCI_PRODUCT_=
 OPTI_82C568, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DDA style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 23918, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DDA style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23928, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nb=
 sp;PCI_VENDOR_OPTI, PCI_PRODUCT_OPTI_82D568, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23925, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DDA style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; 23935, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DDA style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_OPTI, PCI_PRODUCT_OPTI_82C621=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DDA style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 23932, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DDA style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23942, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_OPTI, PCI_PRODUCT_OPTI_82C822, <o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DDA style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23939, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23=
 949, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DDA style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_OPTI, PCI_PRODUCT_OPTI_82C861, <o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DDA style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; 23946, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DDA style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 23956, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DDA style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_OPTI, =
 PCI_PRODUCT_OPTI_82C700, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DDA style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23953, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23963, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DDA style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;PCI_VENDOR_OPTI, PCI_PRODUCT_OPTI_82C701, <o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23=
 960, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DDA style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 23970, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DDA style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_OXFORDSEMI, PCI=
 _PRODUCT_OXFORDSEMI_VSCOM_PCI011H, <o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DDA style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23967, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 239=
 77, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DDA style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_OXFORDSEMI, PCI_PRODUCT_OXFORDSEMI_OX16=
 PCI954, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DDA style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 23972, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DDA style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23982, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_OXFORDSEMI, PCI_PRODUCT_OXFORDSEMI_OX16PCI954K, <o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23=
 983, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DDA style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 23993, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DDA style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_OXFORDSEMI, PCI=
 _PRODUCT_OXFORDSEMI_EXSYS_EX41092, <o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DDA style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23995, 24001, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DDA style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 24005, 24011, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DDA style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_OXFORDSEMI, PCI_PRODUCT=
 _OXFORDSEMI_OXCB950, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DDA style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24010, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24020, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DDA style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp;&nbsp;PCI_VENDOR_OXFORDSEMI, PCI_PRODUCT_OXFORDSEMI_OXMPCI954, <o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DDA style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; 24018, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DDA style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24028, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DDA style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_OXFOR=
 DSEMI, PCI_PRODUCT_OXFORDSEMI_OXMPCI954D, <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DDA style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24018, 24028, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DDA style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 24028, 24038, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DDA style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_OXFORDSEMI, PCI_PR=
 ODUCT_OXFORDSEMI_EXSYS_EX41098, <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DDA style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23995, 24037, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  24005, 24047, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DDA style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_OXFORDSEMI, PCI_PRODUCT_OXFO=
 RDSEMI_OX16PCI954P, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DDA style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23972, 16943, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23982, 1694=
 3, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DDA style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_OXFORDSEMI, PCI_PRODUCT_OXFORDSEMI_OX16P=
 CI952, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DDA style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 24046, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DDA style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24056, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA style=3D=
 'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI=
 _VENDOR_OXFORDSEMI, PCI_PRODUCT_OXFORDSEMI_OX16PCI952P, <o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24046=
 , 16943, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DDA style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 24056, 16943, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DDA style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_OXFO=
 RDSEMI, PCI_PRODUCT_OXFORDSEMI_OX16PCI958, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24057, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DDA style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; 24067, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DDA style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_OXFORDSEMI, PCI_PRODUCT_OXFOR=
 DSEMI_OXPCIE952, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DDA style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24068, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DDA style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24078, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DD=
 A style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;PCI_VENDOR_PACKETENGINES, PCI_PRODUCT_PACKETENGINES_GNICII, <o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DDA style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 22704, 7361, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DDA style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 22714, 7361, 5487, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;PCI_VENDOR_PCHDTV, PCI_PRODUCT_PCHDTV_HD2000, <o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24078, 24=
 086, 234, 12097, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DDA style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24088, 24096, 234, 12097, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_PCHDTV, PCI_PRODUCT_PCHDTV_HD5500, <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24091, 240=
 86, 234, 12097, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DDA style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24101, 24096, 234, 12097, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA s=
 tyle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&n=
 bsp;PCI_VENDOR_PCTECH, PCI_PRODUCT_PCTECH_RZ1000, <o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24099, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24109, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp;&nbsp;PCI_VENDOR_PEAK, PCI_PRODUCT_PEAK_PCAN, <o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24106, 20212, 6225, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp; 24116, 20212, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PERICOM, PCI_PRODUCT_PERICOM=
 _P17C9X110, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 24111, 21371, 6785, 615, 6333, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24121, 21381, 6785, 61=
 5, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PERICOM, PCI_PRODUCT_PERICOM_P17C9X, <o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 241=
 21, 21371, 6785, 615, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24131, 21381, 6785, 615, 6333, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;PCI_VENDOR_PHOBOS, PCI_PRODUCT_PHOBOS_P1000, <o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24128, 5479, 5487, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 24138, 5479, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PLANEX, PCI_PRODUCT_PLANEX_FNW_360=
 3_TX, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 24134, 5589, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24144, 5589, 5487, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-f=
 amily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR=
 _PLANEX, PCI_PRODUCT_PLANEX_FNW_3800_TX, <o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24146, 5589, 5487, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24156=
 , 5589, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PLX, PCI_PRODUCT_PLX_PCI_400, <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24158=
 , 24164, 6556, 6558, 6531, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24168, 24174, 6556, 6558, 6531, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;PCI_VENDOR_PLX, PCI_PRODUCT_PLX_PCI_800, <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24158, 24172, 6581, 6558, 653=
 1, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 24168, 24182, 6581, 6558, 6531, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PLX, PCI_P=
 RODUCT_PLX_PCI_200, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 24158, 24180, 6181, 6558, 6531, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24168, 24190,=
  6181, 6558, 6531, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PLX, PCI_PRODUCT_PLX_9030, <o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 241=
 88, 8209, 24193, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 24198, 8209, 24203, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PLX, PCI_P=
 RODUCT_PLX_9050, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp; &nbsp;&nbsp;24204, 8209, 24193, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24214, 8209, 24203, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_PLX, PCI_PRODUCT_PLX_9054, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24209, 8209, 760=
 7, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 24219, 8209, 7607, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PLX, =
 PCI_PRODUCT_PLX_9060ES, <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24214, 615, 22781, 6225, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 24224, 615, 22791, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courie=
 r New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PLX, PCI_PRO=
 DUCT_PLX_9656, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; 24221, 8209, 7607, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24231, 8209=
 , 7607, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PLX, PCI_PRODUCT_PLX_9656FPBGA, <o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  24221, 8209, 7607, 24226, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24231, 8209, 7607, 24236, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_V=
 ENDOR_POWERHOUSE, PCI_PRODUCT_POWERHOUSE_POWERTOP, <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24232, 16327, 6, 622=
 5, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 24242, 16327, 6, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_POWERHOUSE, PCI_PRODU=
 CT_POWERHOUSE_POWERPRO, <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24241, 16327, 6, 6225, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DI=
 T style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 24251, 16327, 6, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PROLAN, PCI_PRODUC=
 T_PROLAN_NE2KETHER, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>&nbsp=
 ;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;5487, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_=
 VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20265, <o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24250, 24259, 6=
 396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 24260, 24269, 6396, 6225, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20263, <o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;24268, 2425=
 9, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24278, 24269, 6396, 6225, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nb=
 sp;PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20275, <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24277, 2=
 4286, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24287, 24296, 6396, 6225, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20318, <o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24296=
 , 10492, 6216, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24306, 10492, 6216, 6225, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20319, <o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 24305, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24315, 10492, 6216, 6225, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20371, <o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 IT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 24314, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24324, 10492, 6216, 6225, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20379, <o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 24323, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24333, 10492, 6216, 6225, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20378, <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp; &nb=
 sp;&nbsp;24332, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24342, 10492, 6216, 6225=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20375, <o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 24341, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24351, 10492, 6216, 6=
 225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20376,=
  <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 24350, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24360, 10492, 62=
 16, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC2=
 0377, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 24359, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24369, 10492,=
  6216, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_P=
 DC40719, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 24368, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24378, 104=
 92, 6216, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMIS=
 E_PDC40519, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 24377, 10492, 6216, 6225, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24387=
 , 10492, 6216, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PROMISE, PCI_PRODUCT_P=
 ROMISE_PDC20771, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24386, 10492, 6216, 6225, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24=
 396, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PROMISE, PCI_PRODU=
 CT_PROMISE_PDC20571, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24395, 10492, 6216, 6225, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DI=
 T style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 24405, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PROMISE, PCI_PR=
 ODUCT_PROMISE_PDC20579, <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24404, 10492, 6216, 6225, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 24414, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PROMISE, PC=
 I_PRODUCT_PROMISE_PDC40779, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24413, 10492, 6216, 6225, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 24423, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PROMISE,=
  PCI_PRODUCT_PROMISE_PDC40718, <o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;24422, 10492, 6216, 6225, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 24432, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PROMI=
 SE, PCI_PRODUCT_PROMISE_PDC40518, <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24431, 10492, 6216, 6225, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 24441, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 PROMISE, PCI_PRODUCT_PROMISE_PDC20775, <o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24440, 10492, 6216, 62=
 25, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 24450, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_PROMISE, PCI_PRODUCT_PROMISE_PDC20575, <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24449, 10492, 6216,=
  6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 24459, 10492, 6216, 6225, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_V=
 ENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20267, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24458, 24467, 63=
 96, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 24468, 24477, 6396, 6225, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20246, <o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24477, 2448=
 6, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24487, 24496, 6396, 6225, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nb=
 sp;PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20262, <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24495, 2=
 4259, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24505, 24269, 6396, 6225, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20268, <o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24504=
 , 24467, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24514, 24477, 6396, 6225, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20269, <o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 24513, 24286, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24523, 24296, 6396, 6225, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20276, <o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 IT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 24522, 24286, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24532, 24296, 6396, 6225, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_DC5030, <o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 24531, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24541, 6396, 6225, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20270, <o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24538=
 , 24467, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24548, 24477, 6396, 6225, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20271, <o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 24547, 24286, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24557, 24296, 6396, 6225, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20617, <o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 IT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 24556, 10019, 24286, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24566, 10019, 24296, 63=
 96, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC2=
 0620, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 24565, 10019, 24286, 6396, 6225, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24575=
 , 10019, 24296, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PROMISE, PCI_PR=
 ODUCT_PROMISE_PDC20621, <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24574, 10019, 24286, 6396, 6225, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 24584, 10019, 24296, 6396, 6225, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-=
 family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDO=
 R_PROMISE, PCI_PRODUCT_PROMISE_PDC20618, <o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24583, 10019, 24286,=
  6396, 24592, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 24593, 10019, 24296, 6396, 24602, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC20619, <o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 24602, 10019, 24286, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24612, 10019, 24296, 6396,=
  6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_PROMISE, PCI_PRODUCT_PROMISE_PDC2027=
 7, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 24611, 24286, 6396, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24621, 24296, 63=
 96, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QINHENG, PCI_PRODUCT_QINHENG_CH35=
 2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 24620, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24630, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_QINHENG, PCI_PRODUCT_QINHENG_CH353, <o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24626, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 IT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 24636, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QLOGIC, PCI_PRODUCT_QLOGIC_QLA200=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 24632, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24642, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_QLOGIC, PCI_PRODUCT_QLOGIC_ISP1020, <o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24639, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 IT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 24649, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QLOGIC, PCI_PRODUCT_QLOGIC_ISP102=
 2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 24647, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24657, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_QLOGIC, PCI_PRODUCT_QLOGIC_ISP1080, <o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24655, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 IT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 24665, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QLOGIC, PCI_PRODUCT_QLOGIC_ISP124=
 0, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 24663, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24673, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_QLOGIC, PCI_PRODUCT_QLOGIC_ISP1280, <o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24671, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 IT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 24681, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QLOGIC, PCI_PRODUCT_QLOGIC_ISP210=
 0, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 24679, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24689, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_QLOGIC, PCI_PRODUCT_QLOGIC_ISP3022, <o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24687, 7601, 24695, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 24697, 7601, 24705, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QLOGIC,=
  PCI_PRODUCT_QLOGIC_ISP4022, <o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24687, 7601, 24695, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 24697, 7601, 24705, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUANCOM, PCI_PROD=
 UCT_QUANCOM_PWDOG1, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24699, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24709, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp;&nbsp;PCI_VENDOR_QUANTUMDESIGNS, PCI_PRODUCT_QUANTUMDESIGNS_8500, <o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DIT style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;9077, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier Ne=
 w"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUANTUMDESIGNS, =
 PCI_PRODUCT_QUANTUMDESIGNS_8580, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24706, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24716, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fon=
 t-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEN=
 DOR_QUICKLOGIC, PCI_PRODUCT_QUICKLOGIC_PCWATCHDOG, <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family=
 :"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;788, 16696=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1000, <o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 247=
 11, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 24721, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTI=
 O_1001, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT=
 _QUMRANET_VIRTIO_1002, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRAN=
 ET, PCI_PRODUCT_QUMRANET_VIRTIO_1003, <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1004, <o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 247=
 21, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1005, <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 4711, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIR=
 TIO_1006, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 > &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODU=
 CT_QUMRANET_VIRTIO_1007, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QU=
 MRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1008, <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1009, <o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 4721, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_100A, <o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  24711, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_V=
 IRTIO_100B, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_P=
 RODUCT_QUMRANET_VIRTIO_100C, <o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_100D, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_100E, <o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 24721, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_100F, =
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; 24711, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRAN=
 ET_VIRTIO_1010, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI=
 _PRODUCT_QUMRANET_VIRTIO_1011, <o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1012, <o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1013, <o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; 24721, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1014=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 24711, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRA=
 NET_VIRTIO_1015, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, =
 PCI_PRODUCT_QUMRANET_VIRTIO_1016, <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1017, <o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1018, <o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; 24721, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_=
 1019, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 24711, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_Q=
 UMRANET_VIRTIO_101A, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET=
 , PCI_PRODUCT_QUMRANET_VIRTIO_101B, <o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_=
 VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_101C, <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_101D, <o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 247=
 11, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 24721, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTI=
 O_101E, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT=
 _QUMRANET_VIRTIO_101F, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRAN=
 ET, PCI_PRODUCT_QUMRANET_VIRTIO_1020, <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1021, <o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 247=
 21, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1022, <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 4711, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIR=
 TIO_1023, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 > &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODU=
 CT_QUMRANET_VIRTIO_1024, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QU=
 MRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1025, <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1026, <o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 4721, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1027, <o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  24711, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_V=
 IRTIO_1028, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_P=
 RODUCT_QUMRANET_VIRTIO_1029, <o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_102A, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_102B, <o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 24721, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_102C, =
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; 24711, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRAN=
 ET_VIRTIO_102D, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI=
 _PRODUCT_QUMRANET_VIRTIO_102E, <o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_102F, <o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1030, <o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; 24721, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1031=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 24711, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRA=
 NET_VIRTIO_1032, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, =
 PCI_PRODUCT_QUMRANET_VIRTIO_1033, <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1034, <o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1035, <o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; 24721, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_=
 1036, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 24711, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_Q=
 UMRANET_VIRTIO_1037, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET=
 , PCI_PRODUCT_QUMRANET_VIRTIO_1038, <o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_=
 VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_1039, <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_103A, <o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 247=
 11, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 24721, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTI=
 O_103B, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT=
 _QUMRANET_VIRTIO_103C, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_QUMRAN=
 ET, PCI_PRODUCT_QUMRANET_VIRTIO_103D, <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24721, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_103E, <o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24711, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 247=
 21, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;PCI_VENDOR_QUMRANET, PCI_PRODUCT_QUMRANET_VIRTIO_103F, <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 4711, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 24721, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_RAINBOW, PCI_PRODUCT_RAINBOW_CS200=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 24718, 10052, 24730, 7607, 0,<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>=
 +&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24728, 10052, 24740, 7607, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;PCI_VENDOR_RALINK, PCI_PRODUCT_RALINK_RT2460A, <o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24734, 7446, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 247=
 44, 7446, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_RALINK, PCI_PRODUCT_RALINK_RT2560, <o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2474=
 2, 24749, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 24752, 24759, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_RALINK, PCI_PRODUCT_RAL=
 INK_RT2561S, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 24759, 24749, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;24769, 24759, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_RA=
 LINK, PCI_PRODUCT_RALINK_RT2561, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24767, 24749, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24777, 24759, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;PCI_VENDOR_RALINK, PCI_PRODUCT_RALINK_RT2661, <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24774, 11941, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 24784, 11941, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_RALINK, PCI_PRODUCT_RALINK_RT3090, <o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 24781, 11941, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 24791, 11941, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_RATOC, PCI_PRODUC=
 T_RATOC_REXPCI31, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 24788, 24792, 6440, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24798, 24802, 6440, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_RDC, PCI_PRODUCT_RDC_IDE, <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 5088, 6396, 21801, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 5088=
 , 6396, 21811, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_RDC, PCI_PRODUCT_RDC_PCIB, <o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;5088, 6607, 10842, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_RDC, PCI_PRODUCT_RDC_R6040, =
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; 5088, 24802, 5589, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 5088, 24812, 5589, 5487, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_=
 VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8029, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24808, 5487, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; 24818, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_REALTEK, PCI_PROD=
 UCT_REALTEK_RT8139D, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24813, 5589, 5487, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24823=
 , 5589, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_=
 RT8100, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 24819, 5589, 5487, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;24829, 5589, 548=
 7, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8129, <o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 24824, 5589, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24834, 5589, 5487, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8101E, <o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 4829, 5589, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24839, 5589, 5487, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8138, <o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24847, 5589, =
 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 24857, 5589, 5487, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 REALTEK, PCI_PRODUCT_REALTEK_RT8139, <o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Co=
 urier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;7350, 5589, 54=
 87, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8169SC, =
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 24852, 5502, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24862, 5502, 5487, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8168, <o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  24866, 5502, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK=
 _RT8169, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DIT style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;24876, 5502, 5487, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_V=
 ENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8169, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24886, 5502, 548=
 7, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RTL8188CE, =
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 24886, 4739, 4534, 24896, 15580, 15973, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24896=
 , 4739, 4534, 24906, 15580, 15973, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_REALTEK,=
  PCI_PRODUCT_REALTEK_RT8180, <o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24904, 7446, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 249=
 14, 7446, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT81=
 85, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 24909, 24914, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24919, 24924, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 IT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;PCI_VENDOR_RENESAS, PCI_PRODUCT_RENESAS_SH7780, <o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24926=
 , 615, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; 24936, 615, 6225, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fon=
 t-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEN=
 DOR_RENESAS, PCI_PRODUCT_RENESAS_SH7785, <o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24933, 615, 6225, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 24943, 615, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_RICOH, PCI_=
 PRODUCT_RICOH_Rx5C465, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24940, 12407, 6333, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24=
 950, 12407, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_=
 Rx5C466, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 24946, 12407, 6333, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24956, 12407, 63=
 33, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C475, <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 24952, 12407, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24962, 12407, 6333, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_RL5C476, <o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24958=
 , 12407, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24968, 12407, 6333, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D=
 'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI=
 _VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C477, <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24964, 12407, 6333,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 24974, 12407, 6333, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_RICOH,=
  PCI_PRODUCT_RICOH_Rx5C478, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24970, 12407, 6333, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 IT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 24980, 12407, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_RICOH, PCI_PRODUCT=
 _RICOH_Rx5C551, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 24976, 12407, 24982, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 24986, 1=
 2407, 24992, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C5=
 52, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 24998, 12407, 24982, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25008, 12407, 24992,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C592, <o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 25004, 12407, 25010, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25014, 12407, 25020, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C593, <o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25032=
 , 12407, 25010, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25042, 12407, 25020, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C821, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25038, 12407, 25=
 044, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 25048, 12407, 25054, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 RICOH, PCI_PRODUCT_RICOH_Rx5C822, <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25064, 12407, 25044, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 25074, 12407, 25054, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courie=
 r New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_RICOH, PCI_P=
 RODUCT_RICOH_Rx5C832, <o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25070, 25076, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25080, 25=
 086, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C843, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 25107, 12407, 25113, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25117, 12407, 25123, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C847, <o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25=
 147, 12407, 25113, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25157, 12407, 25123, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_RxDPCC, <o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25153, 10641, 6=
 225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 25163, 10641, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 RICOH, PCI_PRODUCT_RICOH_Rx5C853, <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25164, 12407, 25170, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 25174, 12407, 25180, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courie=
 r New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_RICOH, PCI_P=
 RODUCT_RICOH_Rx5U230, <o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25207, 25213, 6225, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 252=
 17, 25223, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_R=
 x5U822, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 25235, 20692, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25245, 20702, 62=
 25, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5U823, <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 25241, 20692, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25251, 20702, 6225, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5U832, <o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25247=
 , 8441, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 25257, 8441, 6225, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_V=
 ENDOR_RICOH, PCI_PRODUCT_RICOH_Rx5C852, <o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25253, 20705, 6225, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 25263, 20715, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_RISCOM, =
 PCI_PRODUCT_RISCOM_N2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25259, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25269, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp;&nbsp;PCI_VENDOR_RNS, PCI_PRODUCT_RNS_FDDI, <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25262, 252=
 67, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 25272, 25277, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_S2IO, PCI=
 _PRODUCT_S2IO_XFRAME, <o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25272, 12894, 5479, 5487, 5679, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 25282, 12894, 5479, 5487, 5679, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 S2IO, PCI_PRODUCT_S2IO_XFRAME2, <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25279, 12894, 5479, 5487, 567=
 9, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 25289, 12894, 5479, 5487, 5679, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D=
 'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI=
 _VENDOR_S2IO, PCI_PRODUCT_S2IO_XFRAME3, <o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25287, 12894, 5479, 5=
 487, 5679, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 25297, 12894, 5479, 5487, 5679, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_S3, PCI_PRODUCT_S3_VIRGE, <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25295, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 25305, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_S3, PCI_PRODUCT_S3_TRIO32, <o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 25301, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25311, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 S3, PCI_PRODUCT_S3_TRIO64, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25308, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_=
 S3, PCI_PRODUCT_S3_AURORA64P, <o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier N=
 ew"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;25318, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DI=
 T style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; PCI_VENDOR_S3, PCI_PRODUCT_S3_AURORA64P, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25328, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp;&nbsp;PCI_VENDOR_S3, PCI_PRODUCT_S3_TRIO64UVP, <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25329, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; PCI_VENDOR_S3, PCI_PRODUCT_S3_VIRGE_VX, <o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;25339, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_S3, PCI_PRODUCT_S3_VIRGE_VX, <o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; 25349, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_S3, PCI_PRODUCT_S3_868, <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 25348, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25358, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_S3, =
 PCI_PRODUCT_S3_928, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25352, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25362, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp;&nbsp;PCI_VENDOR_S3, PCI_PRODUCT_S3_864_0, <o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25359, 25368=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 25369, 25378, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_S3, PCI_PRO=
 DUCT_S3_864_1, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; 25382, 25368, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25392, 25378, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp;&nbsp;PCI_VENDOR_S3, PCI_PRODUCT_S3_864_2, <o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25391=
 , 25368, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 25401, 25378, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_S3, =
 PCI_PRODUCT_S3_864_3, <o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25400, 25368, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25410, 25=
 378, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_S3, PCI_PRODUCT_S3_964_0, <o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DI=
 T style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 25409, 25418, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25419, 25428, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_S3, PCI_PRODUCT_S3_964_1, <o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25432, 25418, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25=
 442, 25428, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_S3, PCI_PRODUCT_S3_964_2, <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 25441, 25418, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25451, 25428, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;PCI_VENDOR_S3, PCI_PRODUCT_S3_964_3, <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25450, 25418, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; 25460, 25428, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_S3, PCI_PRODUCT_S3_968=
 _0, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 25459, 25468, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25469, 25478, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 IT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;PCI_VENDOR_S3, PCI_PRODUCT_S3_968_1, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25482, 25468, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 25492, 25478, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_S3, PCI_PRODUCT=
 _S3_968_2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 25491, 25468, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25501, 25478, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;PCI_VENDOR_S3, PCI_PRODUCT_S3_968_3, <o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25500, 25=
 468, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 25510, 25478, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_S3, PCI_=
 PRODUCT_S3_TRIO64V2_DX, <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25509, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25519, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;PCI_VENDOR_S3, PCI_PRODUCT_S3_PLATO_PX, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25521=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 25531, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_S3, PCI_PRODUCT_S3=
 _TRIO3D, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 25530, 25537, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25540, 25547, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp;&nbsp;PCI_VENDOR_S3, PCI_PRODUCT_S3_VIRGE_DX, <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25544, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 25554, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_S3, PCI_PRODUCT_S3_VI=
 RGE_GX2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 25553, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_S3, PCI_PRODUCT_S3=
 _TRIO3D2X, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DIT style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;25563, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_S3, P=
 CI_PRODUCT_S3_SAVAGE3D, <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_S3, PCI_PRODUCT_S3_TRIO3D2=
 X, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DIT style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;25573, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_S3, PCI_PRODUC=
 T_S3_SAVAGE3D, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; 25583, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_S3, PCI=
 _PRODUCT_S3_SAVAGE3D_MV, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25582, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25592, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;PCI_VENDOR_S3, PCI_PRODUCT_S3_SAVAGE4, <o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25594=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 25604, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_S3, PCI_PRODUCT_S3=
 _PROSAVAGE_KM133, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25602, 25612, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25612, 25622,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_S3, PCI_PRODUCT_S3_VIRGE_MX, <o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  25618, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 25628, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courie=
 r New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_S3, PCI_PROD=
 UCT_S3_VIRGE_MXP, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25627, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_S3, PCI_P=
 RODUCT_S3_SAVAGE_MX_MV, <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>&=
 nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;25637, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_=
 VENDOR_S3, PCI_PRODUCT_S3_SAVAGE_MX_MV, <o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25647, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DI=
 T style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;PCI_VENDOR_S3, PCI_PRODUCT_S3_SAVAGE_MX, <o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25650, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; PCI_VENDOR_S3, PCI_PRODUCT_S3_SAVAGE_IX_MV, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;25660, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_S3, PCI_PRODUCT_S3_SAVAGE_IX_MV, <o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 25670, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_S3, PCI_PRODUCT_S3_SAVAGE=
 _IX, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 25673, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_S3, PCI_PRODUCT_S3_SAV=
 AGE_IXC, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DIT style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;25683, 0,<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_S3, PCI_=
 PRODUCT_S3_SAVAGE_IXC, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25693, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-f=
 amily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR=
 _S3, PCI_PRODUCT_S3_SAVAGE2000, <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25694, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25704=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_S3, PCI_PRODUCT_S3_SONICVIBES, <o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 25705, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; 25715, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SAFENET=
 , PCI_PRODUCT_SAFENET_SAFEXCEL, <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25716, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25726=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SAMSUNGSEMI, PCI_PRODUCT_SAMSUNGSEMI_KS89=
 20, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 25725, 5589, 5487, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25735, 5589, 5487, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp;&nbsp;PCI_VENDOR_SANDBURST, PCI_PRODUCT_SANDBURST_QE1000, <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DDA style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 25732, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DDA style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25742, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DDA style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SAND=
 BURST, PCI_PRODUCT_SANDBURST_FE1000, <o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DDA style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25739, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 5749, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DDA style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SEGA, PCI_PRODUCT_SEGA_BROADBAND, <o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DDA style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 25746, 5679, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DDA style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25756, 5679, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CNB20_LE_AGP, <o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  25756, 25765, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DDA style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25766, 25775, 6333, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nb=
 sp;PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CNB30_LE_PCI, <o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DDA style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 25773, 615, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DDA style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25783, 615, 6333, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDA =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CNB20_LE_PCI, <o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2575=
 6, 615, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 25766, 615, 6333, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SERVERWORKS, PC=
 I_PRODUCT_SERVERWORKS_CNB20_HE_PCI, <o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25782, 615, 6333, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25792, 615,=
  6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp;&nbsp;PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CNB20_HE_=
 AGP, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 25782, 25765, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25792, 25775, 6333, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDO=
 R_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CIOB_X, <o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25791, 8149, 6333, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  25801, 8149, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWO=
 RKS_CMIC_HE, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 25798, 25765, 6333, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25808, 25775, 6333, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CNB30_HE, <o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25806, 615, 6=
 333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 25816, 615, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SERVERWORKS, PCI_PRODUCT=
 _SERVERWORKS_CNB20_HE_PCI2, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25782, 25765, 6333, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fam=
 ily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25792, 25775, 633=
 3, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CMIC_LE, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 25815, 25765, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 25825, 25775, 6333, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SERVERW=
 ORKS, PCI_PRODUCT_SERVERWORKS_CMIC_SL, <o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25823, 25765, 6333, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25833=
 , 25775, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_H=
 T1000_PPB0, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 25831, 22813, 6333, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25841, 22823, 6333, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CIOB_X2, <o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25838, 8149, 6=
 333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 25848, 8149, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SERVERWORKS, PCI_PRODUC=
 T_SERVERWORKS_BCM5714, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 25846, 25862, 15580, 6785, 8149, 6333, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 258=
 56, 25872, 15580, 6785, 8149, 6333, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SERVERWORKS, PCI_=
 PRODUCT_SERVERWORKS_HT1000_PPB1, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25831, 22813, 6333, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25841, 22823=
 , 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CIOB_E, =
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; 25871, 8149, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25881, 8149, 6333, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SER=
 VERWORKS, PCI_PRODUCT_SERVERWORKS_HT2100_PPB0, <o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25878, 21836, 6333, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 25888, 21846, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVER=
 WORKS_HT2100_PPB1, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 25878, 21836, 6333, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25888, 21846, 6333, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_HT2100_PPB2, <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25878=
 , 21836, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 25888, 21846, 6333, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SERVERWORK=
 S, PCI_PRODUCT_SERVERWORKS_HT2100_PPB3, <o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25878, 21836, 6333, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25888=
 , 21846, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_O=
 SB4, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 25885, 8007, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25895, 8007, 6333, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CSB5, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25890, 8007, 6333, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 5900, 8007, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORK=
 S_CSB6, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 25895, 8007, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25905, 8007, 6333, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_HT1000SB, <o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25900, 8007, 6333, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; 25910, 8007, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SER=
 VERWORKS_OSB4_IDE, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 25885, 6396, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25895, 6396, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDO=
 R_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CSB5_IDE, <o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25890, 6396, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 259=
 00, 6396, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_HT1000=
 _IDE, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 25909, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25919, 6396, 6225, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-f=
 amily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR=
 _SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CSB6_RAID, <o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25895, 25917, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25=
 905, 25927, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CSB6=
 _IDE, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 25895, 25917, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25905, 25927, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SERVERWO=
 RKS, PCI_PRODUCT_SERVERWORKS_OSB4_USB, <o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25926, 6721, 6729, 6225, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 5936, 6721, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SER=
 VERWORKS_CSB6_USB, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 25895, 6721, 6729, 6225, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;25905, 6721, 6729, 62=
 25, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_HT1000_USB, =
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; 25831, 6721, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 25841, 6721, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SERVERWORKS, PCI_=
 PRODUCT_SERVERWORKS_CSB5_LPC, <o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25890, 25936, 6333, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25900, 25946, 6=
 333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_CSB6_LPC, <=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 25895, 25936, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25905, 25946, 6333, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SE=
 RVERWORKS, PCI_PRODUCT_SERVERWORKS_HT1000_LPC, <o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25831, 8222, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25841=
 , 8222, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_HT1000_X=
 IOAPIC, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 25831, 25944, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25841, 25954, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SERVERW=
 ORKS, PCI_PRODUCT_SERVERWORKS_HT1000_WDTIMER, <o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25831, 16696, 14694, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 25841, 16696, 14694, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SER=
 VERWORKS_K2_SATA, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;8503, 8249, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SERVERWOR=
 KS, PCI_PRODUCT_SERVERWORKS_FRODO4_SATA, <o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25952, 8249, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25962, 8249=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp;&nbsp;PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_FRODO8_SATA, <=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 25959, 8249, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 25969, 8249, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SERVERWORKS, PCI_P=
 RODUCT_SERVERWORKS_HT1000_SATA_1, <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25909, 8249, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25919, 8249, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;PCI_VENDOR_SERVERWORKS, PCI_PRODUCT_SERVERWORKS_HT1000_SATA_2, <o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; 25909, 8249, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25919, 8249, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_=
 VENDOR_SGI, PCI_PRODUCT_SGI_IOC3, <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25966, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2597=
 6, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SGI, PCI_PRODUCT_SGI_RAD1, <o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  25971, 25979, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25981, 25989, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-=
 family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDO=
 R_SGI, PCI_PRODUCT_SGI_TIGON, <o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25984, 5479, 5487, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 25994, 5479, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SGSTHOMSON, PCI_PR=
 ODUCT_SGSTHOMSON_2000, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 25990, 25994, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26000, 2=
 6004, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SGSTHOMSON, PCI_PRODUCT_SGSTHOMSON_17=
 64, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 25990, 26000, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26000, 26010, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 IT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;PCI_VENDOR_SIBYTE, PCI_PRODUCT_SIBYTE_BCM1250_PCIHB, <o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 26006, 615, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26016, 615, 6729, 6333, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_SIBYTE, PCI_PRODUCT_SIBYTE_BCM1250_LDTHB, <o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 IT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 26006, 26014, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26016, 26024, 6729, 6333, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;PCI_VENDOR_SIGMA, PCI_PRODUCT_SIGMA_HOLLYWOODPLUS, <o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; 26018, 26028, 26043, 6689, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26028, 26038, 26053, 6689=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_S550, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 26050, 10492, 26059, 615, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26060, 10492, 26069, 61=
 5, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_S650, <o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 26050, 10492, 26065, 615, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26060, 10492, 26075, 6=
 15, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_S850, <o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 26050, 10492, 26071, 615, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26060, 10492, 26081, =
 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_IO550, =
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 26050, 8209, 26059, 615, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26060, 8209, 26069, =
 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_IO650, =
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 26050, 8209, 26065, 615, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26060, 8209, 26075, =
 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_IO850, =
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 26050, 8209, 26071, 615, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26060, 8209, 26081, =
 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_P, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 26050, 16943, 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26060, 16943, 615, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_2P, <o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2605=
 0, 16943, 10019, 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26060, 16943, 10019, 615, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_2S550, <o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 6050, 10492, 10019, 26059, 615, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26060, 10492, 10019, 26069,=
  615, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_2S650,=
  <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 26050, 10492, 10019, 26065, 615, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26060, 1049=
 2, 10019, 26075, 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIIG, PCI_PRODUCT_SII=
 G_CYBER10_2S850, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26050, 10492, 10019, 26071, 615, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 26060, 10492, 10019, 26081, 615, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIIG=
 , PCI_PRODUCT_SIIG_CYBER10_2S1P550, <o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26050, 26077, 26059, 615,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 26060, 26087, 26069, 615, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 SIIG, PCI_PRODUCT_SIIG_CYBER10_2S1P650, <o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26050, 26077, 26065, =
 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 26060, 26087, 26075, 615, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'fon=
 t-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEN=
 DOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_2S1P850, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26050, 26077, 26=
 071, 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 26060, 26087, 26081, 615, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_4S550, <o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26050, 26082=
 , 26059, 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 26060, 26092, 26069, 615, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_4S650, <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26050, 260=
 82, 26065, 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26060, 26092, 26075, 615, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV s=
 tyle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&n=
 bsp;PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER10_4S850, <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26050, 2=
 6082, 26071, 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26060, 26092, 26081, 615, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_S550, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26085=
 , 10492, 26059, 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26095, 10492, 26069, 615, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_S650, <o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26=
 085, 10492, 26065, 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26095, 10492, 26075, 615, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp;&nbsp;PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_S850, <o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 26085, 10492, 26071, 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26095, 10492, 26081, 615, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_IO550, <o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DS=
 V style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 26085, 8209, 26059, 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26095, 8209, 26069, 615, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_IO650, <o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DS=
 V style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 26085, 8209, 26065, 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26095, 8209, 26075, 615, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_IO850, <o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DS=
 V style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 26085, 8209, 26071, 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26095, 8209, 26081, 615, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_P, <o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26=
 085, 16943, 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26095, 16943, 615, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_2P, <o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26085, 16943, 1=
 0019, 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 26095, 16943, 10019, 615, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_2S550, <o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26085, 10492=
 , 10019, 26059, 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26095, 10492, 10019, 26069, 615, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_2S650, <o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 26085, 10492, 10019, 26065, 615, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26095, 10492, 10019,=
  26075, 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20=
 _2S850, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 26085, 10492, 10019, 26071, 615, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2609=
 5, 10492, 10019, 26081, 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier =
 New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIIG, PCI_PROD=
 UCT_SIIG_CYBER20_2P1S550, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26085, 26094, 26059, 615, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; 26095, 26104, 26069, 615, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIIG, PCI=
 _PRODUCT_SIIG_CYBER20_2P1S650, <o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26085, 26094, 26065, 615, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 26095, 26104, 26075, 615, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIIG,=
  PCI_PRODUCT_SIIG_CYBER20_2P1S850, <o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26085, 26094, 26071, 615, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 26095, 26104, 26081, 615, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 SIIG, PCI_PRODUCT_SIIG_CYBER20_4S550, <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26085, 26082, 26059, 61=
 5, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 26095, 26092, 26069, 615, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-=
 family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDO=
 R_SIIG, PCI_PRODUCT_SIIG_CYBER20_4S650, <o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26085, 26082, 26065, =
 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 26095, 26092, 26075, 615, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'fon=
 t-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEN=
 DOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_4S850, <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26085, 26082, 26071=
 , 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 26095, 26092, 26081, 615, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_V=
 ENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_2S1P550, <o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26085, 26077, 2=
 6059, 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 26095, 26087, 26069, 615, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_2S1P650, <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26085, 260=
 77, 26065, 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26095, 26087, 26075, 615, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV s=
 tyle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&n=
 bsp;PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_CYBER20_2S1P850, <o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26085=
 , 26077, 26071, 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26095, 26087, 26081, 615, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_PS8000P550, <o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 615,=
  10492, 26099, 13068, 26059, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 615, 10492, 26109, 13068, 2606=
 9, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_PS8000P650, <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 615, 10492, 26099, 13068, 26065, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 615, 10492, 2610=
 9, 13068, 26075, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIIG, PCI_PRODUCT_SIIG_PS8=
 000P850, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 615, 10492, 26099, 13068, 26071, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 615=
 , 10492, 26109, 13068, 26081, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PROD=
 UCT_SIS_86C201, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 26104, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26114, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_86C202, <o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26111, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; 26121, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_86C205,=
  <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 26118, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26128, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-=
 family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDO=
 R_SIS, PCI_PRODUCT_SIS_85C503, <o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;26125, 26132, 26135, 16180, 63=
 33, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 26135, 26142, 26145, 16180, 6333, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_SIS, PCI_PRODUCT_SIS_600PMC, <o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26145, 3749, 26149, 6=
 225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 26155, 3749, 26159, 6225, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'fon=
 t-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEN=
 DOR_SIS, PCI_PRODUCT_SIS_180_SATA, <o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26155, 8249, 6225, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 26165, 8249, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUC=
 T_SIS_181_SATA, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 26159, 8249, 6225, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26169, 824=
 9, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_182_SATA, <o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 26163, 8249, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26173, 8249, 6225, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_183_SATA, <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26167, 8=
 249, 21801, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; 26177, 8249, 21811, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_SIS, PCI_PRODUCT_SIS_190, <o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26171, 5487, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 6181, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_191, <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 26175, 5479, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26185, 5479, 5487, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_5597_VGA, <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26135, 6=
 92, 7967, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 26145, 692, 7967, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-f=
 amily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR=
 _SIS, PCI_PRODUCT_SIS_300, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26179, 8068, 7967, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  26189, 8068, 7967, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_31=
 5PRO_VGA, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 26187, 7023, 7967, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26197, 7023, 796=
 7, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_85C501, <o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 SV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 26191, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 26201, 0,<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_P=
 RODUCT_SIS_85C496, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26198, 0,<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26208, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_530HB, <o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26205, 6621=
 , 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 26215, 6621, 6333, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 SIS, PCI_PRODUCT_SIS_540HB, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23217, 6621, 6333, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DS=
 V style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 23227, 6621, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_5=
 50HB, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 23689, 6621, 6333, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 23699, 6621, 6333, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_85C601, <o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 6209, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 26219, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier =
 New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODU=
 CT_SIS_620, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 26216, 6729, 6333, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26226, 6729, 6=
 333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_630, <o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DS=
 V style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 26220, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26230, 6729, 6333, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_633, <o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26224, 6729, 6333, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; 26234, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PR=
 ODUCT_SIS_635, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; 26228, 6729, 6333, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26238, 6729=
 , 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_640, <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 26232, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26242, 6729, 6333, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_645, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26236, 6729, 633=
 3, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 26246, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, =
 PCI_PRODUCT_SIS_646, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26240, 6729, 6333, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26250=
 , 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_648, <o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 26244, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26254, 6729, 6333, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_650, <o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26248, 6729, =
 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 26258, 6729, 6333, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 SIS, PCI_PRODUCT_SIS_651, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26252, 6729, 6333, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  26262, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_65=
 2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 26256, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26266, 6729, 6333, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_655, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26260=
 , 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 26270, 6729, 6333, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_V=
 ENDOR_SIS, PCI_PRODUCT_SIS_658, <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26264, 6729, 6333, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 26274, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_S=
 IS_661, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 26268, 6729, 6333, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26278, 6729, 633=
 3, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_671, <o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 26272, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26282, 6729, 6333, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_SIS, PCI_PRODUCT_SIS_730, <o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26276, 6729, 6333, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 26286, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PROD=
 UCT_SIS_733, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 26280, 6729, 6333, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26290, 6729, =
 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_735, <o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 SV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 26284, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26294, 6729, 6333, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nb=
 sp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_740, <o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26288, 6729, 6333, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 26298, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_P=
 RODUCT_SIS_741, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 26292, 6729, 6333, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26302, 672=
 9, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_745, <o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 26296, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26306, 6729, 6333, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_746, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26300, 6729, 633=
 3, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 26310, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, =
 PCI_PRODUCT_SIS_748, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26304, 6729, 6333, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26314=
 , 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_750, <o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 26308, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26318, 6729, 6333, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_751, <o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26312, 6729, =
 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 26322, 6729, 6333, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 SIS, PCI_PRODUCT_SIS_752, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26316, 6729, 6333, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  26326, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_75=
 5, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 26320, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26330, 6729, 6333, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_756, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26324=
 , 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 26334, 6729, 6333, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_V=
 ENDOR_SIS, PCI_PRODUCT_SIS_760, <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26328, 6729, 6333, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 26338, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_S=
 IS_761, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 26332, 6729, 6333, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26342, 6729, 633=
 3, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_900, <o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 26336, 5589, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26346, 5589, 5487, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_SIS, PCI_PRODUCT_SIS_961, <o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26340, 6729, 6333, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 26350, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PROD=
 UCT_SIS_962, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 26344, 6729, 6333, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26354, 6729, =
 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_963, <o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 SV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 26348, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26358, 6729, 6333, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nb=
 sp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_964, <o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26352, 6729, 6333, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 26362, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_P=
 RODUCT_SIS_965, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 26356, 6729, 6333, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26366, 672=
 9, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_966, <o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 26360, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26370, 6729, 6333, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_968, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26364, 6729, 633=
 3, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 26374, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, =
 PCI_PRODUCT_SIS_5597_IDE, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26135, 6396, 6225, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  26145, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_55=
 97_HB, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 26135, 6729, 6333, 0,<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26145, 6729, 6333, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_530VGA, <o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 26205, 26368, 26372, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26215, 26378, 26382, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV s=
 tyle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&n=
 bsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_6325, <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26387, 8068, 7967, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 26397, 8068, 7967, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI=
 _PRODUCT_SIS_6326, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26392, 8068, 7967, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26402=
 , 8068, 7967, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_5597_USB=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 26135, 6721, 6729, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26145, 6721, 672=
 9, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_7002, <o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; 26397, 6721, 6740, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26407, 6721, 6740, 67=
 29, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_7012_AC, <o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 26402, 18670, 3393, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26412, 18670, 3393, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_7016, <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26407, 558=
 9, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 26417, 5589, 5487, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-f=
 amily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR=
 _SIS, PCI_PRODUCT_SIS_7018, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26412, 3393, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2642=
 2, 3393, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SIS, PCI_PRODUCT_SIS_7502, <o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; 26417, 8262, 26422, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26427, 8262, 26432, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_SILMOTION, PCI_PRODUCT_SILMOTION_SM502, <o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  26428, 9356, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 26438, 9356, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 SILMOTION, PCI_PRODUCT_SILMOTION_SM710, <o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26436, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DS=
 V style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 26446, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SILMOTION, PCI_PRODUCT_SILMOTION_S=
 M712, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 26443, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26453, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_=
 VENDOR_SILMOTION, PCI_PRODUCT_SILMOTION_SM720, <o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26451, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 26461, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SILMOTION, PCI_PRODUCT_SILM=
 OTION_SM810, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 26459, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26469, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nb=
 sp;PCI_VENDOR_SILMOTION, PCI_PRODUCT_SILMOTION_SM811, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26459=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 26469, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SILMOTION, PCI_PRO=
 DUCT_SILMOTION_SM820, <o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26465, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26475, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DSV style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp;&nbsp;PCI_VENDOR_SILMOTION, PCI_PRODUCT_SILMOTION_SM910, <o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DS=
 V style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 26472, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 26482, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SMC, PCI_PR=
 ODUCT_SMC_37C665, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26477, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_SMC, PCI_=
 PRODUCT_SMC_37C922, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>&nbsp=
 ;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;26487, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VEND=
 OR_SMC, PCI_PRODUCT_SMC_37C922, <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26497, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_SMC, PCI_PRODUCT_SMC_83C170, <o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26497, 26504, 2439, 5=
 487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 26507, 26514, 2439, 5487, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'fon=
 t-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEN=
 DOR_SMC, PCI_PRODUCT_SMC_83C175, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26517, 26504, 2439, 5487, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 26527, 26514, 2439, 5487, 0,<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-famil=
 y:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SOL=
 IDUM, PCI_PRODUCT_SOLIDUM_AMD971, <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26524, 458, 26533, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; 26534, 458, 26543, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier Ne=
 w"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SOLIDUM, PCI_PRO=
 DUCT_SOLIDUM_CLASS802, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26524, 26537, 19846, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 6534, 26547, 19846, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SOLIDUM, PCI_PRODUCT_SO=
 LIDUM_PAXWARE1100, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 26548, 21745, 10019, 26557, 26537, 19846, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2655=
 8, 21755, 10019, 26567, 26547, 19846, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SONY, PCI_PRODU=
 CT_SONY_CXD1947A, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 26560, 14406, 14411, 6729, 6225, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26570, 14406, =
 14411, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SONY, PCI_PRODUCT_SONY_CXD3222, <o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 26569, 14406, 14411, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26579, 14406, 14411, 6729, 6225, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp;&nbsp;PCI_VENDOR_SONY, PCI_PRODUCT_SONY_MEMSTICK, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 4513,=
  20699, 18915, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 4513, 20709, 18915, 6225, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_SUN, PCI_PRODUCT_SUN_EBUS, <o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26577, 26582=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 26587, 26592, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SUN, PCI_PR=
 ODUCT_SUN_HMENETWORK, <o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26577, 26588, 26594, 5487, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 26587, 26598, 26604, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SUN, PCI_P=
 RODUCT_SUN_EBUSIII, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26577, 26582, 26599, 26603, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 IT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 26587, 26592, 26609, 26613, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courie=
 r New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SUN, PCI_PRO=
 DUCT_SUN_ERINETWORK, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26608, 5487, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26618, 5487=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SUN, PCI_PRODUCT_SUN_FIREWIRE, <o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;8528, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SUN, PCI_PRODUC=
 T_SUN_USB, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DIT style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;6721, 6225, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fon=
 t-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEN=
 DOR_SUN, PCI_PRODUCT_SUN_GEMNETWORK, <o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26612, 5479, 5487, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 26622, 5479, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SUN, PCI_PROD=
 UCT_SUN_SIMBA, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; 26616, 615, 6333, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26626, 615, =
 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SUN, PCI_PRODUCT_SUN_5821, <o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 26622, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; 26632, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SUN, PC=
 I_PRODUCT_SUN_SCA1K, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>&nbs=
 p;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;8350, 7607, 14095, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_SUN, PCI_PRODUCT_SUN_PSYCHO, <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26630, 615=
 , 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 26640, 615, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 SUN, PCI_PRODUCT_SUN_MS_IIep, <o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26637, 26648, 615, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26647, 26658, 61=
 5, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;PCI_VENDOR_SUN, PCI_PRODUCT_SUN_US_IIi, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fam=
 ily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26653, 26664, 615=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; 26663, 26674, 615, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SUN, PCI_PRODUCT_SUN_US_II=
 e, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 26653, 15515, 615, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26663, 15515, 615, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;PCI_VENDOR_SUN, PCI_PRODUCT_SUN_CASSINI, <o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 266=
 68, 5479, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26678, 5479, 5487, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D=
 'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI=
 _VENDOR_SUNDANCETI, PCI_PRODUCT_SUNDANCETI_IP100A, <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26676, 558=
 9, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 26686, 5589, 5487, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-f=
 amily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR=
 _SUNDANCETI, PCI_PRODUCT_SUNDANCETI_ST201, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26683, 5589, 5487, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 6693, 5589, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SUNDANCETI, PCI_PRODUCT_SUNDANCETI_=
 ST1023, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 26689, 5479, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26699, 5479, 5487, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_SUNDANCETI, PCI_PRODUCT_SUNDANCETI_ST2021, <o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26696, 5479, 5487, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 26706, 5479, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SUNIX2, PCI_PRODUCT_SUNIX2_0001, <=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 26703, 6531, 26710, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26713, 6531, 26720, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SU=
 NIX2, PCI_PRODUCT_SUNIX2_SER5XXXX, <o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>=
 -&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26718, 26726, 6531, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26728, 267=
 36, 6531, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SUNIX, PCI_PRODUCT_SUNIX_PCI2S550, <o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2673=
 6, 26726, 6531, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 26746, 26736, 6531, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SUNIX, PCI=
 _PRODUCT_SUNIX_SUN1888, <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp; &nbsp;&nbsp;26745, 26726, 26753, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26755, 26736, 26763,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp;&nbsp;PCI_VENDOR_SURECOM, PCI_PRODUCT_SURECOM_NE34, <o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26762, 5487, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 26772, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYBA, PCI_PRODUCT_SYBA_4S2P, <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 6768, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 26778, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYBA, PCI_PRODUCT_SYBA_4S, <o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 260=
 82, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 26092, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMPHONY, PCI_PRODUCT_SYMPHONY_82C10=
 1, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; 26773, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 26783, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMPHONY, PCI_PRODUCT_SYMP=
 HONY_82C103, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 26780, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26790, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMPHONY, PCI_P=
 RODUCT_SYMPHONY_82C105, <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; 26787, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26797, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYMPH=
 ONY2, PCI_PRODUCT_SYMPHONY2_82C101, <o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26773, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26783, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_=
 VENDOR_SYMPHONY, PCI_PRODUCT_SYMPHONY_83C553, <o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26794, 6607, 6333, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 26804, 6607, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYSTEMBASE, PCI_PRODUCT_SYSTEMBASE=
 _SB16C1054, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 26801, 26811, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26811, 26821, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SYS=
 TEMBASE, PCI_PRODUCT_SYSTEMBASE_SB16C1058, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26817, 26811, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26827=
 , 26821, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SCHNEIDERKOCH, PCI_PRODUCT_SCHNEIDERKOCH_SKN=
 ET_FDDI, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; 15169, 26827, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 15169, 26837, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SCHNEI=
 DERKOCH, PCI_PRODUCT_SCHNEIDERKOCH_SKNET_GE, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 15169, 26835, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 15169=
 , 26845, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SCHNEIDERKOCH, PCI_PRODUCT_SCHNEIDERKOCH_SK9=
 821v2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 26838, 8774, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26848, 8774, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SCHNEIDER=
 KOCH, PCI_PRODUCT_SCHNEIDERKOCH_SK_9DX1, <o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 15169, 26846, 5479, 5487, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 15169, 26856, 5479, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SCHNEIDERKOCH, PCI_PRODUC=
 T_SCHNEIDERKOCH_SK_9D21, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26854, 26862, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26864, 26872, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;PCI_VENDOR_SCHNEIDERKOCH, PCI_PRODUCT_SCHNEIDERKOCH_SK_9D41, <o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26873, 26=
 881, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 26883, 26891, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_SCHNEIDERKOCH, PCI_PRODUCT_S=
 CHNEIDERKOCH_SK_9SXX, <o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 26892, 5479, 5487, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26902, 5479, 5487, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;PCI_VENDOR_SCHNEIDERKOCH, PCI_PRODUCT_SCHNEIDERKOCH_SK_9E21, <o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2690=
 0, 26917, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 26910, 26927, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TAMARACK, PCI_PRODUCT_T=
 AMARACK_TC9021, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 26928, 5479, 5487, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26938, 5479, 5487, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_TAMARACK, PCI_PRODUCT_TAMARACK_TC9021_ALT, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fam=
 ily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26928, 5479, 5487=
 , 26935, 626, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 26938, 5479, 5487, 26945, 626, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TA=
 NDEM, PCI_PRODUCT_TANDEM_SERVERNETII, <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26940, 7361, 2497, 5679, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26=
 950, 7361, 2497, 5679, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TEKRAM, PCI_PRODUCT_TEKRAM_D=
 C290, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 26950, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_TEKRAM2, PCI_PRODUCT_TEKRAM2_DC690C, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp;&nbsp;26960, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_TEKRAM2, PCI_PRODUCT_TEKRAM2_DC690C, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 26970, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp;&nbsp;PCI_VENDOR_TEKRAM2, PCI_PRODUCT_TEKRAM2_DC315, <o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26968=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; 26978, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_TLAN, <o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26982, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; 26992, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_TVP4020, <o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 26987, 616=
 6, 6181, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 26997, 6166, 6181, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 > &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_=
 TSB12LV21, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 26995, 14406, 14411, 6729, 6225, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_TI, PCI_PR=
 ODUCT_TI_TSB12LV22, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;27005, 14406, 14411, 6729, 6225, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PC=
 I_VENDOR_TI, PCI_PRODUCT_TI_TSB12LV22, <o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27015, 14406, 14411, 6729, 6225,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI4450LYNX, <o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27015, 14406, 14=
 411, 6729, 6225, 5926, 12407, 6333, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27025, 14406, 14411, 6729, 6225, =
 5926, 12407, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI4410LYNX, <o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 27023, 14406, 14411, 6729, 6225, 5926, 12407, 6333, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27033, 14406, 1=
 4411, 6729, 6225, 5926, 12407, 6333, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span style=3D'font-family:"Courier Ne=
 w"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_=
 TI_TSB12LV23, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 27031, 14406, 14411, 6729, 6225, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_TI, PCI=
 _PRODUCT_TI_TSB12LV26, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'>&nbsp;&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;27041, 14406, 14411, 6729, 6225, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  PCI_VENDOR_TI, PCI_PRODUCT_TI_TSB43AA22, <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_TI, PCI_PRODUCT_TI=
 _TSB12LV26, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;27051, 14406, 14411, 6729, 6225, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR=
 _TI, PCI_PRODUCT_TI_TSB43AA22A, <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_TI, PCI_PRODUCT_TI_TSB43AA22=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;27061, 14406, 14411, 6729, 6225, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_TI, PCI_P=
 RODUCT_TI_TSB43AA22A, <o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 27071, 14406, 14411, 6729, 6225, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_V=
 ENDOR_TI, PCI_PRODUCT_TI_TSB43AA23, <o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27073, 14406, 14411, 6729, 6225, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; PCI_VENDOR_TI, PCI_PRODUCT_TI_TSB43AB21, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;27083, 14406, 14=
 411, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_TI, PCI_PRODUCT_TI_TSB43AB21, <o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27093=
 , 14406, 14411, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI445=
 1LYNX, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 27093, 14406, 14411, 6729, 6225, 5926, 12407, 6333, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27103=
 , 14406, 14411, 6729, 6225, 5926, 12407, 6333, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PC=
 I_PRODUCT_TI_PCI4510LYNX, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27101, 14406, 14411, 6729, 6225, 5926, 12407=
 , 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 27111, 14406, 14411, 6729, 6225, 5926, 12407, 6333, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI4520LYNX, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27109, 14406, 14411, 6729,=
  6225, 5926, 12407, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27119, 14406, 14411, 6729, 6225, 5926, 1240=
 7, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI7410LYNX, <o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27117, 1=
 4406, 14411, 6729, 6225, 5926, 12407, 6333, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27127, 14406, 14411, 6729=
 , 6225, 5926, 12407, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI7211=
 1CB, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 27129, 27142, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27139, 27152, 6225, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDO=
 R_TI, PCI_PRODUCT_TI_PCI72111FW, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27129, 14406, 14411, 6729, 6225, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  27139, 14406, 14411, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 > &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_=
 PCI72111FM, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 27129, 692, 27150, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27139, 692, 27160, 6225, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI72111SD, <o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27129, 82=
 59, 10641, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27139, 8259, 10641, 6225, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI72111SM, <o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27129, 27161, =
 10641, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; 27139, 27171, 10641, 6225, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI6515A, <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27164, 27142, 6225,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 27174, 27152, 6225, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PC=
 I_PRODUCT_TI_PCI6515ASM, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27164, 27142, 6225, 27173, 10641, =
 9256, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 27174, 27152, 6225, 27183, 10641, 9256, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 IT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCIXX12CB, <o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27180, 27142=
 , 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 27190, 27152, 6225, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-f=
 amily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR=
 _TI, PCI_PRODUCT_TI_PCIXX12FW, <o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27180, 14406, 14411, 6729, 622=
 5, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 27190, 14406, 14411, 6729, 6225, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_TI, PCI_PRODUCT_TI_PCIXX12FM, <o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27180, 692, 27150, 6=
 225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 27190, 692, 27160, 6225, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_TI, PCI_PRODUCT_TI_PCIXX12SD, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27180, 27188, 240, 6729, 622=
 5, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 27190, 27198, 240, 6729, 6225, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_=
 VENDOR_TI, PCI_PRODUCT_TI_PCIXX12SM, <o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27180, 12813, 10641, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; 27190, 12813, 10641, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_P=
 RODUCT_TI_ACX100A, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27195, 7446, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27205, 7446, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_ACX100B, <o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 7203, 7446, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; 27213, 7446, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 TI, PCI_PRODUCT_TI_ACX111, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27211, 24749, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2722=
 1, 24759, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1130, <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 27218, 12407, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27228, 12407, 6333, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1031, <o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27226, 1442=
 3, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 27236, 14423, 6333, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-=
 family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDO=
 R_TI, PCI_PRODUCT_TI_PCI1131, <o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27234, 12407, 6333, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 27244, 12407, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_T=
 I_PCI1250, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 27242, 12407, 6333, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;27252, 12407, =
 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1220, <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 27250, 12407, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27260, 12407, 6333, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 IT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1221, <o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27258, 12407, =
 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 27268, 12407, 6333, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 TI, PCI_PRODUCT_TI_PCI1210, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27266, 12407, 6333, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 IT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 27276, 12407, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI=
 _PCI1450, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 27274, 12407, 6333, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27284, 12407, 6=
 333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1225, <o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;=
 &nbsp;27282, 12407, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27292, 12407, 6333, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 IT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1251, <o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27290, 12407, =
 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 27300, 12407, 6333, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 TI, PCI_PRODUCT_TI_PCI1211, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27298, 12407, 6333, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 IT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 27308, 12407, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI=
 _PCI1251B, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 27306, 12407, 6333, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27316, 12407, =
 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI2030, <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 27315, 8055, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27325, 8055, 6333, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI2050, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27323, 8055, 633=
 3, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 27333, 8055, 6333, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, P=
 CI_PRODUCT_TI_PCI4450YENTA, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27015, 12407, 6333, 5926, 14406, =
 14411, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27025, 12407, 6333, 5926, 14406, 14411, =
 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI4410YENTA=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 27023, 12407, 6333, 5926, 14406, 14411, 6729, 6225, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 27033, 12407, 6333, 5926, 14406, 14411, 6729, 6225, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DI=
 T style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI4451YENTA, <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27093, 124=
 07, 6333, 5926, 14406, 14411, 6729, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27103, 12407, 63=
 33, 5926, 14406, 14411, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI=
 _PRODUCT_TI_PCI4510YENTA, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27101, 12407, 6333, 5926, 14406, 1=
 4411, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27111, 12407, 6333, 5926, 14406, 14411, 6=
 729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI4520YENTA,=
  <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 27109, 12407, 6333, 5926, 14406, 14411, 6729, 6225, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; 27119, 12407, 6333, 5926, 14406, 14411, 6729, 6225, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI7510YENTA, <o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27331, 1240=
 7, 6333, 5926, 14406, 14411, 6729, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27341, 12407, 63=
 33, 5926, 14406, 14411, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI=
 _PRODUCT_TI_PCI7610YENTA, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27339, 12407, 6333, 5926, 14406, 1=
 4411, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27349, 12407, 6333, 5926, 14406, 14411, 6=
 729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI7410YENTA,=
  <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 27347, 12407, 6333, 5926, 14406, 14411, 6729, 6225, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; 27357, 12407, 6333, 5926, 14406, 14411, 6729, 6225, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI7610SM, <o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27339, 12407, =
 6333, 27173, 10641, 27355, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27349, 12407, 6333, 27183, 10641=
 , 27365, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI7410SD, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 27361, 12407, 6333, 27372, 27355, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27371, 12407, 6=
 333, 27382, 27365, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI74=
 10MS, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 27361, 12407, 6333, 27380, 20699, 27355, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DI=
 T style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 27371, 12407, 6333, 27390, 20709, 27365, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 TI, PCI_PRODUCT_TI_PCI1410, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27388, 12407, 6333, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 IT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 27398, 12407, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI=
 _PCI1420, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 27396, 12407, 6333, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27406, 12407, 6=
 333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1451, <o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 27404, 12407, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27414, 12407, 6333, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 IT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1421, <o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27412, 12407, =
 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 27422, 12407, 6333, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 TI, PCI_PRODUCT_TI_PCI1620, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27420, 12407, 6333, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 IT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 27430, 12407, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI=
 _PCI1520, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 27428, 12407, 6333, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27438, 12407, 6=
 333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1510, <o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 27436, 12407, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27446, 12407, 6333, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 IT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI1530, <o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27444, 12407, =
 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 27454, 12407, 6333, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 TI, PCI_PRODUCT_TI_PCI1515, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27452, 12407, 6333, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 IT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 27462, 12407, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI=
 _PCI2040, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 27460, 27468, 6333, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27470, 27478, 6=
 333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TI, PCI_PRODUCT_TI_PCI7420YENTA, <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 27476, 27484, 6333, 5926, 14406, 14411, 6729, 6225, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DI=
 T style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 27486, 27494, 6333, 5926, 14406, 14411, 6729, 6225, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI010L, <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27496, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; 27506, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TITAN, PCI_PRODUCT_TITA=
 N_VSCOM_PCI100L, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27505, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27515, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DI=
 T style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI110L, <o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 275=
 14, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 27524, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier Ne=
 w"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TITAN, PCI_PRODU=
 CT_TITAN_VSCOM_PCI200L, <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27523, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27533, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI210L, <o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 27532, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; 27542, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TITAN, =
 PCI_PRODUCT_TITAN_VSCOM_PCI200LI, <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27541, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_=
 VENDOR_MOLEX, PCI_PRODUCT_MOLEX_VSCOM_PCI400L, <o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-=
 family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;2755=
 1, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; PCI_VENDOR_MOLEX, PCI_PRODUCT_MOLEX_VSCOM_PCI400L, <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 27561, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VS=
 COM_PCI800L, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 27560, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27570, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nb=
 sp;PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI011H, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27569=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 27579, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TITAN, PCI_PRODUCT=
 _TITAN_VSCOM_PCIx10H, <o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27578, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27588, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp;&nbsp;PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI100H, <o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DI=
 T style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 27587, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 27597, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TITAN, PCI_=
 PRODUCT_TITAN_VSCOM_PCI800H, <o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27596, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27606, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI800H_1, <o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 27605, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27615, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI200H, <o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27616, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DI=
 T style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 27626, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI=
 010HV2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 27625, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27635, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI200HV2, <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27636, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 27646, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TOSHIBA, PCI_PRODUCT_=
 TOSHIBA_R4X00, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; 27647, 6621, 6333, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27657, 6621=
 , 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TOSHIBA, PCI_PRODUCT_TOSHIBA_TC3585=
 6F, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 27653, 6895, 27662, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27663, 6895, 27672, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_PORTEGE, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 27673, 12772, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27683, 12772, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_PICCOLO, <o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27681, 63=
 96, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 27691, 6396, 6225, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-=
 family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDO=
 R_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_PICCOLO2, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27681, 6181, 639=
 6, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 27691, 6181, 6396, 6225, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_=
 VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_PICCOLO3, <o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27681, 6192, =
 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; 27691, 6192, 6396, 6225, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_PICCOLO5, <o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27681, 13=
 812, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27691, 13812, 6396, 6225, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_HOST, <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D=
 'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;6729, 20041, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIB=
 A2_ISA, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DES style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;6607, 6333, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-f=
 amily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR=
 _TOSHIBA2, PCI_PRODUCT_TOSHIBA2_ToPIC95, <o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27689, 12407, 6333, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 27699, 12407, 6333, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TOSHIBA=
 2, PCI_PRODUCT_TOSHIBA2_ToPIC95B, <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27697, 12407, 6333, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 27707, 12407, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier =
 New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TOSHIBA2, PCI_=
 PRODUCT_TOSHIBA2_ToPIC97, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27706, 12407, 6333, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DE=
 S style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 27716, 12407, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TOSHIBA2, PCI_PRODUCT=
 _TOSHIBA2_SANREMO, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27714, 27723, 6729, 6333, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 27724, 27733, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New=
 "'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TOSHIBA2, PCI_PRO=
 DUCT_TOSHIBA2_SMCARD, <o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>&nb=
 sp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;12813, 1935, 6225, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_SDCARD, <o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 27188, 240, 10641, 6225, 27732, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27198, 240, 10641, 6225, 27=
 742, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_ToPIC10=
 0, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 27739, 12407, 6333, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27749, 12407, 6333, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_OBOE, <o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 2439, 27748, 27757, 27762, 0,<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2439, 27758, 27767, 27772,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TOSHIBA2, PCI_PRODUCT_TOSHIBA2_DONAUOBOE, =
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 2439, 27748, 27757, 27764, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2439, 27758, 277=
 67, 27774, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TRANSMETA, PCI_PRODUCT_TRANSMETA=
 _TM8000NB, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 27767, 692, 7844, 6333, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27777, 692=
 , 7844, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TRANSMETA, PCI_PRODUCT_TRANSM=
 ETA_NORTHBRIDGE, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>&nbsp;&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;18522, 7844, 6333, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;PCI_VENDOR_TRANSMETA, PCI_PRODUCT_TRANSMETA_LONGRUN, <o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27=
 774, 7844, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27784, 7844, 6333, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_TRANSMETA, PCI_PRODUCT_TRANSMETA_SDRAM, <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27782, 622=
 5, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 27792, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TRANSMETA, =
 PCI_PRODUCT_TRANSMETA_BIOS_SCRATCH, <o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27788, 20424, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 27798, 20424, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TRIDENT, PCI_PRODUCT_TR=
 IDENT_4DWAVE_DX, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27793, 27800, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27803, 27810, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TRIDENT, PCI_PRODUCT_TRIDENT_4DWAVE_NX, <o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 27793, 27803, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27803, 27813, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;PCI_VENDOR_TRIDENT, PCI_PRODUCT_TRIDENT_CYBERBLADE_I7, <o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27806=
 , 27817, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 27816, 27827, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TRID=
 ENT, PCI_PRODUCT_TRIDENT_TGUI_9320, <o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27820, 27825, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 27830, 27835, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TRIDENT, PCI_PRODUCT_TR=
 IDENT_TGUI_9350, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27820, 27830, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27830, 27840, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TRIDENT, PCI_PRODUCT_TRIDENT_TGUI_9360, <o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 27820, 27835, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27830, 27845, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;PCI_VENDOR_TRIDENT, PCI_PRODUCT_TRIDENT_CYBER_9397, <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27840, 2=
 7846, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 27850, 27856, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TRIDENT=
 , PCI_PRODUCT_TRIDENT_CYBER_9397DVD, <o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27840, 27851, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 27850, 27861, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TRIDENT, PCI_PRODUCT_TR=
 IDENT_CYBER_9525, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27840, 27859, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27850, 27869,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TRIDENT, PCI_PRODUCT_TRIDENT_TGUI_9420, <o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 27820, 27864, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27830, 27874, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;PCI_VENDOR_TRIDENT, PCI_PRODUCT_TRIDENT_TGUI_9440, <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27820, 2=
 7869, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 27830, 27879, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TRIDENT=
 , PCI_PRODUCT_TRIDENT_TGUI_9660, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27820, 27874, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DE=
 S style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 27830, 27884, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TRIDENT, PCI_PRODUCT_TRIDEN=
 T_TGUI_9680, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 27820, 27879, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27830, 27889, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TRIDENT, PCI_PRODUCT_TRIDENT_TGUI_9682, <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 27820, 27884, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27830, 27894, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;PCI_VENDOR_TRIDENT, PCI_PRODUCT_TRIDENT_CYBERBLADE, <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27806, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 27816, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TRIONES, PCI_PRODUCT_=
 TRIONES_HPT343, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 27889, 6396, 6225, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27899, 639=
 6, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TRIONES, PCI_PRODUCT_TRIONES_HPT36=
 6, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 27900, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27910, 6396, 6225, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;PCI_VENDOR_TRIONES, PCI_PRODUCT_TRIONES_HPT372A, <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 27915, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27925, 6396, 6225, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;PCI_VENDOR_TRIONES, PCI_PRODUCT_TRIONES_HPT302, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27923=
 , 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 27933, 6396, 6225, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_V=
 ENDOR_TRIONES, PCI_PRODUCT_TRIONES_HPT371, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27930, 6396, 622=
 5, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 27940, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TRION=
 ES, PCI_PRODUCT_TRIONES_HPT374, <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27937, 6396, 6225, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 27947, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TRIONES, PCI_PRODU=
 CT_TRIONES_HPT372N, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27944, 6396, 6225, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27954=
 , 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TRIONES, PCI_PRODUCT_TRIONES_=
 ROCKETRAID_2310, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27952, 27963, 6220, 27968, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 7962, 27973, 6220, 27978, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New=
 "'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TRIONES, PCI_PROD=
 UCT_TRIONES_ROCKETRAID_2720, <o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27952, 27973, 6220, 27968, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 27962, 27983, 6220, 27978, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TRITE=
 CH, PCI_PRODUCT_TRITECH_TR25202, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 27978, 27988, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DE=
 S style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 27988, 27998, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TSENG, PCI_PRODUCT_TSENG_ET=
 4000_W32P_A, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 27996, 8612, 9983, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28006, 8612, =
 9983, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DES style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TSENG, PCI_PRODUCT_TSENG_ET4000_W32P_=
 B, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DNO-BOK style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 27996, 8612, 5124, 0,<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DNO-BOK style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28006, 8612, 51=
 24, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DNO-BOK style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TSENG, PCI_PRODUCT_TSENG_ET4000_W32=
 P_C, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DNO-BOK style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 27996, 8612, 9989, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DNO-BOK style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28006, 8612,=
  9989, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DNO-BOK style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TSENG, PCI_PRODUCT_TSENG_ET4000_=
 W32P_D, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DNO-BOK style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 27996, 8612, 3163, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DNO-BOK style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28006, 861=
 2, 3163, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DNO-BOK style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_TSENG, PCI_PRODUCT_TSENG_ET600=
 0, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DNO-BOK style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 28007, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DNO-BOK style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28017, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DNO-BOK =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_TURTLE_BEACH, PCI_PRODUCT_TURTLE_BEACH_SANTA_CRUZ, <o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DNO-BOK style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;</span><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>2564, 2570, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_UMC, PCI_PRODUCT_UMC_=
 UM82C881, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 28014, 28023, 9921, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28024, 28=
 033, 9921, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_UMC, PCI_PRODUCT_UMC_UM82C886=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 28027, 6607, 6333, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28037, 6607, 6333,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_UMC, PCI_PRODUCT_UMC_UM8673F, <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 28036, 8131, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28046, 8131, 6225, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;PCI_VENDOR_UMC, PCI_PRODUCT_UMC_UM8881, <o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 280=
 44, 16108, 28023, 615, 9921, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28054, 16108, 28033, 615, 9=
 921, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_UMC, PCI_PRODUCT_UMC_UM82C891, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; 28051, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 +&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28061, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_V=
 ENDOR_UMC, PCI_PRODUCT_UMC_UM886A, <o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28060, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 28070, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_UMC, PCI_PRODUCT_UMC_UM8886BF,=
  <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 28067, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28077, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_UMC, PCI_PRODUCT_UMC_UM8710, <o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28076, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 28086, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_UMC, PCI_PRODUCT_UMC_UM8=
 886, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 28083, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28093, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&n=
 bsp;PCI_VENDOR_UMC, PCI_PRODUCT_UMC_UM8881F, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28090, 28098,=
  6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 28100, 28108, 6333, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_V=
 ENDOR_UMC, PCI_PRODUCT_UMC_UM8886F, <o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28107, 6607, 6333, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 28117, 6607, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_UMC, =
 PCI_PRODUCT_UMC_UM8886A, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28115, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28125=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_UMC, PCI_PRODUCT_UMC_UM8891A, <o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 28123, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28133, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_UMC, PCI_PRODUCT_UMC_UM9017F, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28131, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  28141, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_UMC, PCI_PRODUCT_UMC_UM8886N, <o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 28139, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28149, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI=
 _VENDOR_UMC, PCI_PRODUCT_UMC_UM8891N, <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28147, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 28157, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_ULSI, PCI_PRODUCT_ULSI_US201, <o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; 28155, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28165, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_USR, =
 PCI_PRODUCT_USR_3C2884A, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 13148, 28161, 28167, 615, 5534, 28=
 176, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 13148, 28171, 28177, 615, 5534, 28186, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;PCI_VENDOR_USR, PCI_PRODUCT_USR_3CP5609, <o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28187, 615, 26=
 059, 5534, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 28197, 615, 26069, 5534, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_USR2, PCI_PRODUCT_USR2_USR997902, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28195, 5479, 548=
 7, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 28205, 5479, 5487, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_USR2,=
  PCI_PRODUCT_USR2_2415, <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>&=
 nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;4739, 14423, 5679, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp;&nbsp;PCI_VENDOR_V3, PCI_PRODUCT_V3_V292PBCPSC, <o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28205=
 , 28216, 28222, 22781, 6785, 615, 6333, 0,<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28215, 28226, 28232=
 , 22791, 6785, 615, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_V3, PCI_PRODUCT_V=
 3_V292PBC, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 28228, 28236, 6621, 6333, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28238, 2=
 8246, 6621, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_V3, PCI_PRODUCT_V3_V960PB=
 C, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 28245, 17034, 6621, 6333, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28255, 17034, 66=
 21, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_V3, PCI_PRODUCT_V3_V96DPC, <o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; 28253, 17034, 28260, 6621, 6333, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28263, 17034, 28=
 270, 6621, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATE=
 CH_VT6305, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 28267, 14406, 14411, 6729, 6225, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 8277, 14406, 14411, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PC=
 I_PRODUCT_VIATECH_K8M800_0, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28274, 6729, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2828=
 4, 6729, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_K8T89=
 0_0, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 28281, 6729, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28291, 6729, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DI=
 T style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_KT880, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28288=
 , 2544, 6785, 615, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28298, 2544, 6785, 615, 6333, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_K8HTB_0, <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 28294, 6729, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28304, 6729, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8363_HB, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28300, 28307, 28=
 315, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28310, 28317, 28325, 6729, 6333, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT3351_HB_0351, <o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; 28322, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28332, 6729, 6333, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DI=
 T style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8371_HB, <o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 283=
 29, 28307, 28336, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28339, 28317, 28346, 6729, 63=
 33, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VX900_HB, =
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 28343, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28353, 6729, 6333, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8501_MVP4, <o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 28349, 28307, 28356, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28359, 28317, 28366,=
  6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_V=
 T82C505, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 28362, 28371, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28372, 28381, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C561, <o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DI=
 T style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 28379, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 28389, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PC=
 I_PRODUCT_VIATECH_VT82C586A_IDE, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28388, 6396, 6225, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; 28398, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PROD=
 UCT_VIATECH_VT82C576, <o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28398, 28407, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28408, 28=
 417, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_CX700_IDE=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 28410, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28420, 6396, 6225, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C580VP, <o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; 28416, 28307, 28425, 6621, 6333, 0,<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28426, 28317, 28435=
 , 6621, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_=
 VT82C586_ISA, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; 28429, 6607, 6333, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28439, 6607,=
  6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8237A=
 _SATA, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 28438, 692, 8249, 6225, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28448, 692, 82=
 49, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82=
 C595, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 28446, 28307, 28455, 6621, 6333, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28456=
 , 28317, 28465, 6621, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PR=
 ODUCT_VIATECH_VT82C596A, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28460, 6607, 6333, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  28470, 6607, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VI=
 ATECH_VT82C597, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 28470, 28307, 28479, 6621, 6333, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 28480, 28317, 28489, 6621, 6333, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIAT=
 ECH, PCI_PRODUCT_VIATECH_VT82C598PCI, <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28484, 28307, 28493, 66=
 21, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 28494, 28317, 28503, 6621, 6333, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8605PCI, <o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28499=
 , 28307, 28506, 28515, 6621, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28509, 28317, 28516, 285=
 25, 6621, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATEC=
 H_VT82C686A_ISA, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28520, 6607, 6333, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28530, 66=
 07, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82=
 C691, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 28530, 28307, 28539, 6621, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28540, 28317=
 , 28549, 6621, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH=
 _VT82C693, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 28544, 28307, 7023, 28553, 6621, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 8554, 28317, 7023, 28563, 6621, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PC=
 I_PRODUCT_VIATECH_VT86C926, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28559, 28568, 28575, 6225, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 28569, 28578, 28585, 6225, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATEC=
 H, PCI_PRODUCT_VIATECH_VT82C570M, <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28588, 28598, 6621, 6333, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 28598, 28608, 6621, 6333, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 VIATECH, PCI_PRODUCT_VIATECH_VT82C570MV, <o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28588, 28598, 6607, =
 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 28598, 28608, 6607, 6333, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_VIATECH, PCI_PRODUCT_VIATECH_KT880_1, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28288, 2544, 678=
 5, 615, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 28298, 2544, 6785, 615, 6333, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT3351_HB_1351, <o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  28322, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28332, 6729, 6333, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C586_IDE, <o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28429=
 , 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 28439, 6396, 6225, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_V=
 ENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C595_2, <o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28446, 28307, =
 28455, 6621, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28456, 28317, 28465, 6621, 6333, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_KT880_2, <o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DI=
 T style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 28288, 2544, 6785, 615, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28298, 2544, 6785, 615, 633=
 3, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT3351_HB_2=
 351, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 28322, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28332, 6729, 6333, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8251_PPB_287A,=
  <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 28607, 8055, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28617, 8055, 6333, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8251_PCIE1, <o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; 28607, 18408, 7821, 28614, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28617, 18408, 7821, 2862=
 4, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8251_PCIE=
 2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 28607, 18408, 7821, 28620, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28617, 18408, 7=
 821, 28630, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT=
 8251_VLINK, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 28607, 6935, 28626, 6225, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28617=
 , 6935, 28636, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_V=
 IATECH_VT83C572, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28632, 6721, 6225, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28642, 67=
 21, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82=
 C586_PWR, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 28429, 3749, 6848, 6225, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28439, 374=
 9, 6848, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH=
 _VT3043, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 28641, 28648, 5589, 5487, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28651, 286=
 58, 5589, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATEC=
 H_VT6306, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 28656, 14406, 14411, 6729, 6225, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28=
 666, 14406, 14411, 6729, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courie=
 r New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI=
 _PRODUCT_VIATECH_VT6105M, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28663, 28671, 26603, 5589, 5487, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 28673, 28681, 26613, 5589, 5487, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C686A_SMB, <o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28520, 8226,=
  6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 28530, 8226, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 VIATECH, PCI_PRODUCT_VIATECH_VT82C686A_AC97, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28520, 18670, 68=
 24, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 28530, 18670, 6824, 6225, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8233_AC97, <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28678, 1=
 8670, 6824, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28688, 18670, 6824, 6225, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT6102, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28692=
 , 28671, 20961, 5589, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28702, 28681, 20971, 5589, 5487=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C686A_MC=
 97, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 28520, 28699, 5534, 6225, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;28530, 28709, 5=
 534, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8=
 233, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 28705, 6607, 6333, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28715, 6607, 6333, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8366, <o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 28712, 28307, 28719, 28726, 6333, 0,<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28722, 28317, 28729=
 , 28736, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH=
 _VT8653, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 28734, 28307, 7023, 28741, 28726, 6333, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 28744, 28317, 7023, 28751, 28736, 6333, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_VIATECH, PCI_PRODUCT_VIATECH_VT8237_EHCI, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28747, 8024, 672=
 1, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 28757, 8024, 6721, 6225, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_=
 VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT6105, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28754, 28671, 26=
 603, 5589, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28764, 28681, 26613, 5589, 5487, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT612X, <o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 8761, 28768, 5502, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28771, 28778, 5502, 5487, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8623_VGA, <o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 28779, 28307, 28786, 7967, 6225, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28789, 28317, 28796,=
  7967, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_V=
 T8623, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 28779, 28307, 28786, 28726, 6333, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2878=
 9, 28317, 28796, 28736, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_=
 PRODUCT_VIATECH_VT8233A, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28794, 6607, 6333, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  28804, 6607, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VI=
 ATECH_VT8237_SATA, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28747, 692, 8249, 6225, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28=
 757, 692, 8249, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_=
 VIATECH_VT6410_RAID, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28802, 23075, 6220, 6225, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DI=
 T style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 28812, 23085, 6220, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PR=
 ODUCT_VIATECH_K8HTB, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28294, 6729, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28304, 6729=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT6421_RAID,=
  <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 28809, 10492, 6220, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28819, 10492, 62=
 20, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT33=
 14_IG, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 28816, 28823, 28829, 692, 1716, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28826=
 , 28833, 28839, 692, 1716, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier Ne=
 w"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRO=
 DUCT_VIATECH_VT8237R_SATA, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28839, 692, 8249, 6225, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 28849, 692, 8249, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_=
 PRODUCT_VIATECH_VT3351_HB_3351, <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28322, 6729, 6333, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 28332, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODU=
 CT_VIATECH_KT880_3, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28288, 2544, 6785, 615, 6333, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 28298, 2544, 6785, 615, 6333, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH=
 , PCI_PRODUCT_VIATECH_VT8235, <o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28847, 28307, 28854, 6607, 6333=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 28857, 28317, 28864, 6607, 6333, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D=
 'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI=
 _VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8377, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28861, 28868, 28=
 875, 2544, 6785, 615, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28871, 28878, 28885, 2544, 6785=
 , 615, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_V=
 T8378, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 28881, 28868, 28888, 2544, 6785, 615, 6333, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 28891, 28878, 28898, 2544, 6785, 615, 6333, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_=
 VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8237, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28747, 23637, 63=
 33, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 28757, 23647, 6333, 0,<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-famil=
 y:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIA=
 TECH, PCI_PRODUCT_VIATECH_VT8251, <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28607, 23637, 6333, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 28617, 23647, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier =
 New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_P=
 RODUCT_VIATECH_VT8237A_HDA, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28894, 19137, 19142, 6824, 6225, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 28904, 19137, 19142, 6824, 6225, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_V=
 ENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8237A_ISA, <o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28909, 6607, =
 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 28919, 6607, 6333, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 VIATECH, PCI_PRODUCT_VIATECH_VT8237S_ISA, <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28927, 6607, 6333, =
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; 28937, 6607, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH,=
  PCI_PRODUCT_VIATECH_VT8237A_PPB, <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28438, 8055, 6333, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; 28448, 8055, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier Ne=
 w"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRO=
 DUCT_VIATECH_VT8237A_HB, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28438, 6729, 6333, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  28448, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VI=
 ATECH_KT880_4, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; 28288, 2544, 6785, 615, 6333, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 28298, 2544, 6785, 615, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_=
 PRODUCT_VIATECH_VT3351_HB_4351, <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28322, 6729, 6333, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 28332, 6729, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODU=
 CT_VIATECH_CX700M2_IDE, <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28935, 6396, 6225, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28=
 945, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATE=
 CH_VT8237A_SATA_2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28438, 692, 8249, 6225, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28=
 448, 692, 8249, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_=
 VIATECH_VT3351_IOAPIC, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28322, 8209, 19785, 17901, 6225, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 28332, 8209, 19785, 17901, 6225, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-f=
 amily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR=
 _VIATECH, PCI_PRODUCT_VIATECH_VT8237S_SATA, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28927, 692, 8249=
 , 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 28937, 692, 8249, 6225, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_VIATECH, PCI_PRODUCT_VIATECH_VT86C100A, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28949, 28959, 55=
 89, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 28959, 28969, 5589, 5487, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8251_SATA, <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28607, 6=
 92, 8249, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28617, 692, 8249, 6225, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8378_IG, <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28881, 2=
 8888, 28829, 692, 1716, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28891, 28898, 28839, 692, 1716, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_KT880_5, <o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; 28288, 2544, 6785, 615, 6333, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28298, 2544, 6785, 615=
 , 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT3351=
 _HB_7351, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 28322, 6729, 6333, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28332, 6729, 633=
 3, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8231, <o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 28970, 6607, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28980, 6607, 6333, 0,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8231_PWR, <o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DI=
 T style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 28970, 3749, 6848, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28980, 3749, 6848, 6225, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8363_PPB, <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 28300, 28307, 28315, 615, 6785, 8068, 6333, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28310, 28=
 317, 28325, 615, 6785, 8068, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH,=
  PCI_PRODUCT_VIATECH_CX700, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28410, 23637, 6333, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 IT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 28420, 23647, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODU=
 CT_VIATECH_VX800, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28977, 23637, 6333, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28987=
 , 23647, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH=
 _VT8371_PPB, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 28329, 28307, 28336, 8055, 6333, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  28339, 28317, 28346, 8055, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, =
 PCI_PRODUCT_VIATECH_VT8501AGP, <o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28349, 28307, 28356, 28989, 63=
 33, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 28359, 28317, 28366, 28999, 6333, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C597AGP, <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28470, 2=
 8307, 28479, 28989, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28480, 28317, 28489, 28999, 6333,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT82C598AGP, =
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 28484, 28307, 28493, 28989, 6333, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28494, 2831=
 7, 28503, 28999, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODU=
 CT_VIATECH_VT8605AGP, <o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28499, 28307, 28506, 28515, 18871, 6333=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 28509, 28317, 28516, 28525, 18871, 6333, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VX900_IDE, <o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28343=
 , 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 28353, 6396, 6225, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_V=
 ENDOR_VIATECH, PCI_PRODUCT_VIATECH_K8T890_PPB_A238, <o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28281, 80=
 55, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 28291, 8055, 6333, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-=
 family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDO=
 R_VIATECH, PCI_PRODUCT_VIATECH_VT8633AGP, <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28997, 28307, 7023,=
  29004, 28989, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29007, 28317, 7023, 29014, 28999, 6333=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8366AGP, <=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; 28712, 28307, 28719, 28989, 6333, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28722, 28317=
 , 28729, 28999, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_=
 VIATECH_VT8377AGP, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28861, 28989, 6333, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28871=
 , 28999, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH=
 _K8HTB_AGP, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 28294, 8068, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28304, 8068, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8377CEAGP, <o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 29009, 28989, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29019, 28999, 6333, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 IT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT3237_PPB, <o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 8281, 7844, 2182, 28747, 8007, 8055, 6333, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28291, 7844, 218=
 2, 28757, 8007, 8055, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PR=
 ODUCT_VIATECH_K8T890_PPB_C238, <o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28281, 8055, 6333, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 28291, 8055, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODU=
 CT_VIATECH_K8T890_PPB_D238, <o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28281, 8055, 6333, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DI=
 T style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 28291, 8055, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_V=
 IATECH_K8T890_PPB_E238, <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28281, 8055, 6333, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28=
 291, 8055, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATE=
 CH_K8T890_PPB_F238, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28281, 8055, 6333, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 28291=
 , 8055, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VIRTUALBOX, PCI_PRODUCT_VIRTU=
 ALBOX_GRAPHICS, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>&nbsp;&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;1716, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_VIRTUALBOX, PCI_PRODUCT_VIRTUALBOX_GUEST, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29018, 29024, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 29028, 29034, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VORTEX, PCI_PRO=
 DUCT_VORTEX_GDT_60x0, <o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29032, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29042, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp;&nbsp;PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6000B, <o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 29050, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; 29060, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VORTEX, PCI_P=
 RODUCT_VORTEX_GDT_6x10, <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29064, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29074, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x20, <o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  29077, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 29087, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courie=
 r New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VORTEX, PCI_=
 PRODUCT_VORTEX_GDT_6530, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29090, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29100, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6550, <o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 29098, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; 29108, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VORTEX,=
  PCI_PRODUCT_VORTEX_GDT_6x17, <o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29106, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29116, 0=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x27, <o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; 29119, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 29129, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VORTEX=
 , PCI_PRODUCT_VORTEX_GDT_6537, <o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29132, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29142=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6557, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 29140, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29150, 0,<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-famil=
 y:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VOR=
 TEX, PCI_PRODUCT_VORTEX_GDT_6x15, <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29157, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2916=
 7, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x25, <o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 29170, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29180, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 VORTEX, PCI_PRODUCT_VORTEX_GDT_6535, <o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29183, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2=
 9193, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6555, =
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 29191, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29201, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-f=
 amily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR=
 _VORTEX, PCI_PRODUCT_VORTEX_GDT_6x17RP, <o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29208, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DI=
 T style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 29218, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x2=
 7RP, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 29221, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29231, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_V=
 ENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6537RP, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29234, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6557RP, <o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT styl=
 e=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;29244, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x11=
 RP, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6557RP, <o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DIT style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;29254, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VOR=
 TEX_GDT_6x11RP, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 29264, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VORTEX=
 , PCI_PRODUCT_VORTEX_GDT_6x21RP, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29267, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29277=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x17RD, <o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 29280, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29290, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 VORTEX, PCI_PRODUCT_VORTEX_GDT_6x27RD, <o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29293, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  29303, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6537=
 RD, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 29306, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VOR=
 TEX_GDT_6557RD, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>&nbsp;&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;29316, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_V=
 ORTEX, PCI_PRODUCT_VORTEX_GDT_6x11RD, <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_=
 PRODUCT_VORTEX_GDT_6557RD, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;29326, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; P=
 CI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x11RD, <o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29336, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x21RD, <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 29339, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; 29349, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VORTEX,=
  PCI_PRODUCT_VORTEX_GDT_6x18RD, <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29352, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29362=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x28RD, <o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 29366, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29376, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 VORTEX, PCI_PRODUCT_VORTEX_GDT_6x38RD, <o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29380, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  29390, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x58=
 RD, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 29393, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29403, 0,<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VE=
 NDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x17RP2, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29406, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; 29416, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GD=
 T_6x27RP2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 29420, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29430, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6537RP2, <o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29434, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 29444, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VORTEX, PCI_PRODUCT_VO=
 RTEX_GDT_6x11RP2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29445, 0,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29455, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 IT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x21RP2, <o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29=
 459, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 29469, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VORTEX, PCI_PRO=
 DUCT_VORTEX_GDT_6x13RS, <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29473, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VOR=
 TEX, PCI_PRODUCT_VORTEX_GDT_6x23RS, <o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Cou=
 rier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;29483, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6518RS, <o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI=
 _VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x23RS, <o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-=
 family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;2949=
 3, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x28RS, <o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6518RS, <o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT sty=
 le=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;29503, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x3=
 8RS, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x28RS, <o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DIT style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp;&nbsp;29513, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VOR=
 TEX_GDT_6x58RS, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x3=
 8RS, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DIT style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;29523, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_=
 PRODUCT_VORTEX_GDT_6x33RS, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VOR=
 TEX_GDT_6x58RS, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>&nbsp;&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;29533, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_V=
 ORTEX, PCI_PRODUCT_VORTEX_GDT_6x43RS, <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_=
 PRODUCT_VORTEX_GDT_6x33RS, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;29543, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; P=
 CI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x53RS, <o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_V=
 ORTEX, PCI_PRODUCT_VORTEX_GDT_6x43RS, <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"C=
 ourier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;29553, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x63RS, <o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; P=
 CI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x53RS, <o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fon=
 t-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;29=
 563, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_7x13RN, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x63RS, <o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT s=
 tyle=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp;&nbsp;29573, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_7=
 x23RN, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_7x13RN, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DIT style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;29583, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_V=
 ORTEX_GDT_7x18RN, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_7=
 x23RN, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DIT style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;29593, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PC=
 I_PRODUCT_VORTEX_GDT_7x18RN, <o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29603, 0,<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_=
 VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_7x28RN, <o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29607, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; 29617, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_G=
 DT_7x38RN, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 29621, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29631, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_7x58RN, <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29634, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; 29644, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VORTEX, PCI_PRODUCT_VOR=
 TEX_GDT_7x43RN, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 29647, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29657, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_7x53RN, <o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29660=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_7x63RN, <o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DIT style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;29670, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VOR=
 TEX_GDT_4x13RZ, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_7x6=
 3RN, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DIT style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;29680, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_=
 PRODUCT_VORTEX_GDT_4x23RZ, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VOR=
 TEX_GDT_4x13RZ, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>&nbsp;&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;29690, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_V=
 ORTEX, PCI_PRODUCT_VORTEX_GDT_8x13RZ, <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_=
 PRODUCT_VORTEX_GDT_4x23RZ, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;29700, 0,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; P=
 CI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_8x23RZ, <o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_V=
 ORTEX, PCI_PRODUCT_VORTEX_GDT_8x13RZ, <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"C=
 ourier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;29710, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_8x33RZ, <o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; P=
 CI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_8x23RZ, <o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fon=
 t-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;29=
 720, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_8x43RZ, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_8x33RZ, <o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT s=
 tyle=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp;&nbsp;29730, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_8=
 x53RZ, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_8x43RZ, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DIT style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;29740, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_V=
 ORTEX_GDT_8x63RZ, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_8=
 x53RZ, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DIT style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;29750, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PC=
 I_PRODUCT_VORTEX_GDT_6x19RD, <o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_VORTEX, PCI_PRODUCT_V=
 ORTEX_GDT_8x63RZ, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>&nbsp;&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;29760, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR=
 _VORTEX, PCI_PRODUCT_VORTEX_GDT_6x19RD, <o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29770, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DI=
 T style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_6x29RD, <o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 2977=
 3, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 29783, 0,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VORTEX, PCI_PRODU=
 CT_VORTEX_GDT_7x19RN, <o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29786, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29796, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp;&nbsp;PCI_VENDOR_VORTEX, PCI_PRODUCT_VORTEX_GDT_7x29RN, <o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  29799, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 29809, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courie=
 r New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VORTEX, PCI_=
 PRODUCT_VORTEX_GDT_ICP, <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29812, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29822, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;PCI_VENDOR_VLSI, PCI_PRODUCT_VLSI_82C592, <o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29816=
 , 2544, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; 29826, 2544, 6333, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_V=
 ENDOR_VLSI, PCI_PRODUCT_VLSI_82C593, <o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29823, 16180, 6333, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; 29833, 16180, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VLSI, PCI_P=
 RODUCT_VLSI_82C594, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29830, 29837, 6, 6225, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29=
 840, 29847, 6, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VLSI, PCI_PRODUCT_VLSI=
 _82C596597, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 29845, 29837, 16180, 6333, 0,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29855=
 , 29847, 16180, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VLSI, PCI_PRODUCT_VLS=
 I_82C541, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 29856, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29866, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_VLSI, PCI_PRODUCT_VLSI_82C543, <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29863, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 29873, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VLSI, PCI_PRODUCT_VLSI_82C532,=
  <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 29870, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29880, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-=
 family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDO=
 R_VLSI, PCI_PRODUCT_VLSI_82C534, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29877, 0,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29887=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VLSI, PCI_PRODUCT_VLSI_82C535, <o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 29884, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; 29894, 0,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VLSI, P=
 CI_PRODUCT_VLSI_82C147, <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29891, 0,<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29901, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;PCI_VENDOR_VLSI, PCI_PRODUCT_VLSI_82C975, <o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29898=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 29908, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VLSI, PCI_PRODUCT_=
 VLSI_82C925, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; 29905, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29915, 0,<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nb=
 sp;PCI_VENDOR_VMWARE, PCI_PRODUCT_VMWARE_VIRTUAL2, <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 18522, 299=
 12, 7361, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 18522, 29922, 7361, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_VMWARE, PCI_PRODUCT_VMWARE_VIRTUAL, <o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 18522, 29912, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; 18522, 29922, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VMWARE, PCI_PRODUCT_V=
 MWARE_VMXNET, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DIT style=3D'font-family:"Courier New"'>&nbsp;&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;18522, 3888, 0,<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D=
 'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI=
 _VENDOR_VMWARE, PCI_PRODUCT_VMWARE_VMSCSI, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;18522,=
  6440, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VMWARE, PCI_PRODUCT_VMWARE_VMCI, <o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 18522, 29917, 29925, 3027, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 18522, 29927, 29935, =
 3027, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VMWARE, PCI_PRODUCT_VMWARE_VMEM, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 18522, 29939, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 18522, 29949, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;PCI_VENDOR_VMWARE, PCI_PRODUCT_VMWARE_VMEB, <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 18522, 29947, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 18522, 29957, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VMWARE, PCI_PRO=
 DUCT_VMWARE_VMUSB, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>&nbsp;=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;18522, 6721, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;PCI_VENDOR_VMWARE, PCI_PRODUCT_VMWARE_VM1394, <o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font=
 -family:"Courier New"'>@@ -9000,109 +9002,109 @@<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_VMWARE, PCI_PRODUCT_VMWARE_VMXNET3, <o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"=
 Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;18522, 3888,=
  6192, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_VMWARE, PCI_PRODUCT_VMWARE_PVSCSI, <=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; 29955, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29965, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 VMWARE, PCI_PRODUCT_VMWARE_VMI3, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29962, 29966, 29973, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 29972, 29976, 29983, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_WEITEK, PCI_P=
 RODUCT_WEITEK_P9000, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29977, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29987, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp;&nbsp;PCI_VENDOR_WEITEK, PCI_PRODUCT_WEITEK_P9100, <o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29983, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;2=
 9993, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;PCI_VENDOR_WD, PCI_PRODUCT_WD_WD33C193A, <o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 29989, 0,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 PCI_VENDOR_WD, PCI_PRODUCT_WD_WD33C196A, <o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;29999, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_V=
 ENDOR_WD, PCI_PRODUCT_WD_WD33C197A, <o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_WD, PCI_PRODUCT_WD_WD33C=
 196A, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;30009, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;PCI_VENDOR_WD, PCI_PRODUCT_WD_WD7193, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 PCI_VENDOR_WD, PCI_PRODUCT_WD_WD33C197A, <o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;30019, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_V=
 ENDOR_WD, PCI_PRODUCT_WD_WD7193, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30029, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_WD, PCI_P=
 RODUCT_WD_WD7197, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 30026, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30036, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_WD, PCI_PR=
 ODUCT_WD_WD33C296A, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 30033, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_WD, PCI_PRODUCT_WD_WD34C296=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;30043, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; PCI_VENDOR_WD, PCI_PRODUCT_WD_WD34C296, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 30053, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp;&nbsp;PCI_VENDOR_WD, PCI_PRODUCT_WD_90C, <o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30052, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30062=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp;&nbsp;PCI_VENDOR_WINBOND, PCI_PRODUCT_WINBOND_W83769F, <o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30056, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; 30066, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_WINBOND, PCI_PRODUCT_WINBOND_W83C553F_0, <=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; 30064, 6607, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; 30074, 6607, 6333, 0,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_WINBON=
 D, PCI_PRODUCT_WINBOND_W83628F, <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30073, 6607, 6333, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30083, 6607, 6=
 333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;PCI_VENDOR_WINBOND, PCI_PRODUCT_WINBOND_W83C553F_1, <o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 300=
 64, 6396, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; 30074, 6396, 6225, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_WINBOND, P=
 CI_PRODUCT_WINBOND_W89C840F, <o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30081, 5589, 5487, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fam=
 ily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30091, 5589, 5487=
 , 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp;&nbsp;PCI_VENDOR_WINBOND, PCI_PRODUCT_WINBOND_W89C940F, <o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30090, 5=
 487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 30100, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_WINBOND, PCI_PRODUCT_WINBOND=
 _W89C940F_1, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 30090, 5487, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30100, 5487, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_WINB=
 OND, PCI_PRODUCT_WINBOND_W6692, <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30099, 8736, 0,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30109, 8736, 0,<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&n=
 bsp;PCI_VENDOR_WORKBIT, PCI_PRODUCT_WORKBIT_NJSC32BI, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fam=
 ily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20538, 6440, 0,<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; 20548, 6440, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_WORKBIT, PCI_PRODUCT_WORKBIT_NJATA32BI=
 , <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; 20517, 6396, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; 20527, 6396, 0,<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_WORKBIT, PCI_PR=
 ODUCT_WORKBIT_NJSC32UDE, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30105, 6440, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30115, 6440, 0,<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 PCI_VENDOR_WORKBIT, PCI_PRODUCT_WORKBIT_NJSC32BI_KME, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fam=
 ily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20538, 6440, 3012=
 1, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; 20548, 6440, 30131, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_WORKBIT, PCI_PRODUCT_WOR=
 KBIT_NJATA32BI_KME, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 20517, 6396, 30121, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 20527, 6396, 30131, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;PCI_VENDOR_WORKBIT, PCI_PRODUCT_WORKBIT_NJSC32UDE_IODATA, <o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30105=
 , 6440, 30127, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 30115, 6440, 30137, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_WORKBIT, P=
 CI_PRODUCT_WORKBIT_NJSC32UDE_LOGITEC, <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30105, 6440, 30136, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30115=
 , 6440, 30146, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_WORKBIT, PCI_PRODUCT_WORKBIT_NJSC32UDE=
 _LOGITEC2, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 30105, 6440, 30146, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30115, 6440, 30156, 0,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D=
 'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI=
 _VENDOR_WORKBIT, PCI_PRODUCT_WORKBIT_NJSC32UDE_BUFFALO, <o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30105, 6440, 30=
 157, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; 30115, 6440, 30167, 0,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_WORKBIT, PCI_PRODUCT_W=
 ORKBIT_NPATA32_CF32A, <o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; 30167, 30173, 5679, 0,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30177, 30183, 5679, 0,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;PCI_VENDOR_WORKBIT, PCI_PRODUCT_WORKBIT_NPATA32_CF32A_BUFFALO, <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 30167, 30186, 5679, 30157, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30177, 30196, 5679, 30167, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_=
 VENDOR_WORKBIT, PCI_PRODUCT_WORKBIT_NPATA32_KME, <o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30189, 6396, 30121, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; 30199, 6396, 30131, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_XENSOURCE, PCI_PRODUCT_XENSO=
 URCE_XENPLATFORM, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30198, 30202, 2427, 0,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30208=
 , 30212, 2427, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_XGI, PCI_PRODUCT_XGI_VOLARI_=
 Z7, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; 30211, 30218, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30221, 30228, 0,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 IT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;PCI_VENDOR_XGI, PCI_PRODUCT_XGI_VOLARI_Z9M, <o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;30211, 30=
 228, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; 30221, 30238, 0,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_XGI, PCI=
 _PRODUCT_XGI_VOLARI_Z11, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30211, 30232, 0,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 3022=
 1, 30242, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_XGI, PCI_PRODUCT_XGI_VOLARI_V3XT,=
  <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 30211, 30241, 0,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30221, 30251, 0,<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_XGI, PCI_PRODUCT_XGI_VOLARI_XP10, <o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30211, 3025=
 2, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; 30221, 30262, 0,<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_XIRCOM, PC=
 I_PRODUCT_XIRCOM_X3201_3, <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30257, 2439, 5487, 6225, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; 30267, 2439, 5487, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_XIRCOM, PCI=
 _PRODUCT_XIRCOM_X3201_3_21143, <o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30257, 2439, 5487, 6225, 30=
 265, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; 30267, 2439, 5487, 6225, 30275, 0,<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;PCI_VENDOR_XIRCOM, PCI_PRODUCT_XIRCOM_WINGLOBAL, <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 3027=
 3, 5534, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; 30283, 5534, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_XIRCOM, PCI_PRODUCT_XIRCOM_MODEM56, <o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;5704, 553=
 4, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_YAMAHA, PCI_PRODUCT_YAMAHA_YMF724, <o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; 30283, 6824, 0,<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30293, 6824, 0,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp;&nbsp;PCI_VENDOR_YAMAHA, PCI_PRODUCT_YAMAHA_YMF740, <o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 262=
 88, 6824, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; 26298, 6824, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VEND=
 OR_YAMAHA, PCI_PRODUCT_YAMAHA_YMF740C, <o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30287, 30292, 6824,=
  0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; 30297, 30302, 6824, 0,<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 YAMAHA, PCI_PRODUCT_YAMAHA_YMF724F, <o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30299, 30292, 6824, 0,=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; 30309, 30302, 6824, 0,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_YAM=
 AHA, PCI_PRODUCT_YAMAHA_YMF744B, <o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30304, 30308, 6824, 0,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; 30314, 30318, 6824, 0,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_YAMAHA=
 , PCI_PRODUCT_YAMAHA_YMF754, <o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30316, 30320, 6824, 0,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; 30326, 30330, 6824, 0,<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_ZEINET, PC=
 I_PRODUCT_ZEINET_1221, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPL style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30328, 0,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPL style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30338, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPL style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp;&nbsp;PCI_VENDOR_ZIATECH, PCI_PRODUCT_ZIATECH_ZT8905, <o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPL =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 30333, 6333, 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPL style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; 30343, 6333, 0,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPL style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_=
 ZORAN, PCI_PRODUCT_ZORAN_ZR36057, <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPL style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30342, 2455, 6225, 0,<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPL style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; 30352, 2455, 6225, 0,<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPL style=3D'font-family:"Courier Ne=
 w"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;PCI_VENDOR_ZORAN, PCI_PRODU=
 CT_ZORAN_ZR36120, <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p;  &nbsp;&nbsp;&nbsp;30350, 234, 6225, 0,<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 30360, 234, 6225, 0,<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'> };<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> =
 static const char pci_words[] =3D { &quot;.&quot; <o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:=
 "Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&quot;Peak\=
 0&quot; /* 1 refs @ 1 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span style=3D'font-family:"Courier New"'>@@ -9188,7 =
 +9190,7 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp;&nbsp;&quot;TMC\0&quot; /* 1 refs @ 601 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&quot;Miro\=
 0&quot; /* 1 refs @ 605 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&quot;(2nd\0&quot; /* 14 refs @ 610 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nb=
 sp;&quot;PCI\0&quot; /* 314 refs @ 615 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI\0&quot; /* 315 refs =
 @ 615 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;&quot;Vendor\0&quot; /* 16 refs @ 619 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&quot;ID)=
 \0&quot; /* 19 refs @ 626 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&quot;NEC\0&quot; /* 2 refs @ 630 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>@@ -9202,7 +9204,7 @@<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fon=
 t-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&quot;H=
 itach\0&quot; /* 1 refs @ 673 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&quot;AMP\0&quot; /* 1 refs @ 680 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;&quot;Silicon\0&quot; /* 4 refs @ 684 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Integrated\0&q=
 uot; /* 80 refs @ 692 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Integrated\0&quot; /* 81 refs @ 692 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;&quot;Seiko\0&quot; /* 1 refs @ 703 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&quot;Tatung\0&quot; =
 /* 1 refs @ 709 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;&quot;Hewlett-Packard\0&quot; /* 1 refs @ 716 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DFR style=3D'font-family:"Courier New"'>@@ -10586,7 +10588,7 @@<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;&quot;HD6310\0&quot; /* 1 refs @ 10345 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;&quot;HD7340\0&quot; /* 1 refs @ 10352 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&quot;VxP52=
 4\0&quot; /* 1 refs @ 10359 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Processor\0&quot; /* 26 r=
 efs @ 10366 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Processor\0&quot; /* 27 refs @ 10366 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;&quot;AU8820\0&quot; /* 1 refs @ 10376 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;&quot;AU8830\0&quot; /* 1 refs @ 10383 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&quot;S5933=
 \0&quot; /* 1 refs @ 10390 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>@@ -10656,7 +10658,7 @@<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&quot;PCIe-PCIe\0&quot; /* 1 =
 refs @ 10853 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&quot;single-channel\0&quot; /* 2 refs @ =
 10863 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;&quot;RS-485\0&quot; /* 8 refs @ 10878 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;UART\0&quot; /* 24 refs @ 10885 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;UART\0&q=
 uot; /* 25 refs @ 10885 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&quot;dual-channel\0&quot; /*=
  3 refs @ 10890 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&quot;quad-channel\0&quot; /* 3 refs @=
  10903 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;&quot;octal-channel\0&quot; /* 3 refs @ 10916 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DFR style=3D'font-family:"Courier New"'>@@ -11927,1279 +11929,12=
 80 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;&quot;Semaphore\0&quot; /* 1 refs @ 20414 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp;&nbsp;</span><span style=3D'font-family:"Courier New"'>&quot;Scratchp=
 ad\0&quot; /* 2 refs @ 20424 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&quot;HANKSVILLE\0&quot; /* 1 refs =
 @ 20435 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;Powerstorm\0&quot; /* 2 refs @ 20446 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;4D50T\0&quot; /* 1 refs @ 20457 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;4D60T\0&quot; /* =
 1 refs @ 20463 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PRISM2.5\0&quot; /* 1 refs @ 20469 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;PRISM\0&quot; /* 2 refs @ 20478 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;In=
 digo\0&quot; /* 1 refs @ 20484 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Duette\0&quot; /* 1 re=
 fs @ 20491 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;AEON\0&quot; /* 1 refs @ 20498 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;CBIDE2/CI-iCN\0&quot; /* 1 refs @ 20503 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;NinjaATA-32Bi\0&quot; /* 3 refs @ 20517 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CBSCII\0&q=
 uot; /* 1 refs @ 20531 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;NinjaSCSI-32Bi\0&quot; /* 3 =
 refs @ 20538 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;RSA-PCI\0&quot; /* 1 refs @ 20553 */<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; &quot;GV-BCTV5DL/PCI\0&quot; /* 1 refs @ 20561 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;TV\0&q=
 uot; /* 1 refs @ 20576 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;tuner\0&quot; /* 1 refs @ 20579 */<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;IT8152\0&quot; /* 1 refs @ 20585 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;IT8211\0&quot; /* 1 refs=
  @ 20592 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;IT8212\0&quot; /* 1 refs @ 20599 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;AGX016\0&=
 quot; /* 1 refs @ 20606 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ITT3204\0&quot; /* 1 refs @ 20613 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;JMB360\0&quot; /* 1 refs @ 20621 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;JMB361\0&quot; /* 1 =
 refs @ 20628 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SATA/PATA\0&quot; /* 4 refs @ 20635 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DIT style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;JMB362\0&quot; /* 1 refs @ 20645 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;JMB363\0&quo=
 t; /* 1 refs @ 20652 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;JMB365\0&quot; /* 1 refs @ 20659 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;JMB366\0&quot; /* 1 refs @ 20666 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;JMB368\0&quot; /* 1 refs @ =
 20673 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;PATA\0&quot; /* 1 refs @ 20680 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;JMB38X\0&quot;=
  /* 4 refs @ 20685 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; &quot;SD/MMC\0&quot; /* 4 refs @ 20692 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;Stick\0&quot; /* 4 refs @ 20699 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>=
 -&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;xD\0&quot; /* 3 refs @ 20705 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp; &quot;JMB388\0&quot; /* 4 refs @ 20708 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;JMC250\0&quot; /* 1=
  refs @ 20715 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;JMC260\0&quot; /* 1 refs @ 20722 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;JNIC=
 -1460\0&quot; /* 1 refs @ 20729 */<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Fibre-Channel\0&quot; /* 5 refs=
  @ 20739 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;JNIC-1560\0&quot; /* 1 refs @ 20753 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FCI-10=
 63\0&quot; /* 1 refs @ 20763 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FCX2-6562\0&quot; /* 1 refs @ 2077=
 2 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;FCX-6562\0&quot; /* 1 refs @ 20782 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Expe=
 rimental\0&quot; /* 1 refs @ 20791 */<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Clock\0&quot; /* 1=
  refs @ 20804 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Version\0&quot; /* 1 refs @ 20810 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;0\0&quot; /* 2 refs @ 20818 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;HSSI\0&q=
 uot; /* 1 refs @ 20820 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;DS3\0&quot; /* 1 refs @ 2082=
 5 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; &quot;SSI\0&quot; /* 1 refs @ 20829 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;DS1\0&quot; /* 1 refs @ 20833 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;805\0&quot; /* 1 refs =
 @ 20837 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;LXT-1001\0&quot; /* 1 refs @ 20841 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;DVB\0&qu=
 ot; /* 2 refs @ 20850 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Transmitter\0&quot; /* 1 refs @ 20854 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;Receiver\0&quot; /* 1 refs @ 20866 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;EG1032\0&=
 quot; /* 1 refs @ 20875 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;v2\0&quot; /* 2 refs @ 20882=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;Instant\0&quot; /* 2 refs @ 20885 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;EG1064\0&quot; /* 1 refs @ 20893 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCMPC200\0&quot;=
  /* 1 refs @ 20900 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;IPN\0&quot; /* 1 refs @ 20909 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;2220\0&quot; /* 1 refs @ 20913 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(rev\0&quot; /* 1 refs @=
  20918 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;01)\0&quot; /* 1 refs @ 20923 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C168/82C169\=
 0&quot; /* 1 refs @ 20927 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(PNIC)\0&quot; /* 1 refs @ 20941 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;82C115\0&quot; /* 1 refs @ 20948 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(PNIC\0&quot; /* 1 r=
 efs @ 20955 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; &quot;II)\0&quot; /* 2 refs @ 20961 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;K56flex\0=
 &quot; /* 2 refs @ 20965 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;DSVD\0&quot; /* 1 refs @ 20973 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;LTMODEM\0&quot; /* 26 refs @ 20978 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Venus\0&quot;=
  /* 1 refs @ 20986 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ORCA\0&quot; /* 2 refs @ 20992 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;FPGA\0&quot; /* 2 refs @ 20997 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;32-bit\0&quot=
 ; /* 1 refs @ 21002 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;ASIC\0&quot; /* 2 refs @ 21009 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;64-bit\0&quot; /* 1 refs @ 21014 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FW322/323\0&quot; /* 1 refs @=
  21021 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;FW643\0&quot; /* 1 refs @ 21031 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;1394b\0&quot=
 ; /* 1 refs @ 21037 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ET1310\0&quot; /* 1 refs @ 21043 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;ET1301\0&quot; /* 1 refs @ 21050 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;MX98713\0&quot; /* 1 refs @ 21057 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(PMAC)\0&quot; /*=
  2 refs @ 21065 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MX987x5\0&quot; /* 1 refs @ 21072 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;Ringnode\0&quot; /* 1 refs @ 21080 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;Mk2\0&quot; /* 1 refs @ 21089 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Collage\0&quot; /* 2 r=
 efs @ 21093 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;155\0&quot; /* 2 refs @ 21101 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;PCI-SLRS\0&quot; /* 2 refs @ 21105 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MGA\0&quot; /* 1=
 4 refs @ 21114 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;PX2085\0&quot; /* 1 refs @ 21118 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(\&=
 quot;Atlas\&quot;)\0&quot; /* 1 refs @ 21125 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Millennium\0&quot;=
  /* 3 refs @ 21135 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; &quot;2064W\0&quot; /* 1 refs @ 21146 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;(\&quot;Storm\&quot;)\0&quot; /* 1 refs @ 21152 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;Mystique\0&quot; /* 1 refs @ 21162 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;1064SG\0&q=
 uot; /* 1 refs @ 21171 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPL style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;2164W\0&quot; /* 1 refs @ 21=
 178 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPL style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;2164WA-B\0&quot; /* 1 refs @ 21184 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;G2=
 00\0&quot; /* 2 refs @ 21193 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;G200e\0&quot; /* 1 refs @ 21198 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; &quot;(ServerEngines)\0&quot; /* 1 refs @ 21204 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fam=
 ily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;G400\0&quot=
 ; /* 1 refs @ 21220 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;G200eW\0&quot; /* 1 refs @ 21225 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;Impression\0&quot; /* 1 refs @ 21232 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;G100\0&quot; /* 2 refs @=
  21243 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;G550\0&quot; /* 1 refs @ 21248 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MQ200\0&quot;=
  /* 1 refs @ 21253 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;InfiniHost\0&quot; /* 6 refs @ 212=
 59 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;(Tavor)\0&quot; /* 2 refs @ 21270 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;Lx\0&quot; /* 2 refs @ 21278 */<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(old\0&quot; /* 1 =
 refs @ 21281 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Sinai)\0&quot; /* 1 refs @ 21286 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;(Sinai)\0&quot; /* 1 refs @ 21293 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Ex\0=
 &quot; /* 2 refs @ 21301 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DDE style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(Arbel\0&quot; /* 1 refs @ 2=
 1304 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DDE style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;in\0&quot; /* 1 refs @ 21311 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDE sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;Tavor\0&quot; /* 1 refs @ 21314 */<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;compatility)\0&quot; /* 1 re=
 fs @ 21320 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;(Arbel)\0&quot; /* 1 refs @ 21333 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Connec=
 tX\0&quot; /* 7 refs @ 21341 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SDR\0&quot; /* 1 refs @ 21350 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;(Hermon)\0&quot; /* 7 refs @ 21354 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;DDR\0&quot; /* 3 ref=
 s @ 21363 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;QDR\0&quot; /* 2 refs @ 21367 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;PCIe\0&quot; /* 8 refs @ 21371 */<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;2.5GT/s\0&quot; /* 2 =
 refs @ 21376 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;EN\0&quot; /* 2 refs @ 21384 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;10GigE\0&quot; /* 2 refs @ 21387 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5GT/s\0&=
 quot; /* 3 refs @ 21394 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MM-5415CN\0&quot; /* 1 refs =
 @ 21400 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;MM-5425CN\0&quot; /* 1 refs @ 21410 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;MN-120\0&quot; /* 1 refs @ 21420 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Switched\0&quot; /* 1 refs =
 @ 21427 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;Weasel\0&quot; /* 3 refs @ 21436 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;Tornado\0&quot; /* 1 refs @ 21443 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MPC105\0&quot=
 ; /* 1 refs @ 21451 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 -&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;\&quot;Eagle\&quot;\0&quot; /*=
  1 refs @ 21458 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;MPC106\0&quot; /* 1 refs @ 21466 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;\&=
 quot;Grackle\&quot;\0&quot; /* 1 refs @ 21473 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MPC8240\0&quot; /=
 * 1 refs @ 21483 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;\&quot;Kahlua\&quot;\0&quot; /* 1 refs @ 21491=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;MPC107\0&quot; /* 1 refs @ 21500 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;\&quot;Chaparral\=
 &quot;\0&quot; /* 1 refs @ 21507 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>=
 -&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MPC8245\0&quot; /* 1 refs @ 21=
 519 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; &quot;\&quot;Kahlua\0&quot; /* 1 refs @ 21527 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;II\&quo=
 t;\0&quot; /* 1 refs @ 21535 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MPC8555E\0&quot; /* 1 refs @ 21539=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;MPC8541\0&quot; /* 1 refs @ 21548 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Raven\0&quot; /*=
  1 refs @ 21556 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;Multi-Processor\0&quot; /* 1 refs @ 21562 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;Falcon\0&quot; /* 1 refs @ 21578 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ECC\0&quot; /* 1 refs @=
  21585 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;Set\0&quot; /* 1 refs @ 21589 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&quot;Hawk\0&quot; /=
 * 1 refs @ 21593 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;MPC5200B\0&quot; /* 1 refs @ 21598 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;CP102U\0&quot; /* 1 refs @ 21607 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;C104H\0&quot; /* 1 refs @ 216=
 14 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;CP104UL\0&quot; /* 1 refs @ 21620 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CP104V2\0&quot=
 ; /* 1 refs @ 21628 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CP104EL\0&quot; /* 1 refs @ 21636=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;CP114\0&quot; /* 1 refs @ 21644 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;C168H\0&quot; /* 1 refs @ 21650 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;C168U\0&quot; /* 1 =
 refs @ 21656 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;C168EL\0&quot; /* 2 refs @ 21662 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;MV1000\0&quot; /* 1 refs @ 21669 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;DAC96=
 0\0&quot; /* 4 refs @ 21676 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(v2\0&quot; /* 1 refs @ 2=
 1683 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;Interface)\0&quot; /* 4 refs @ 21687 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;(v3\0&quot; /* 1 refs @ 21698 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(v4\0&quot=
 ; /* 1 refs @ 21702 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(v5\0&quot; /* 1 refs @ 21706 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DES style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;eXtremeRAID\0&quot; /* 4 refs @ 21710 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;AcceleRAID\0&quot; /* 3 refs @ 21722 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;352\0&quot=
 ; /* 1 refs @ 21733 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;170\0&quot; /* 1 refs @ 21737 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;160\0&quot; /* 1 refs @ 21741 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;1100=
 \0&quot; /* 2 refs @ 21745 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;2000/3000\0&quot; /* 1 ref=
 s @ 21750 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;MTD803\0&quot; /* 1 refs @ 21760 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;3-in-1\0=
 &quot; /* 1 refs @ 21767 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;NCP130\0&quot; /* 2 refs @ 21774 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;A2\0&quot; /* 1 refs @ 21781 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;NSP2K\0&quot; /* 1 refs @ 2=
 1784 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;Policy\0&quot; /* 1 refs @ 21790 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;XLP\0&quot; /=
 * 27 refs @ 21797 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;controller\0&quot; /* 17 refs @ 21801 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;Inter-Chip\0&quot; /* 1 refs @ 21812 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;interconnect\0&quot;=
  /* 1 refs @ 21823 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-Express\0&quot; /* 7 refs @ 21836 */<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;RootComplex/Endpoint\0&quot; /* 1 refs @ 21848 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Interlaken=
 \0&quot; /* 1 refs @ 21869 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;LA\0&quot; /* 1 refs @ 21880 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;interface\0&quot; /* 2 refs @ 21883 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Acceleration\0&quot;=
  /* 1 refs @ 21893 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; &quot;engine\0&quot; /* 4 refs @ 21906 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;Ordering\0&quot; /* 1 refs @ 21913 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Messaging\0&quot; /* 1 refs=
  @ 21922 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;Transfer\0&quot; /* 1 refs @ 21932 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;acceler=
 ator\0&quot; /* 3 refs @ 21941 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;RSA/ECC\0&quot; /* 1 refs @ 2195=
 3 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;Compress/Decompression\0&quot; /* 1 refs @ 21961 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;JTAG\0&quot; /* 1 refs @ 21984 */<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;NOR\0&quot; /* 1 refs @ 21989 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp; &quot;flash\0&quot; /* 2 refs @ 21993 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;NAND\0&quot; /* 1 re=
 fs @ 21999 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;eMMC/SD/SDIO\0&quot; /* 1 refs @ 22004 */<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;Regular\0&quot; /* 1 refs @ 22017 */<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Expression\0&quot; /* 1 refs=
  @ 22025 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;SRIO\0&quot; /* 1 refs @ 22036 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fam=
 ily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(Serial\0&q=
 uot; /* 1 refs @ 22041 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Rapid\0&quot; /* 1 refs @ 22049 */<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;IO)\0&quot; /* 1 refs @ 22055 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Universe\0&quot; /* 1 refs =
 @ 22059 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;VME\0&quot; /* 1 refs @ 22068 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;QSpan\0&quot;=
  /* 1 refs @ 22072 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; &quot;PowerSpan\0&quot; /* 2 refs @ 22078 */<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;MXI-3\0&quot; /* 1 refs @ 22088 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Extender\0&quot; /* 1 refs =
 @ 22094 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp; &nbsp;&quot;DP83810\0&quot; /* 1 refs @ 22103 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PC87415\0=
 &quot; /* 1 refs @ 22111 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;87560\0&quot; /* 1 refs @ 22119 */<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;Legacy\0&quot; /* 1 refs @ 22125 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;DP83815\0&quot; /* 1 ref=
 s @ 22132 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;DP83820\0&quot; /* 1 refs @ 22140 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CS5535\=
 0&quot; /* 6 refs @ 22148 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Saturn\0&quot; /* 1 refs @ 22155 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;SC1100\0&quot; /* 5 refs @ 22162 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;XpressAUDI=
 O\0&quot; /* 1 refs @ 22169 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SMI/ACPI\0&quot; /* 1 ref=
 s @ 22181 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;X-Bus\0&quot; /* 1 refs @ 22190 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;NS87410\0=
 &quot; /* 1 refs @ 22196 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SAA7130HL\0&quot; /* 1 refs @ 22204 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; &quot;Broadcast\0&quot; /* 4 refs @ 22214 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SAA7133HL\0&quot;=
  /* 1 refs @ 22224 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; &quot;A/V\0&quot; /* 3 refs @ 22234 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SA=
 A7134HL\0&quot; /* 1 refs @ 22238 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFI style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SAA7135HL\0&quot; /=
 * 1 refs @ 22248 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DFI style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SAA7146AH\0&quot; /* 1 refs @ 22258 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DFI style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;53c810\0&quot; /* 1 refs @ 22268 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;53c820\0&quot; /* 1 refs @ 22275 */<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;53c825\0&quot; /* =
 1 refs @ 22282 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;53c815\0&quot; /* 1 refs @ 22289 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;53c810AP\0&quot; /* 1 refs @ 22296 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;53c860\0&quot; /* 1 refs @ 22305 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;53c1510D\0&quot; /*=
  1 refs @ 22312 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;53c896\0&quot; /* 1 refs @ 22321 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;53c895\0&quot; /* 1 refs @ 22328 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;53=
 c885\0&quot; /* 1 refs @ 22335 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;53c875/876\0&quot; /* =
 1 refs @ 22342 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;53c1510\0&quot; /* 1 refs @ 22353 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;53c895A\0&quot; /* 1 refs @ 22361 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;53c875A\0&quot; /* 1 refs @ 22369 */<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;53c1010\0&quot; /*=
  2 refs @ 22377 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(66MHz)\0&quot; /* 1 refs @ 22385 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;53c1020/53c1030\0&quot; /* 1 refs @ 22393 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;53c1030R\0&quot; /* 1 refs @ 22409 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;53c1030ZC\=
 0&quot; /* 1 refs @ 22418 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;53c1035\0&quot; /* 1 ref=
 s @ 22428 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;53c1035ZC\0&quot; /* 1 refs @ 22436 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;SAS1064\0&quot; /* 1 refs @ 22446 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;SAS1068\0&quot; /* 2 refs @ 22454 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SAS1064E\0&=
 quot; /* 2 refs @ 22462 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SAS1068E\0&quot; /* 2 ref=
 s @ 22471 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SAS1066E\0&quot; /* 1 refs @ 22480 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;SAS2208\0&quot; /* 7 refs @ 22489 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;SAS1064A\0&quot; /* 1 refs @ 22497 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SAS1066\0&q=
 uot; /* 1 refs @ 22506 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SAS1078\0&quot; /* 2 refs=
  @ 22514 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SAS2116\0&quot; /* 2 refs @ 22522 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;SAS2308\0&quot; /* 3 refs @ 22530 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;SAS2004\0&quot; /* 1 refs @ 22538 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SAS2008\0&quot=
 ; /* 2 refs @ 22546 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 -&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SAS2108\0&quot; /* 5 refs @ 22=
 554 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;CRYPTO\0&quot; /* 1 refs @ 22562 */<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;GEN2\0&quot; /* 2 refs @ 22569 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SAS1078DE\0&q=
 uot; /* 1 refs @ 22574 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;53c875J\0&quot; /* 1 refs @ =
 22584 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;FC909\0&quot; /* 1 refs @ 22592 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FC909A\0&quot=
 ; /* 1 refs @ 22598 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;FC929\0&quot; /* 2 refs @ 22605 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;FC919\0&quot; /* 2 refs @ 22611 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FC929X\0&quot; /* 1 =
 refs @ 22617 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FC919X\0&quot; /* 1 refs @ 22624 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;FC949X\0&quot; /* 1 refs @ 22631 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FC939=
 X\0&quot; /* 1 refs @ 22638 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FC949E\0&quot; /* 1 refs =
 @ 22645 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;Megaraid\0&quot; /* 3 refs @ 22652 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;320-X\0&quot; /* 1 refs @ 22661 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;320=
 -E\0&quot; /* 1 refs @ 22667 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;&quot;(300-6X/300-8X)\0&quo=
 t; /* 1 refs @ 22673 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Verde\0&quot; /* 1 refs @ 226=
 89 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;ZCR\0&quot; /* 1 refs @ 22695 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;4/SC\0&quot; /* 1 refs @ 22699 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;G-NIC\0&quo=
 t; /* 2 refs @ 22704 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Tools\0&quot; /* 1 refs @ 22710 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;VRC4173\0&quot; /* 3 refs @ 22716 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PC-Card\0&quot; /* 1 refs @=
  22724 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;Unit\0&quot; /* 5 refs @ 22732 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PowerVR\0&quo=
 t; /* 1 refs @ 22737 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCX2\0&quot; /* 1 refs @ 22745 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;uPD72872\0&quot; /* 1 refs @ 22750 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PK-UG-X001\0&quot; /* 1 ref=
 s @ 22759 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;PK-UG-X008\0&quot; /* 1 refs @ 22770 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Bus\=
 0&quot; /* 3 refs @ 22781 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;uPD72870\0&quot; /* 1 refs @ 22785 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; &quot;uPD72871\0&quot; /* 1 refs @ 22794 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPL style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;uPD72040=
 0\0&quot; /* 1 refs @ 22803 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPL style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI/PCI-X\0&quot; /* 3 re=
 fs @ 22813 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Versa\0&quot; /* 2 refs @ 22823 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;VA26D\0&quot; /* 1 refs @ 22829 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MagicGrap=
 h\0&quot; /* 4 refs @ 22835 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;NM2070\0&quot; /* 1 refs =
 @ 22846 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;128V\0&quot; /* 1 refs @ 22853 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;128ZV\0&quot; /* 1 refs @ 22858 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;128XD\0&quot;=
  /* 1 refs @ 22864 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MagicMedia\0&quot; /* 5 refs @ 228=
 70 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;256AV\0&quot; /* 2 refs @ 22881 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;256ZX\0&quot; /* 2 refs @ 22887 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;256XL+\0&quot; /*=
  1 refs @ 22893 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DNL style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;NET2280\0&quot; /* 1 refs @ 22900 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DNL style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;NET2282\0&quot; /* 1 refs @ 22908 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DNL style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;GA620\0&quot; /* 2 refs @ 22916 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&quot;MA301\0&quot; /* 1 r=
 efs @ 22922 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;1284\0&quot; /* 6 refs @ 22928 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;Printer\0&quot; /* 6 refs @ 22933 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;9855\0&=
 quot; /* 1 refs @ 22941 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;9865\0&quot; /* 1 refs @ 229=
 46 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;MCS9990\0&quot; /* 1 refs @ 22951 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;NX82C501\0&quot; /* 1 refs @ 22959 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;NDR4600\0&quot; /* 1=
  refs @ 22968 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;Baystack\0&quot; /* 1 refs @ 22976 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;21=
 \0&quot; /* 1 refs @ 22985 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(Accton\0&quot; /* 1 refs =
 @ 22988 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;EN5038)\0&quot; /* 1 refs @ 22996 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;Imagine-128\0&quot; /* 2 refs @ 23004 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;RIV=
 A\0&quot; /* 4 refs @ 23016 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;TNT\0&quot; /* 1 refs @ 2=
 3021 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;TNT2\0&quot; /* 4 refs @ 23025 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;Vanta\0&quot; /* 1 refs @ 23030 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Model\0&quot; /*=
  1 refs @ 23036 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;64\0&quot; /* 1 refs @ 23042 */<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;MCP04\0&quot; /* 7 refs @ 23045 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GeForce=
 \0&quot; /* 40 refs @ 23051 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;6800\0&quot; /* 4 refs @ =
 23059 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;GT\0&quot; /* 4 refs @ 23064 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;nForce4\0&quot; /* 14 refs @ 23067 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ATA133\0&quot;=
  /* 13 refs @ 23075 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;nForce2\0&quot; /* 27 refs @ 2308=
 2 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; &quot;MCP-T\0&quot; /* 4 refs @ 23090 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&qu=
 ot;400\0&quot; /* 10 refs @ 23096 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Aladdin\0&quot; /* =
 1 refs @ 23100 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;nForce3\0&quot; /* 23 refs @ 23108 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;250\0&quot; /* 12 refs @ 23116 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Qua=
 dro\0&quot; /* 13 refs @ 23120 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FX\0&quot; /* 23 re=
 fs @ 23127 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Quadro4\0&quot; /* 11 refs @ 23130 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;280\0&quot; /* 2 refs @ 23138 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;NV=
 S\0&quot; /* 3 refs @ 23142 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;1300\0&quot; /* 1 refs @ =
 23146 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;PCX\0&quot; /* 1 refs @ 23151 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;4300\0&quot; /* 1 refs @ 23155 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;256\0&quot; /* 1 =
 refs @ 23160 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GeForce2\0&quot; /* 7 refs @ 23164 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;MX\0&quot; /* 10 refs @ 23173 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;100/20=
 0\0&quot; /* 1 refs @ 23176 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Go\0&quot; /* 5 refs @ 23=
 184 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;Quadro2\0&quot; /* 2 refs @ 23187 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;MXR/EX\0&quot; /* 1 refs @ 23195 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;6600\0&quot; =
 /* 5 refs @ 23202 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;6610\0&quot; /* 1 refs @ 23207 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;5500\0&quot; /* 1 refs @ 23212 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;540\=
 0&quot; /* 2 refs @ 23217 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GTS\0&quot; /* 4 refs @ 232=
 21 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;(DDR)\0&quot; /* 1 refs @ 23225 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;6200TC\0&quot; /* 1 refs @ 23231 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;6200LE\0&quot; /=
 * 1 refs @ 23238 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GeForce4\0&quot; /* 15 refs @ 23245 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;460\0&quot; /* 1 refs @ 23254 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;440\0&quot; /* 4 refs @ 23258 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;420\0&quot; /* 2 refs =
 @ 23262 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;SE\0&quot; /* 4 refs @ 23266 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;500XGL\0&quot; /* 1 refs @ 23269 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;200/400NVS\0&q=
 uot; /* 1 refs @ 23276 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(AGP8X)\0&quot; /* 4 refs @ =
 23287 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;580\0&quot; /* 1 refs @ 23295 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;XGL\0&quot; /* 4 refs @ 23299 */<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;380\0&quot; /* 1 r=
 efs @ 23303 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;4600\0&quot; /* 2 refs @ 23307 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;nForce\0&quot; /* 153 refs @ 23312 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MCP\0&=
 quot; /* 1 refs @ 23319 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Xbox\0&quot; /* 3 refs @ 233=
 23 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;ATA100\0&quot; /* 1 refs @ 23328 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;7300\0&quot; /* 1 refs @ 23335 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GeForce3\0&quot; =
 /* 3 refs @ 23340 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Ti\0&quot; /* 10 refs @ 23349 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;500\0&quot; /* 2 refs @ 23352 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;DCC\0&=
 quot; /* 1 refs @ 23356 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;6150\0&quot; /* 2 refs @ 233=
 60 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;4400\0&quot; /* 1 refs @ 23365 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;4200\0&quot; /* 3 refs @ 23370 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;900XGL\0&quot; /* 1=
  refs @ 23375 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;750XGL\0&quot; /* 1 refs @ 23382 */<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; &quot;700XGL\0&quot; /* 1 refs @ 23389 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;nFor=
 ce430\0&quot; /* 14 refs @ 23396 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;C51\0&quot; /* 18 re=
 fs @ 23406 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;4800\0&quot; /* 2 refs @ 23410 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;8x\0&quot; /* 1 refs @ 23415 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;980\0&quot=
 ; /* 1 refs @ 23418 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;780\0&quot; /* 1 refs @ 23422 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;1500\0&quot; /* 1 refs @ 23426 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Frame\0&quot; /* 1 refs=
  @ 23431 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;Buffer\0&quot; /* 1 refs @ 23437 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(0x02f0)\=
 0&quot; /* 1 refs @ 23444 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(0x02f1)\0&quot; /* 1 refs @ 23453 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; &quot;(0x02f2)\0&quot; /* 1 refs @ 23462 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(0x02f3)\0&quot; /=
 * 1 refs @ 23471 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;(0x02f4)\0&quot; /* 1 refs @ 23480 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;(0x02f5)\0&quot; /* 1 refs @ 23489 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(0x02f6)\0&quot; /* 1 refs =
 @ 23498 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;(0x02f7)\0&quot; /* 1 refs @ 23507 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(0x02fb)=
 \0&quot; /* 1 refs @ 23516 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(0x02fc)\0&quot; /* 1 refs @ 23525 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp; &quot;(0x02fd)\0&quot; /* 1 refs @ 23534 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(0x02ff)\0&quot; =
 /* 1 refs @ 23543 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5800\0&quot; /* 2 refs @ 23552 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;5200\0&quot; /* 2 refs @ 23557 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5200=
 SE\0&quot; /* 1 refs @ 23562 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5900\0&quot; /* 2 refs @=
  23569 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;5900XT\0&quot; /* 1 refs @ 23574 */<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;5950\0&quot; /* 1 refs @ 23581 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5700\0&quot; =
 /* 1 refs @ 23586 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MCP55\0&quot; /* 17 refs @ 23591 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;16x\0&quot; /* 2 refs @ 23597 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;760=
 0\0&quot; /* 1 refs @ 23601 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MCP61\0&quot; /* 20 refs =
 @ 23606 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;8600\0&quot; /* 2 refs @ 23612 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;8400M\0&quot; /* 1 refs @ 23617 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GS\0&quot; /*=
  2 refs @ 23623 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;140M\0&quot; /* 1 refs @ 23626 */<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; &quot;MCP65\0&quot; /* 31 refs @ 23631 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-=
 LPC\0&quot; /* 7 refs @ 23637 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MCP67\0&quot; /* 20 ref=
 s @ 23645 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;MCP73\0&quot; /* 20 refs @ 23651 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;8400\0&quot; /* 1 refs @ 23657 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MCP77\0&qu=
 ot; /* 21 refs @ 23662 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MCP78S\0&quot; /* 1 refs @ 2=
 3668 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;210\0&quot; /* 1 refs @ 23675 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;MCP79\0&quot; /* 17 refs @ 23679 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GTX\0&quot; /* 1=
  refs @ 23685 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;550\0&quot; /* 2 refs @ 23689 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;Riva\0&quot; /* 1 refs @ 23693 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;OTI107\0&=
 quot; /* 1 refs @ 23698 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;OC-3136/3137\0&quot; /* 1 re=
 fs @ 23705 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Token-Ring\0&quot; /* 2 refs @ 23718 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;OC-3139f\0&quot; /* 1 refs @ 23729 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fam=
 ily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Fastload\0&=
 quot; /* 1 refs @ 23738 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;OC-3139/3140\0&quot; /* 1 refs @ 23747=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;RapidFire\0&quot; /* 5 refs @ 23760 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;OC-3250\0&quot=
 ; /* 1 refs @ 23770 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;GoCard\0&quot; /* 1 refs @ 23778 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;OC-3530\0&quot; /* 1 refs @ 23785 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;OC-3141\0&quot; /* 1 refs @=
  23793 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;OC-3540\0&quot; /* 1 refs @ 23801 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;HSTR\0&quo=
 t; /* 1 refs @ 23809 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;100/16/4\0&quot; /* 1 refs @ 23814 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;OC-3150\0&quot; /* 1 refs @ 23823 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;OC-2805\0&quot; /* 1 ref=
 s @ 23831 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;OC-2325\0&quot; /* 1 refs @ 23839 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;OC-2183=
 /2185\0&quot; /* 1 refs @ 23847 */<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;OC-2326\0&quot; /* 1 refs @ 238=
 60 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;10/100-TX\0&quot; /* 1 refs @ 23868 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'>-&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&quot;OC-2327/2350=
 \0&quot; /* 1 refs @ 23878 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;OC-6151/6152\0&quot; /* 1 refs @ 238=
 91 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;82C557\0&quot; /* 1 refs @ 23904 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;82C558\0&quot; /* 1 refs @ 23911 */<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C568\0&quot; =
 /* 1 refs @ 23918 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82D568\0&quot; /* 1 refs @ 23925 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;82C621\0&quot; /* 1 refs @ 23932 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;82C822\0&quot; /* 1 refs @ 23939 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C861\0&quot; /* 1=
  refs @ 23946 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C700\0&quot; /* 1 refs @ 23953 */<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; &quot;82C701\0&quot; /* 1 refs @ 23960 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;011H=
 \0&quot; /* 1 refs @ 23967 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;OX16PCI954\0&quot; /* 2 re=
 fs @ 23972 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;OX16PCI954K\0&quot; /* 1 refs @ 23983 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;Exsys\0&quot; /* 2 refs @ 23995 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;EX-=
 41092\0&quot; /* 1 refs @ 24001 */<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;OXCB950\0&quot; /* 1 refs @ 240=
 10 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;OXmPCI954\0&quot; /* 2 refs @ 24018 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Disabled\0&q=
 uot; /* 1 refs @ 24028 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;EX-41098\0&quot; /* 1 refs @=
  24037 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;OX16PCI952\0&quot; /* 2 refs @ 24046 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;OX16PCI958\0&quot; /* 1 refs @ 24057 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;OXP=
 CIe952\0&quot; /* 1 refs @ 24068 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;HD-2000\0&quot; /* 1=
  refs @ 24078 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;HDTV\0&quot; /* 2 refs @ 24086 */<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;HD-5500\0&quot; /* 1 refs @ 24091 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;RZ100=
 0\0&quot; /* 1 refs @ 24099 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCAN\0&quot; /* 1 refs @ =
 24106 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;P17C9X110\0&quot; /* 1 refs @ 24111 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;P17C9X\0&quot; /* 1 refs @ 24121 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;P1000\0&=
 quot; /* 1 refs @ 24128 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FNW-3603-TX\0&quot; /* 1 ref=
 s @ 24134 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;FNW-3800-TX\0&quot; /* 1 refs @ 24146 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;VScom\0&quot; /* 3 refs @ 24158 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-=
 400\0&quot; /* 1 refs @ 24164 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-800\0&quot; /* 1 re=
 fs @ 24172 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-200\0&quot; /* 1 refs @ 24180 */<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;9030\0&quot; /* 1 refs @ 24188 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Accelrat=
 or\0&quot; /* 2 refs @ 24193 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;9050\0&quot; /* 1 refs @=
  24204 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;9054\0&quot; /* 1 refs @ 24209 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;9060ES\0&quot; /* 1 refs @ 24214 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;9656\0&quot; =
 /* 2 refs @ 24221 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FPBGA\0&quot; /* 1 refs @ 24226 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;PowerTop\0&quot; /* 1 refs @ 24232 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;PowerPro\0&quot; /* 1 refs @ 24241 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20265\0&quot; =
 /* 1 refs @ 24250 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Ultra/66\0&quot; /* 3 refs @ 24259 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;PDC20263\0&quot; /* 1 refs @ 24268 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;PDC20275\0&quot; /* 1 refs @ 24277 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Ultra/133\0&qu=
 ot; /* 10 refs @ 24286 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20318\0&quot; /* 1 refs @=
  24296 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;PDC20319\0&quot; /* 1 refs @ 24305 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;PDC20371\0&quot; /* 1 refs @ 24314 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC203=
 79\0&quot; /* 1 refs @ 24323 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20378\0&quot; /* 1 re=
 fs @ 24332 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20375\0&quot; /* 1 refs @ 24341 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;PDC20376\0&quot; /* 1 refs @ 24350 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC=
 20377\0&quot; /* 1 refs @ 24359 */<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC40719\0&quot; /* 1=
  refs @ 24368 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC40519\0&quot; /* 1 refs @ 24377 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;PDC20771\0&quot; /* 1 refs @ 24386 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;PDC20571\0&quot; /* 1 refs @ 24395 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20579\0&quot; =
 /* 1 refs @ 24404 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC40779\0&quot; /* 1 refs @ 24413 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;PDC40718\0&quot; /* 1 refs @ 24422 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;PDC40518\0&quot; /* 1 refs @ 24431 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20775\0&quo=
 t; /* 1 refs @ 24440 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20575\0&quot; /* 1 refs @ 244=
 49 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;PDC20267\0&quot; /* 1 refs @ 24458 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;Ultra/100\0&quot; /* 3 refs @ 24467 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20246\0=
 &quot; /* 1 refs @ 24477 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Ultra/33\0&quot; /* 1 refs @=
  24486 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;PDC20262\0&quot; /* 1 refs @ 24495 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;PDC20268\0&quot; /* 1 refs @ 24504 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC202=
 69\0&quot; /* 1 refs @ 24513 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20276\0&quot; /* 1 re=
 fs @ 24522 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;DC5030\0&quot; /* 1 refs @ 24531 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;PDC20270\0&quot; /* 1 refs @ 24538 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20=
 271\0&quot; /* 1 refs @ 24547 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20617\0&quot; /* 1 r=
 efs @ 24556 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20620\0&quot; /* 1 refs @ 24565 */<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; &quot;PDC20621\0&quot; /* 1 refs @ 24574 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PD=
 C20618\0&quot; /* 1 refs @ 24583 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Controler\0&quot; /*=
  1 refs @ 24592 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20619\0&quot; /* 1 refs @ 24602 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;PDC20277\0&quot; /* 1 refs @ 24611 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;CH352\0&quot; /* 1 refs @ 24620 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CH353\0&quot; /* 1 =
 refs @ 24626 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;QLA200\0&quot; /* 1 refs @ 24632 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;ISP1020\0&quot; /* 1 refs @ 24639 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ISP1=
 022\0&quot; /* 1 refs @ 24647 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ISP1080\0&quot; /* 1 re=
 fs @ 24655 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ISP1240\0&quot; /* 1 refs @ 24663 */<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;ISP1280\0&quot; /* 1 refs @ 24671 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ISP21=
 00\0&quot; /* 1 refs @ 24679 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ISP4022\0&quot; /* 2 ref=
 s @ 24687 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;TOE\0&quot; /* 2 refs @ 24695 */<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;PWDOG1\0&quot; /* 1 refs @ 24699 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;8580\0&quot; /* 1 re=
 fs @ 24706 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;Virtio\0&quot; /* 64 refs @ 24711 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Crypto=
 Swift\0&quot; /* 1 refs @ 24718 */<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PKI\0&quot; /* 1 refs @ 24730 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp; &quot;RT2460A\0&quot; /* 1 refs @ 24734 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;RT2560\0&quot; /* =
 1 refs @ 24742 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;802.11b/g\0&quot; /* 4 refs @ 24749 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;RT2561S\0&quot; /* 1 refs @ 24759 */<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;RT2561\0&quot; /* =
 1 refs @ 24767 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;RT2661\0&quot; /* 1 refs @ 24774 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;RT3090\0&quot; /* 1 refs @ 24781 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;REX=
 \0&quot; /* 1 refs @ 24788 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-31/33\0&quot; /* 1 =
 refs @ 24792 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;R6040\0&quot; /* 1 refs @ 24802 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;8029\0&quot; /* 1 refs @ 24808 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;8139D\0&quot; /* 1 refs @ 24813 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;8100\0&quot; /* 1=
  refs @ 24819 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;8129\0&quot; /* 1 refs @ 24824 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;8100E/8101E/8102E\0&quot; /* 1 refs @ 24829 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;8138\0&quot; /* 1 refs @ 24847 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;8169SC/811=
 0SC\0&quot; /* 1 refs @ 24852 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;8168/8111\0&quot; /* 1 =
 refs @ 24866 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;8169/8110\0&quot; /* 1 refs @ 24876 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;RTL8188CE\0&quot; /* 1 refs @ 24886 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;802.11n\0=
 &quot; /* 1 refs @ 24896 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;8180\0&quot; /* 1 refs @ 24904 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;8185\0&quot; /* 1 refs @ 24909 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;802.11a/b/g\0&quot; /* 1 re=
 fs @ 24914 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;SH7780\0&quot; /* 1 refs @ 24926 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SH7785\=
 0&quot; /* 1 refs @ 24933 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5C465\0&quot; /* 1 refs @ 24940 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;5C466\0&quot; /* 1 refs @ 24946 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5C475\0&quot; =
 /* 1 refs @ 24952 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5C476\0&quot; /* 1 refs @ 24958 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;5C477\0&quot; /* 1 refs @ 24964 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5C=
 478\0&quot; /* 1 refs @ 24970 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5C551\0&quot; /* 1 refs @ 24976 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp; &quot;Bridge/Firewire\0&quot; /* 2 refs @ 24982 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5C552\0&qu=
 ot; /* 1 refs @ 24998 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5C592\0&quot; /* 1 refs @ 25004 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;Bridge/MS/SD/Firewire\0&quot; /* 2 refs @ 25010 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5C593\0&quot=
 ; /* 1 refs @ 25032 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;5C821\0&quot; /* 1 refs @ 25038 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;Bridge/MS/SD/MMC/SC\0&quot; /* 2 refs @ 25044 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5C822\0&quot; /*=
  1 refs @ 25064 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;5C832\0&quot; /* 1 refs @ 25070 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI=
 -SD/MMC/MMC+/MS/xD/Firewire\0&quot; /* 1 refs @ 25076 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5C843\0&q=
 uot; /* 1 refs @ 25107 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Bridge/SD/MMC/MMC+/MS/xD/Firewire\0&qu=
 ot; /* 2 refs @ 25113 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5C847\0&quot; /* 1 refs @ 25147 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;xD-Picture\0&quot; /* 1 refs @ 25153 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5C853\0&quot; /* 1 refs=
  @ 25164 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;Bridge/SD/MMC/MMC+/MS/xD/SC/Firewire\0&quot; /* 1 refs=
  @ 25170 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;5U230\0&quot; /* 1 refs @ 25207 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FireWire/S=
 D/MMC/xD/MS\0&quot; /* 1 refs @ 25213 */<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5U822\0&quot; /* 1 refs @=
  25235 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;5U823\0&quot; /* 1 refs @ 25241 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5U832\0&quot=
 ; /* 1 refs @ 25247 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;5C852\0&quot; /* 1 refs @ 25253 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;N2\0&quot; /* 1 refs @ 25259 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;2200\0&quot; /* 1 refs @ 25262 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; &quot;FDDI\0&quot; /* 1 refs @ 25267 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Xframe\0&quot; /* 1 =
 refs @ 25272 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;Xframe2\0&quot; /* 1 refs @ 25279 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Xfra=
 me3\0&quot; /* 1 refs @ 25287 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ViRGE\0&quot; /* 1 refs @ 25295 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp; &quot;Trio32\0&quot; /* 1 refs @ 25301 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Trio32/64\0&quot; /=
 * 1 refs @ 25308 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;Aurora64V+\0&quot; /* 1 refs @ 25318 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;Trio64UV+\0&quot; /* 1 refs @ 25329 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ViRGE/VX\0&quot; /* 1 re=
 fs @ 25339 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;868\0&quot; /* 1 refs @ 25348 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;86C928\0&quot; /* 1 refs @ 25352 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;86C864-0=
 \0&quot; /* 1 refs @ 25359 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(\&quot;Vision864\&quot;)\=
 0&quot; /* 4 refs @ 25368 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;86C864-1\0&quot; /* 1 refs =
 @ 25382 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;86C864-2\0&quot; /* 1 refs @ 25391 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;86C864-3\0&quot; /* 1 refs @ 25400 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;86C964=
 -0\0&quot; /* 1 refs @ 25409 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(\&quot;Vision964\&quot;=
 )\0&quot; /* 4 refs @ 25418 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;86C964-1\0&quot; /* 1 ref=
 s @ 25432 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;86C964-2\0&quot; /* 1 refs @ 25441 */<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;86C964-3\0&quot; /* 1 refs @ 25450 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;86C9=
 68-0\0&quot; /* 1 refs @ 25459 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(\&quot;Vision968\&quo=
 t;)\0&quot; /* 4 refs @ 25468 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;86C968-1\0&quot; /* 1 refs @ 2548=
 2 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;86C968-2\0&quot; /* 1 refs @ 25491 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;86C968-3\0&quo=
 t; /* 1 refs @ 25500 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Trio64V2/DX\0&quot; /* 1 refs @ 25509 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;Plato/PX\0&quot; /* 1 refs @ 25521 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;86C365\0&quot; /* 1 =
 refs @ 25530 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;Trio3D\0&quot; /* 1 refs @ 25537 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ViRGE=
 /DX\0&quot; /* 1 refs @ 25544 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ViRGE/GX2\0&quot; /* 1 refs @ 255=
 53 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;Trio3D/2X\0&quot; /* 1 refs @ 25563 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Savage3D\0&q=
 uot; /* 1 refs @ 25573 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Savage3D+MV\0&quot; /* 1 refs @ 25582 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;Savage4\0&quot; /* 1 refs @ 25594 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;ProSavage\0&quot; /* 1 refs @ 25602 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;KM133\0&quot; =
 /* 1 refs @ 25612 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ViRGE/MX\0&quot; /* 1 refs @ 25618 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;ViRGE/MXP\0&quot; /* 1 refs @ 25627 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;Savage/MX+MV\0&quot; /* 1 refs @ 25637 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Savage/MX=
 \0&quot; /* 1 refs @ 25650 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Savage/IX+MV\0&quot; /* 1 =
 refs @ 25660 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Savage/IX\0&quot; /* 1 refs @ 25673 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;Savage/IXC\0&quot; /* 1 refs @ 25683 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;Savage2000\0&quot; /* 1 refs @ 25694 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SonicVibes\0&q=
 uot; /* 1 refs @ 25705 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SafeXcel\0&quot; /* 1 refs @=
  25716 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;KS8920\0&quot; /* 1 refs @ 25725 */<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;QE1000\0&quot; /* 1 refs @ 25732 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FE1000\0&q=
 uot; /* 1 refs @ 25739 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Broadband\0&quot; /* 1 refs =
 @ 25746 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;CNB20-LE\0&quot; /* 2 refs @ 25756 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;PCI/AGP\0&quot; /* 6 refs @ 25765 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CNB30-L=
 E\0&quot; /* 1 refs @ 25773 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CNB20-HE\0&quot; /* 3 refs @ 25782 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;CIOB-X\0&quot; /* 1 refs @ 25791 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CMIC-HE\0&quot; /*=
  1 refs @ 25798 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;CNB30-HE\0&quot; /* 1 refs @ 25806 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;CMIC-LE\0&quot; /* 1 refs @ 25815 */<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CMIC-SL\0&quot; /* 1 refs @ =
 25823 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;HT1000\0&quot; /* 6 refs @ 25831 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CIOB-X2\0&qu=
 ot; /* 1 refs @ 25838 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;BCM5714/BCM5715\0&quot; /* 1 refs @ 25846=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;Integral\0&quot; /* 1 refs @ 25862 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CI=
 OB-E\0&quot; /* 1 refs @ 25871 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;HT2100\0&quot; /* 4=
  refs @ 25878 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;OSB4\0&quot; /* 2 refs @ 25885 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;CSB5\0&quot; /* 3 refs @ 25890 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;CSB6\0&quot; /* 5 refs @ 25895 */<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;HT1000SB\0&quot; /=
 * 1 refs @ 25900 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;HT-1000\0&quot; /* 3 refs @ 25909=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;IDE/RAID\0&quot; /* 2 refs @ 25917 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp; &quot;OSB4/CSB5\0&quot; /* 1 refs @ 25926 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ISA=
 /LPC\0&quot; /* 2 refs @ 25936 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;XIOAPIC\0&quot; /* =
 1 refs @ 25944 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Frodo4\0&quot; /* 1 refs @ 25952 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;Frodo8\0&quot; /* 1 refs @ 25959 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;IOC3\0&quot; /* 1 refs @ 25966 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PsiTech\0&quo=
 t; /* 1 refs @ 25971 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;RAD1\0&quot; /* 1 refs @ 2597=
 9 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;Tigon\0&quot; /* 1 refs @ 25984 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;STG\0&quot; /* 2 refs @ 25990 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;2000X\0&quo=
 t; /* 1 refs @ 25994 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;1764X\0&quot; /* 1 refs @ 260=
 00 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;BCM1250\0&quot; /* 2 refs @ 26006 */<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;LDT\0&quot; /* 1 refs @ 26014 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;REALmag=
 ic\0&quot; /* 1 refs @ 26018 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Hollywood-Plus\0&quot; /* 1 refs @=
  26028 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;MPEG-2\0&quot; /* 1 refs @ 26043 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;Cyber10x\0&quot; /* 17 refs @ 26050 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;16550\0&quot; /*=
  13 refs @ 26059 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;16650\0&quot; /* 12 refs @ 26065 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;16850\0&quot; /* 12 refs @ 26071 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fam=
 ily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;2S1P\0&quot=
 ; /* 6 refs @ 26077 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;4S\0&quot; /* 7 refs @ 26082 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Cy=
 ber20x\0&quot; /* 20 refs @ 26085 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;2P1S\0&quot; /* 3 refs @ 2609=
 4 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;8000\0&quot; /* 3 refs @ 26099 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;86C201\0&quot; /* =
 1 refs @ 26104 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;86C202\0&quot; /* 1 refs @ 26111 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;86C=
 205\0&quot; /* 1 refs @ 26118 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;85C503\0&quot; /* 1 refs @ 26125 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;or\0&quot; /* 1 refs @ 26132 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5597/5598\0&quot; /*=
  5 refs @ 26135 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;600\0&quot; /* 1 refs @ 26145 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Mngmt=
 \0&quot; /* 1 refs @ 26149 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;180\0&quot; /* 1 refs @ 26155 */<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;181\0&quot; /* 1 refs @ 26159 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;182\0&quot; /* 1 refs @ 261=
 63 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;183\0&quot; /* 1 refs @ 26167 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;190\0&quot; /* 1 r=
 efs @ 26171 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; &quot;191\0&quot; /* 1 refs @ 26175 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;300/305\0=
 &quot; /* 1 refs @ 26179 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;315\0&quot; /* 1 refs @ 26187 */<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;85C501\0&quot; /* 1 refs @ 26191 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;85C496=
 \0&quot; /* 1 refs @ 26198 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;530\0&quot; /* 2 refs @ 26=
 205 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;85C601\0&quot; /* 1 refs @ 26209 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;620\0&quot; /* 1 refs @ 26216 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;630\0&quot; /* 1 =
 refs @ 26220 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;633\0&quot; /* 1 refs @ 26224 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;635\0&quot; /* 1 refs @ 26228 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;640\0&quot=
 ; /* 1 refs @ 26232 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;645\0&quot; /* 1 refs @ 26236 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;646\0&quot; /* 1 refs @ 26240 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;648\=
 0&quot; /* 1 refs @ 26244 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;650\0&quot; /* 1 refs @ 262=
 48 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;651\0&quot; /* 1 refs @ 26252 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;652\0&quot; /* 1 refs @ 26256 */<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;655\0&quot; /* 1 refs=
  @ 26260 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; &quot;658\0&quot; /* 1 refs @ 26264 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;661\0&quot; /* 1 refs @ 26268 */<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;671\0&quot; /* =
 1 refs @ 26272 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;730\0&quot; /* 1 refs @ 26276 */<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;733\0&quot; /* 1 refs @ 26280 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;735\0&quo=
 t; /* 1 refs @ 26284 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;740\0&quot; /* 2 refs @ 26288 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;741\0&quot; /* 1 refs @ 26292 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;745=
 \0&quot; /* 1 refs @ 26296 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;746\0&quot; /* 1 refs @ 26=
 300 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;748\0&quot; /* 1 refs @ 26304 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;750\0&quot; /* 1 refs @ 26308 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;751\0&quot; /* 1 ref=
 s @ 26312 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;752\0&quot; /* 1 refs @ 26316 */<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;755\0&quot; /* 1 refs @ 26320 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;756\0&quot; /*=
  1 refs @ 26324 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;760\0&quot; /* 1 refs @ 26328 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;761\0&quot; /* 1 refs @ 26332 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;900\0&qu=
 ot; /* 1 refs @ 26336 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;961\0&quot; /* 1 refs @ 26340 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;962\0&quot; /* 1 refs @ 26344 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;96=
 3\0&quot; /* 1 refs @ 26348 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;964\0&quot; /* 1 refs @ 2=
 6352 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;965\0&quot; /* 1 refs @ 26356 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;966\0&quot; /* 1 refs @ 26360 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;968\0&quot; /* 1 re=
 fs @ 26364 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GUI\0&quot; /* 1 refs @ 26368 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;Accelerator+3D\0&quot; /* 1 refs @ 26372 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;6325\0&quot; /* 1 re=
 fs @ 26387 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;6326\0&quot; /* 1 refs @ 26392 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;7002\0&quot; /* 1 refs @ 26397 */<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;7012\0&quot; /* 1 ref=
 s @ 26402 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;7016\0&quot; /* 1 refs @ 26407 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;7018\0&quot; /* 1 refs @ 26412 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;7502\0&quo=
 t; /* 1 refs @ 26417 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DDE style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;audio\0&quot; /* 1 refs @ 26422 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DDE style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;Voyager\0&quot; /* 1 refs @ 26428 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDE sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;LynxEM\0&quot; /* 1 refs @ 26436 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DDE style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;LynxEM+\0&quot; /=
 * 1 refs @ 26443 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DDE style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Lynx3DM\0&quot; /* 1 refs @ 26451 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DDE style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;LynxE\0&quot; /* 2 refs @ 26459 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDE style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;Lynx3D\0&quot; /* 1 refs @ 26465 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DDE style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Lynx\0&quot; /* 1 r=
 efs @ 26472 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DDE style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FDC37C665\0&quot; /* 1 refs @ 26477 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DDE style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;FDC37C922\0&quot; /* 1 refs @ 26487 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;83C170\0&q=
 uot; /* 1 refs @ 26497 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(\&quot;EPIC/100\&quot;)\0&quot; /* 2 =
 refs @ 26504 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;83C175\0&quot; /* 1 refs @ 26517 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;SNP8023:\0&quot; /* 2 refs @ 26524 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;971\0&quot; /=
 * 1 refs @ 26533 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Classifier\0&quot; /* 2 refs @ 26537=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;PAX.ware\0&quot; /* 1 refs @ 26548 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Gb\0&quot; /* 1=
  refs @ 26557 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;CXD1947A\0&quot; /* 1 refs @ 26560 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CX=
 D3222\0&quot; /* 1 refs @ 26569 */<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCIO\0&quot; /* 3 refs @ 26577 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;=
 &nbsp;&quot;Ebus2\0&quot; /* 2 refs @ 26582 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Happy\0&quot; /* 1 =
 refs @ 26588 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;Meal\0&quot; /* 1 refs @ 26594 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(US\0&q=
 uot; /* 1 refs @ 26599 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;III)\0&quot; /* 3 refs @ 26603 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DDE style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;ERI\0&quot; /* 1 refs @ 26608 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDE style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GEM\0&qu=
 ot; /* 1 refs @ 26612 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DDE style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Simba\0&quot; /* 1 refs @ 26616=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DDE style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;BCM5821\0&quot; /* 1 refs @ 26622 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDE st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;psycho\0&quot; /* 1 refs @ 26630 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DDE style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;microSPARC\0&quo=
 t; /* 1 refs @ 26637 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DDE style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;IIep\0&quot; /* 1 refs @ 26648 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DDE style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;UltraSPARC\0&quot; /* 2 refs @ 26653 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDE s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;IIi\0&quot; /* 1 refs @ 26664 */<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DDE style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Cassini\0&quot; /*=
  1 refs @ 26668 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;IP100A\0&quot; /* 1 refs @ 26676 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ST=
 201\0&quot; /* 1 refs @ 26683 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ST1023\0&quot; /* 1 refs @ 26689 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;ST2021\0&quot; /* 1 refs @ 26696 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;Matrix\0&quot; /* 1 refs @ 26703 */<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;adapter\0&quot; /*=
  1 refs @ 26710 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SER5xxx\0&quot; /* 1 refs @ 26718 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;multiport\0&quot; /* 3 refs @ 26726 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp; &quot;PCI2S550\0&quot; /* 1 refs @ 26736 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SUN1888=
 \0&quot; /* 1 refs @ 26745 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;parallel\0&quot; /* 1 refs=
  @ 26753 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; &quot;NE-34\0&quot; /* 1 refs @ 26762 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;4S2P\0&quot; /* 1 refs @ 26768 */<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C101\0&quot; /* 2 refs @ 2677=
 3 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;82C103\0&quot; /* 1 refs @ 26780 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C105=
 \0&quot; /* 1 refs @ 26787 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;83C553\0&quot; /* 1 refs @=
  26794 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;SB16C1054\0&quot; /* 1 refs @ 26801 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;UARTs\0&quot; /* 2 refs @ 26811 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SB16C1058=
 \0&quot; /* 1 refs @ 26817 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FDDI-xP\0&quot; /* 1 refs =
 @ 26827 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DSV style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;GE\0&quot; /* 1 refs @ 26835 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;SK-9821\0&quot; /* 1 refs @ 26838 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SK-9DX1\0&quo=
 t; /* 1 refs @ 26846 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SK-9D21\0&quot; /* 1 refs @ 2685=
 4 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; &quot;1000BASE-T\0&quot; /* 1 refs @ 26862 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;SK-9D41\0&quot; /* 1 refs @ 26873 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;1000BASE-X=
 \0&quot; /* 1 refs @ 26881 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SK-9Sxx\0&quot; /* 1 re=
 fs @ 26892 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SK-9E21D/SK-9E22\0&quot; /* 1 refs @ 26=
 900 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;1000base-T\0&quot; /* 1 refs @ 26917 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;TC9021\0&quot; /* 2 refs @ 26928 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(alt\0&q=
 uot; /* 1 refs @ 26935 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ServerNet\0&quot; /* 1 refs =
 @ 26940 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;DC-290(M)\0&quot; /* 1 refs @ 26950 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;DC-690C\0&quot; /* 1 refs @ 26960 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;DC-315=
 /DC-395\0&quot; /* 1 refs @ 26968 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;TLAN\0&quot; /* 1 r=
 efs @ 26982 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;TVP4020\0&quot; /* 1 refs @ 26987 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;TSB12LV21\0&quot; /* 1 refs @ 26995 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;TS=
 B12LV22\0&quot; /* 1 refs @ 27005 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI4450\0&quot; /* =
 2 refs @ 27015 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI4410\0&quot; /* 2 refs @ 27023 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;TSB12LV23\0&quot; /* 1 refs @ 27031 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;TSB12LV26\0&quot; /* 1 refs @ 27041 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;TSB43AA22\0&quot=
 ; /* 1 refs @ 27051 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;TSB43AA22/A\0&quot; /* 1 refs @ 2=
 7061 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;TSB43AA23\0&quot; /* 1 refs @ 27073 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;TSB43AA21\0&quot; /* 1 refs @ 27083 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI44=
 51\0&quot; /* 2 refs @ 27093 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI4510\0&quot; /* 2 ref=
 s @ 27101 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI4520\0&quot; /* 2 refs @ 27109 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;PCI7[4-6]10\0&quot; /* 1 refs @ 27117 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PC=
 I7x21/7x11\0&quot; /* 5 refs @ 27129 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Cardbus\0&quot; =
 /* 4 refs @ 27142 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;FlashMedia\0&quot; /* 2 refs @ 27150 */<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;SM\0&quot; /* 1 refs @ 27161 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>=
 -&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI6515A\0&quot; /* 2 refs @ 2=
 7164 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;(Smart\0&quot; /* 2 refs @ 27173 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCIXX12\0&quo=
 t; /* 5 refs @ 27180 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Secure\0&quot; /* 2 refs @ 27188 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;ACX100A\0&quot; /* 1 refs @ 27195 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ACX100B\0&quot; /* 1 refs =
 @ 27203 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;ACX111\0&quot; /* 1 refs @ 27211 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI1130\0&=
 quot; /* 1 refs @ 27218 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI1031\0&quot; /* 1 refs @ 27226 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;PCI1131\0&quot; /* 1 refs @ 27234 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI1250\0&quot; /* 1=
  refs @ 27242 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;PCI1220\0&quot; /* 1 refs @ 27250 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI=
 1221\0&quot; /* 1 refs @ 27258 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI1210\0&quot; /* 1 refs @ 2726=
 6 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;PCI1450\0&quot; /* 1 refs @ 27274 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI1225\0&quot;=
  /* 1 refs @ 27282 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI1251\0&quot; /* 1 refs @ 27290 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;PCI1211\0&quot; /* 1 refs @ 27298 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI1251B\0&quot; /* 1 refs =
 @ 27306 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;PCI2030\0&quot; /* 1 refs @ 27315 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI2050\0=
 &quot; /* 1 refs @ 27323 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI7510\0&quot; /* 1 refs @ 27331 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;PCI7610\0&quot; /* 2 refs @ 27339 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI7410\0&quot; /* 1=
  refs @ 27347 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;Mode)\0&quot; /* 3 refs @ 27355 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI7[=
 46]10\0&quot; /* 2 refs @ 27361 */<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(SD/MMC\0&quot; /* 1 refs @ 273=
 72 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;(Memory\0&quot; /* 1 refs @ 27380 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI1410\0&quot=
 ; /* 1 refs @ 27388 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI1420\0&quot; /* 1 refs @ 27396 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;PCI1451\0&quot; /* 1 refs @ 27404 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI1421\0&quot; /* 1 refs =
 @ 27412 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;PCI1620\0&quot; /* 1 refs @ 27420 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI1520\0=
 &quot; /* 1 refs @ 27428 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI1510\0&quot; /* 1 refs @ 27436 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;PCI1530\0&quot; /* 1 refs @ 27444 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI1515\0&quot; /* 1=
  refs @ 27452 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;PCI2040\0&quot; /* 1 refs @ 27460 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI=
 -DSP\0&quot; /* 1 refs @ 27468 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI7420\0&quot; /* 1 r=
 efs @ 27476 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-Cardbus\0&quot; /* 1 refs @ 27484 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;PCI-010L\0&quot; /* 1 refs @ 27496 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;PCI-100L\0&quot; /* 1 refs @ 27505 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-110L\0&quot; =
 /* 1 refs @ 27514 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-200L\0&quot; /* 1 refs @ 27523 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;PCI-210L\0&quot; /* 1 refs @ 27532 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;PCI-200Li\0&quot; /* 1 refs @ 27541 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-400L\0=
 &quot; /* 1 refs @ 27551 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-800L\0&quot; /* 1 ref=
 s @ 27560 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-011H\0&quot; /* 1 refs @ 27569 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;PCI-x10H\0&quot; /* 1 refs @ 27578 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;PCI-100H\0&quot; /* 1 refs @ 27587 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-800H\0=
 &quot; /* 1 refs @ 27596 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-800H_1\0&quot; /* 1 r=
 efs @ 27605 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-200H\0&quot; /* 1 refs @ 27616 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;PCI-010HV2\0&quot; /* 1 refs @ 27625 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;PCI-200HV2\0&quot; /* 1 refs @ 27636 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;R4x0=
 0\0&quot; /* 1 refs @ 27647 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;TC35856F\0&quot; /* 1 =
 refs @ 27653 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(\&quot;Meteor\&quot;)\0&quot; /* 1 r=
 efs @ 27662 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Portege\0&quot; /* 1 refs @ 27673 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;Piccolo\0&quot; /* 4 refs @ 27681 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;ToPIC95\0&quot; /* 1 refs @ 27689 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ToPIC95B\0&=
 quot; /* 1 refs @ 27697 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ToPIC97\0&quot; /* 1 refs @ 27706 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;SanRemo?\0&quot; /* 1 refs @ 27714 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Triangle\0&quot; /* =
 1 refs @ 27723 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;Type-A\0&quot; /* 1 refs @ 27732 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ToP=
 IC100\0&quot; /* 1 refs @ 27739 */<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Infrared\0&quot; /=
 * 2 refs @ 27748 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Type\0&quot; /* 2 refs @ 27757 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;O\0&quot; /* 1 refs @ 27762 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;DO\0&quot; /* 1 refs @ 27764 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;TM8000\0&quot; /* 1 refs @ 27767 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;LongRun\0&quot; /* 1 refs @ 27774 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SDRAM\0&quot; /* =
 1 refs @ 27782 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;BIOS\0&quot; /* 1 refs @ 27788 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;4DWAVE\0&quot; /* 2 refs @ 27793 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;DX\0&quot; /* 1 refs @ 27800 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;NX\0&quot; /* 1 refs=
  @ 27803 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; &quot;CyberBlade\0&quot; /* 2 refs @ 27806 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;i7\0&quot; /* 1 refs @ 27817 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;TGUI\0&qu=
 ot; /* 8 refs @ 27820 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;9320\0&quot; /* 1 refs @ 27825 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;9350\0&quot; /* 1 refs @ 27830 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&quot=
 ;9360\0&quot; /* 1 refs @ 27835 */<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CYBER\0&quot; /* 3 re=
 fs @ 27840 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;9397\0&quot; /* 1 refs @ 27846 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;9397DVD\0&quot; /* 1 refs @ 27851 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;9525\0&=
 quot; /* 1 refs @ 27859 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;9420\0&quot; /* 1 refs @ 278=
 64 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;9440\0&quot; /* 1 refs @ 27869 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;9660\0&quot; /* 1 refs @ 27874 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;9680\0&quot; /* 1 r=
 efs @ 27879 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;9682\0&quot; /* 1 refs @ 27884 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;HPT343/345\0&quot; /* 1 refs @ 27889 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;HPT3=
 66/370/372\0&quot; /* 1 refs @ 27900 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;HPT372A\0&quot; =
 /* 1 refs @ 27915 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;HPT302\0&quot; /* 1 refs @ 27923 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;HPT371\0&quot; /* 1 refs @ 27930 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;HPT374\0&quot; /* 1 refs @ 27937 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;HPT372N\0&quot; /* =
 1 refs @ 27944 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;RocketRAID\0&quot; /* 2 refs @ 27952 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;2310\0&quot; /* 1 refs @ 27963 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;card\0&quot; /* 2 refs @ 27968 */<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;2720\0&quot; /* 1 ref=
 s @ 27973 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;Pyramid3D\0&quot; /* 1 refs @ 27978 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;TR25202\0&quot; /* 1 refs @ 27988 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ET40=
 00w32p\0&quot; /* 4 refs @ 27996 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DDE style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ET6000\0&quot; /* 1 =
 refs @ 28007 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DDE style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;UM82C881\0&quot; /* 1 refs @ 28014 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DDE style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;486\0&quot; /* 2 refs @ 28023 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDE style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;UM82C8=
 86\0&quot; /* 1 refs @ 28027 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;UM8673F\0&quot; /* 1 =
 refs @ 28036 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;UM8881\0&quot; /* 1 refs @ 28044 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;UM82C891\0&quot; /* 1 refs @ 28051 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;UM886A\0&quot; /* 1 refs @ 28060 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DDE style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;UM8886BF\0&quo=
 t; /* 1 refs @ 28067 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DDE style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;UM8710\0&quot; /* 1 refs @ 28076=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DDE style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;UM8886\0&quot; /* 1 refs @ 28083 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDE sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;UM8881F\0&quot; /* 1 refs @ 28090 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DDE style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-Host\0&quot;=
  /* 1 refs @ 28098 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;UM8886F\0&quot; /* 1 refs @ 281=
 07 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;UM8886A\0&quot; /* 1 refs @ 28115 */<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;UM8891A\0&quot; /* 1 refs @ 28123 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;UM90=
 17F\0&quot; /* 1 refs @ 28131 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;UM8886N\0&quot; /* 1=
  refs @ 28139 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;UM8891N\0&quot; /* 1 refs @ 28147 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; &quot;US201\0&quot; /* 1 refs @ 28155 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Voice\0&quot; /* 1 r=
 efs @ 28161 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; &quot;Internal\0&quot; /* 1 refs @ 28167 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDE =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;(WinModem)\0&quot; /* 1 refs @ 28176 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DDE style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;3CP5609\0&=
 quot; /* 1 refs @ 28187 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DDE style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;USR997902\0&quot; /* 1 refs =
 @ 28195 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;V292PBCPSC\0&quot; /* 1 refs @ 28205 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Am29K\=
 0&quot; /* 1 refs @ 28216 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Local\0&quot; /* 1 refs @ 28222 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;V292PBC\0&quot; /* 1 refs @ 28228 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;AMD290x0\0&quot; /* =
 1 refs @ 28236 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;V960PBC\0&quot; /* 1 refs @ 28245 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;V9=
 6DPC\0&quot; /* 1 refs @ 28253 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(Dual)\0&quot; /* 1 refs @ 28260=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;VT6305\0&quot; /* 1 refs @ 28267 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;K8M800\0&quot; /*=
  1 refs @ 28274 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DDE style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;K8T890\0&quot; /* 7 refs @ 28281 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DDE style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;KT880\0&quot; /* 6 refs @ 28288 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDE style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;K8H=
 TB\0&quot; /* 3 refs @ 28294 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT8363\0&quot; /* 2 refs @ 28300 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp; &quot;(Apollo\0&quot; /* 24 refs @ 28307 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;KT133)\0&quot; /*=
  2 refs @ 28315 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT3351\0&quot; /* 7 refs @ 28322 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;VT8371\0&quot; /* 2 refs @ 28329 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;KX=
 133)\0&quot; /* 2 refs @ 28336 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VX900\0&quot; /* 2 ref=
 s @ 28343 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;VT8501\0&quot; /* 2 refs @ 28349 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;MVP4)\0&quot; /* 2 refs @ 28356 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT82C505\=
 0&quot; /* 1 refs @ 28362 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(Pluto)\0&quot; /* 1 refs @=
  28371 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp;  &nbsp;&nbsp;&nbsp;&quot;VT82C561\0&quot; /* 1 refs @ 28379 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;VT82C586A\0&quot; /* 1 refs @ 28388 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT82C=
 576\0&quot; /* 1 refs @ 28398 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;3V\0&quot; /* 1 refs @ =
 28407 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;CX700\0&quot; /* 2 refs @ 28410 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;VT82C580\0&quot; /* 1 refs @ 28416 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VP)\0&quot=
 ; /* 1 refs @ 28425 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT82C586\0&quot; /* 3 refs @ 2842=
 9 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; &quot;VT8237A\0&quot; /* 4 refs @ 28438 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;VT82C595\0&quot; /* 2 refs @ 28446 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VP2)\0&quot; =
 /* 2 refs @ 28455 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT82C596A\0&quot; /* 1 refs @ 28460=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;VT82C597\0&quot; /* 2 refs @ 28470 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;VP3)\0&quot; /* 2 refs @ 28479 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT82C598\0&quot; =
 /* 2 refs @ 28484 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MVP3)\0&quot; /* 2 refs @ 28493 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;VT8605\0&quot; /* 2 refs @ 28499 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;ProMedia\0&quot; /* 2 refs @ 28506 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;133)\0&quot; =
 /* 2 refs @ 28515 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT82C686A\0&quot; /* 4 refs @ 28=
 520 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;VT82C691\0&quot; /* 1 refs @ 28530 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;Pro)\0&quot; /* 1 refs @ 28539 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT82=
 C693\0&quot; /* 1 refs @ 28544 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Plus)\0&quot; /* 1 =
 refs @ 28553 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT86C926\0&quot; /* 1 refs @ 28559 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;Amazon\0&quot; /* 1 refs @ 28568 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;PCI-Ethernet\0&quot; /* 1 refs @ 28575 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT82C=
 570M\0&quot; /* 2 refs @ 28588 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(Apollo)\0&quot; /*=
  2 refs @ 28598 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT8251\0&quot; /* 6 refs @ 28607 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;Port1\0&quot; /* 1 refs @ 28614 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;Port2\0&quot; /* 1 refs @ 28620 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VLINK\0&quot; /* 1 r=
 efs @ 28626 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT83C572\0&quot; /* 1 refs @ 28632 */<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; &quot;VT3043\0&quot; /* 1 refs @ 28641 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(Rhi=
 ne)\0&quot; /* 1 refs @ 28648 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT6306\0&quot; /* 1 ref=
 s @ 28656 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;VT6105M\0&quot; /* 1 refs @ 28663 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;(Rhine\0&quot; /* 3 refs @ 28671 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT8233/=
 VT8235\0&quot; /* 1 refs @ 28678 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT6102\0&quot; /* 1 =
 refs @ 28692 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MC-97\0&quot; /* 1 refs @ 28699 */<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;VT8233\0&quot; /* 1 refs @ 28705 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT8366=
 \0&quot; /* 2 refs @ 28712 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;KT266)\0&quot; /* 2 refs @=
  28719 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;CPU-PCI\0&quot; /* 3 refs @ 28726 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;VT8653\0&quot; /* 1 refs @ 28734 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;266T)\0&=
 quot; /* 1 refs @ 28741 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT8237\0&quot; /* 4 refs @ 2=
 8747 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;VT6105\0&quot; /* 1 refs @ 28754 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;VT612X\0&quot; /* 1 refs @ 28761 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(Velocity)\0&=
 quot; /* 1 refs @ 28768 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT8623\0&quot; /* 2 refs @ 2=
 8779 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;CLE266)\0&quot; /* 2 refs @ 28786 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;VT8233A\0&quot; /* 1 refs @ 28794 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT6410\0&q=
 uot; /* 1 refs @ 28802 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT6421\0&quot; /* 1 refs @ 2=
 8809 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;VT3314\0&quot; /* 1 refs @ 28816 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;CN900\0&quot; /* 1 refs @ 28823 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;UniChrome\0&qu=
 ot; /* 2 refs @ 28829 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT8237R\0&quot; /* 1 refs @ 288=
 39 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;VT8235\0&quot; /* 1 refs @ 28847 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;KT400)\0&quot; /* 1 refs @ 28854 */<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT8377\0&quot; =
 /* 2 refs @ 28861 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;Apollo\0&quot; /* 2 refs @ 28868 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;KT400\0&quot; /* 1 refs @ 28875 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>=
 -&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT8378\0&quot; /* 2 refs @ 288=
 81 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;KM400\0&quot; /* 2 refs @ 28888 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT8237A/VT8251\0=
 &quot; /* 1 refs @ 28894 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT8237A/VT82C586A\0&quot; /* 1 refs @ =
 28909 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;VT8237S\0&quot; /* 2 refs @ 28927 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fam=
 ily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CX700M2/VX7=
 00\0&quot; /* 1 refs @ 28935 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT86C100A\0&quot; /* 1 refs @ 2894=
 9 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;(Rhine-II)\0&quot; /* 1 refs @ 28959 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT8231\0&quo=
 t; /* 2 refs @ 28970 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VX800/VX820\0&quot; /* 1 refs @ 28977 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;CPU-AGP\0&quot; /* 7 refs @ 28989 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT8633\0&q=
 uot; /* 1 refs @ 28997 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;266)\0&quot; /* 1 refs @ 290=
 04 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;VT8377CE\0&quot; /* 1 refs @ 29009 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;Guest\0&quot; /* 1 refs @ 29018 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Service\0&quot=
 ; /* 1 refs @ 29024 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6000/6020/6050\0&quot; /* 1 re=
 fs @ 29032 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6000B/6010\0&quot; /* 1 refs @ 29050 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;GDT6110/6510\0&quot; /* 1 refs @ 29064 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;GDT6120/6520\0&quot; /* 1 refs @ 29077 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6530\=
 0&quot; /* 1 refs @ 29090 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6550\0&quot; /* 1 refs @=
  29098 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;GDT6117/6517\0&quot; /* 1 refs @ 29106 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;GDT6127/6527\0&quot; /* 1 refs @ 29119 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;GDT6537\0&quot; /* 1 refs @ 29132 */<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6557/6557-ECC\0=
 &quot; /* 1 refs @ 29140 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6115/6515\0&quot; /* 1 re=
 fs @ 29157 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6125/6525\0&quot; /* 1 refs @ 29170 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;GDT6535\0&quot; /* 1 refs @ 29183 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;GDT6555/6555-ECC\0&quot; /* 1 refs @ 29191 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6[15]1=
 7RP\0&quot; /* 1 refs @ 29208 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6[15]27RP\0&quot; /*=
  1 refs @ 29221 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6537RP\0&quot; /* 1 refs @ 29234 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;GDT6557RP\0&quot; /* 1 refs @ 29244 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;GDT6[15]11RP\0&quot; /* 1 refs @ 29254 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6[15]21=
 RP\0&quot; /* 1 refs @ 29267 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6[15]17RD\0&quot; /* =
 1 refs @ 29280 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6[5]127RD\0&quot; /* 1 refs @ 29293=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;GDT6537RD\0&quot; /* 1 refs @ 29306 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;GDT6557RD\0&quot; /* 1 refs @ 29316 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6[15]11=
 RD\0&quot; /* 1 refs @ 29326 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6[15]21RD\0&quot; /* =
 1 refs @ 29339 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6[156]18RD\0&quot; /* 1 refs @ 2935=
 2 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; &quot;GDT6[156]28RD\0&quot; /* 1 refs @ 29366 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;GDT6[56]38RD\0&quot; /* 1 refs @ 29380 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GD=
 T6[56]58RD\0&quot; /* 1 refs @ 29393 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6[15]17RP2\0&=
 quot; /* 1 refs @ 29406 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6[15]27RP2\0&quot; /* 1 r=
 efs @ 29420 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6537RP2\0&quot; /* 1 refs @ 29434 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;GDT6[15]11RP2\0&quot; /* 1 refs @ 29445 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;GDT6[15]21RP2\0&quot; /* 1 refs @ 29459 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6513R=
 S\0&quot; /* 1 refs @ 29473 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6523RS\0&quot; /* 1 re=
 fs @ 29483 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6518RS\0&quot; /* 1 refs @ 29493 */<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; &quot;GDT6x28RS\0&quot; /* 1 refs @ 29503 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;GDT6x38RS\0&quot; /* 1 refs @ 29513 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6x58RS\0&quot=
 ; /* 1 refs @ 29523 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6x33RS\0&quot; /* 1 refs @ 295=
 33 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;GDT6x43RS\0&quot; /* 1 refs @ 29543 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;GDT6x53RS\0&quot; /* 1 refs @ 29553 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6x63RS=
 \0&quot; /* 1 refs @ 29563 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT7x13RN\0&quot; /* 1 ref=
 s @ 29573 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT7x23RN\0&quot; /* 1 refs @ 29583 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;GDT7[156]18RN\0&quot; /* 1 refs @ 29593 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;GDT7[156]28RN\0&quot; /* 1 refs @ 29607 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT7[56]38=
 RN\0&quot; /* 1 refs @ 29621 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT7[56]58RN\0&quot; /* =
 1 refs @ 29634 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT7[56]43RN\0&quot; /* 1 refs @ 29647=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;GDT7x53RN\0&quot; /* 1 refs @ 29660 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;GDT7x63RN\0&quot; /* 1 refs @ 29670 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT4x13RZ\=
 0&quot; /* 1 refs @ 29680 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT4x23RZ\0&quot; /* 1 refs=
  @ 29690 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp; &nbsp;&nbsp;&quot;GDT8x13RZ\0&quot; /* 1 refs @ 29700 */<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;GDT8x23RZ\0&quot; /* 1 refs @ 29710 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT=
 8x33RZ\0&quot; /* 1 refs @ 29720 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT8x43RZ\0&quot; /*=
  1 refs @ 29730 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT8x53RZ\0&quot; /* 1 refs @ 29740 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;GDT8x63RZ\0&quot; /* 1 refs @ 29750 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;GDT6[56]19RD\0&quot; /* 1 refs @ 29760 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6[56]29=
 RD\0&quot; /* 1 refs @ 29773 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT7[56]19RN\0&quot; /* =
 1 refs @ 29786 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT7[56]29RN\0&quot; /* 1 refs @ 29799=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;ICP\0&quot; /* 1 refs @ 29812 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C592\0&q=
 uot; /* 1 refs @ 29816 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C593\0&quot; /* 1 refs @ 29823 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;82C594\0&quot; /* 1 refs @ 29830 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Wildcat\0&quot; /* 2 re=
 fs @ 29837 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C596/597\0&quot; /* 1 refs @ 29845 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;82C541\0&quot; /* 1 refs @ 29856 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C=
 543\0&quot; /* 1 refs @ 29863 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C532\0&quot; /* 1 ref=
 s @ 29870 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;82C534\0&quot; /* 1 refs @ 29877 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;82C535\0&quot; /* 1 refs @ 29884 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C147\0=
 &quot; /* 1 refs @ 29891 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C975\0&quot; /* 1 refs @ 2=
 9898 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;82C925\0&quot; /* 1 refs @ 29905 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;SVGA\0&quot; /* 2 refs @ 29912 */<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Machine\0&quot;=
  /* 1 refs @ 29917 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Communication\0&quot; /* 1 refs @ =
 29925 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; &quot;82545EM\0&quot; /* 1 refs @ 29939 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;82546EB\0&quot; /* 1 refs @ 29947 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;PVSCSI\0&quot; /* 1 refs @ 29955 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VMI\0&quot; /* 1=
  refs @ 29962 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;option\0&quot; /* 1 refs @ 29966 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;ROM\0&quot; /* 1 refs @ 29973 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;P9000\0&quot; /* 1 refs @ 29977 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;P9100\0&quot; /*=
  1 refs @ 29983 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;WD33C193A\0&quot; /* 1 refs @ 2998=
 9 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;WD33C196A\0&quot; /* 1 refs @ 29999 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;WD33C197A\0&q=
 uot; /* 1 refs @ 30009 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;WD7193\0&quot; /* 1 refs @ 30019 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;WD7197\0&quot; /* 1 refs @ 30026 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;WD33C296A\0&quot; /* 1 =
 refs @ 30033 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;WD34C296\0&quot; /* 1 refs @ 30043 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPL=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;90C\0&quot; /* 1 refs @ 30052 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPL style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;W83769F\0&quot; =
 /* 1 refs @ 30056 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPL style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;W83C553F\0&quot; /* 2 refs @ 30064 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPL style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;W83628F\0&quot; /* 1 refs @ 30073 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPL sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;W89C840F\0&quot; /* 1 refs @ 30081 */<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPL style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;W89C940F\0&quot=
 ; /* 2 refs @ 30090 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPL style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;W6692\0&quot; /* 1 refs @ 30099 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPL style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;NinjaSCSI-32UDE\0&quot; /* 5 refs @ 30105 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;(KME)\0&quot; /* 3 refs @ 30121 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(IO=
 DATA)\0&quot; /* 1 refs @ 30127 */<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(LOGITEC)\0&quot; =
 /* 1 refs @ 30136 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(LOGITEC2)\0&quot; /* 1 refs @ 3=
 0146 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;(BUFFALO)\0&quot; /* 2 refs @ 30157 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; &quot;CF32A\0&quot; /* 2 refs @ 30167 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CompactFlash\0&=
 quot; /* 1 refs @ 30173 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CF\0&quot; /* 1 refs @ 30186 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;NPATA-32\0&quot; /* 1 refs @ 30189 */<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPL style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Xen\0&quot; /* =
 1 refs @ 30198 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPL style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Platform\0&quot; /* 1 refs @ 30202 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPL style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;Volari\0&quot; /* 5 refs @ 30211 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPL style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;Z7/Z9/Z9s\0&quot; /* 1 refs @ 30218 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPL style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Z9m\0&quot; /* 1=
  refs @ 30228 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPL style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Z11/Z11M\0&quot; /* 1 refs @ 30232 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;V3XT/V5/V8\0&quot; /* 1 refs @ 30241 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;XP10\0&quot; /* 1 =
 refs @ 30252 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;X3201-3\0&quot; /* 2 refs @ 30257 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(211=
 43)\0&quot; /* 1 refs @ 30265 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;WinGlobal\0&quot; /* 1 refs @ 302=
 73 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;724\0&quot; /* 1 refs @ 30283 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;740C\0&quot; /* 1 refs @ 30287 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(DS-1)\0&quot; /* 2 =
 refs @ 30292 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;724F\0&quot; /* 1 refs @ 30299 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;744\0&quot; /* 1 refs @ 30304 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(DS-1S)\0&=
 quot; /* 1 refs @ 30308 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;754\0&quot; /* 1 refs @ 3031=
 6 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; &quot;(DS-1E)\0&quot; /* 1 refs @ 30320 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;1221\=
 0&quot; /* 1 refs @ 30328 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-ST32\0&quot; /* 1 refs @ 30333 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; &quot;ZR36057\0&quot; /* 1 refs @ 30342 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ZR36120\0&quot; /* =
 1 refs @ 30350 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;Centerton\0&quot; /* 1 refs @ 20446 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;Powerstorm\0&quot; /* 2 refs @ 20456 */<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;4D50T\0&quot; /=
 * 1 refs @ 20467 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;4D60T\0&quot; /* 1 refs @ 20473 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;PRISM2.5\0&quot; /* 1 refs @ 20479 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;PRISM\0&quot; /* 2 refs @ 20488 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Indigo\0&quot; /* 1 =
 refs @ 20494 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Duette\0&quot; /* 1 refs @ 20501 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;AEON\0&quot; /* 1 refs @ 20508 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CBIDE2/=
 CI-iCN\0&quot; /* 1 refs @ 20513 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;NinjaATA-32Bi\0&quot=
 ; /* 3 refs @ 20527 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CBSCII\0&quot; /* 1 refs @ 20541 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;NinjaSCSI-32Bi\0&quot; /* 3 refs @ 20548 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;RSA-PCI\0&quot; /* 1 refs @ 20563 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GV-BCTV=
 5DL/PCI\0&quot; /* 1 refs @ 20571 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&quot;TV\0&quot; /* 1 refs @ 20586 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;tuner\0&quot; /* 1 refs @ 20589 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;IT8152\0&quot; /* 1=
  refs @ 20595 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;IT8211\0&quot; /* 1 refs @ 20602 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;IT82=
 12\0&quot; /* 1 refs @ 20609 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;AGX016\0&quot; /* 1 refs @ 20616 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp; &quot;ITT3204\0&quot; /* 1 refs @ 20623 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;JMB360\0&quot; /* =
 1 refs @ 20631 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;JMB361\0&quot; /* 1 refs @ 20638 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;SATA/PATA\0&quot; /* 4 refs @ 20645 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;JMB362\0&q=
 uot; /* 1 refs @ 20655 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;JMB363\0&quot; /* 1 refs @ 20662 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;JMB365\0&quot; /* 1 refs @ 20669 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;JMB366\0&quot; /* 1 ref=
 s @ 20676 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;JMB368\0&quot; /* 1 refs @ 20683 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PATA\0&q=
 uot; /* 1 refs @ 20690 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;JMB38X\0&quot; /* 4 refs @ 20695 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;SD/MMC\0&quot; /* 4 refs @ 20702 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Stick\0&quot; /* 4 refs=
  @ 20709 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;xD\0&quot; /* 3 refs @ 20715 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;JMB388\0&quot=
 ; /* 4 refs @ 20718 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;JMC250\0&quot; /* 1 refs @ 20725 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;JMC260\0&quot; /* 1 refs @ 20732 */<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;JNIC-1460\0&quot; /* 1 refs =
 @ 20739 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;Fibre-Channel\0&quot; /* 5 refs @ 20749 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;JNI=
 C-1560\0&quot; /* 1 refs @ 20763 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>=
 +&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FCI-1063\0&quot; /* 1 refs @ 2=
 0773 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;FCX2-6562\0&quot; /* 1 refs @ 20782 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FCX-6562\0=
 &quot; /* 1 refs @ 20792 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Experimental\0&quot; /* 1 re=
 fs @ 20801 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Clock\0&quot; /* 1 refs @ 20814 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;Version\0&quot; /* 1 refs @ 20820 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;0\0&quo=
 t; /* 2 refs @ 20828 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;HSSI\0&quot; /* 1 refs @ 20830 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;DS3\0&quot; /* 1 refs @ 20835 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SS=
 I\0&quot; /* 1 refs @ 20839 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;DS1\0&quot; /* 1 refs @ 2=
 0843 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;805\0&quot; /* 1 refs @ 20847 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;LXT-10=
 01\0&quot; /* 1 refs @ 20851 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;DVB\0&quot; /* 2 refs @ 20860 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;Transmitter\0&quot; /* 1 refs @ 20864 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Receiver\0&quot; =
 /* 1 refs @ 20876 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;EG1032\0&quot; /* 1 refs @ 20885 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;v2\0&quot; /* 2 refs @ 20892 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Inst=
 ant\0&quot; /* 2 refs @ 20895 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;EG1064\0&quot; /* 1 ref=
 s @ 20903 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;PCMPC200\0&quot; /* 1 refs @ 20910 */<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;IPN\0&quot; /* 1 refs @ 20919 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;2220\0&quot; /* 1 r=
 efs @ 20923 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; &quot;(rev\0&quot; /* 1 refs @ 20928 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;01)\0&qu=
 ot; /* 1 refs @ 20933 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C168/82C169\0&quot; /* 1 refs @ 20937 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp; &quot;(PNIC)\0&quot; /* 1 refs @ 20951 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C115\0&quot; /* 1=
  refs @ 20958 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;(PNIC\0&quot; /* 1 refs @ 20965 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;II)\0=
 &quot; /* 2 refs @ 20971 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;K56flex\0&quot; /* 2 refs @ 20975 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;DSVD\0&quot; /* 1 refs @ 20983 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;LTMODEM\0&quot; /* 26 re=
 fs @ 20988 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Venus\0&quot; /* 1 refs @ 20996 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;ORCA\0&quot; /* 2 refs @ 21002 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FPGA\0&quo=
 t; /* 2 refs @ 21007 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;32-bit\0&quot; /* 1 refs @ 21012 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;ASIC\0&quot; /* 2 refs @ 21019 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;64-bit\0&quot; /* 1 refs @ 21=
 024 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; &quot;FW322/323\0&quot; /* 1 refs @ 21031 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fam=
 ily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FW643\0&quo=
 t; /* 1 refs @ 21041 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;1394b\0&quot; /* 1 refs @ 21047 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;ET1310\0&quot; /* 1 refs @ 21053 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ET1301\0=
 &quot; /* 1 refs @ 21060 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MX98713\0&quot; /* 1 refs @ =
 21067 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;(PMAC)\0&quot; /* 2 refs @ 21075 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;MX987x5\0&quot; /* 1 refs @ 21082 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Ringnode\0=
 &quot; /* 1 refs @ 21090 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Mk2\0&quot; /* 1 refs @ 2109=
 9 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; &quot;Collage\0&quot; /* 2 refs @ 21103 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;155\0&quot; /* 2 refs @ 21111 */<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-SLRS\0&quot; /=
 * 2 refs @ 21115 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;MGA\0&quot; /* 14 refs @ 21124 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PX2=
 085\0&quot; /* 1 refs @ 21128 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(\&quot;Atlas\&quot;)\0&quot; /* =
 1 refs @ 21135 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;Millennium\0&quot; /* 3 refs @ 21145 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;2064W\0&quot; /* 1 refs @ 21156 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(\&quot;Storm\&quot;=
 )\0&quot; /* 1 refs @ 21162 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Mystique\0&quot; /* 1 ref=
 s @ 21172 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;1064SG\0&quot; /* 1 refs @ 21181 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPL style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;2164W\0&quot; /* 1 refs @ 21188 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPL style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;2164WA-B\=
 0&quot; /* 1 refs @ 21194 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;G200\0&quot; /* 2 refs @ 21203 */<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;G200e\0&quot; /* 1 refs @ 21208 */<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(ServerEngines)\0&quot; /=
 * 1 refs @ 21214 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;G400\0&quot; /* 1 refs @ 21230 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;G20=
 0eW\0&quot; /* 1 refs @ 21235 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Impression\0&quot; /* 1 refs @ 21=
 242 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; &quot;G100\0&quot; /* 2 refs @ 21253 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;G550\0&quot; /* =
 1 refs @ 21258 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;MQ200\0&quot; /* 1 refs @ 21263 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;InfiniHost\0&quot; /* 6 refs @ 21269 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(Tavor)\0&=
 quot; /* 2 refs @ 21280 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Lx\0&quot; /* 2 refs @ 21288=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;(old\0&quot; /* 1 refs @ 21291 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;Sinai)\0&quot; /* 1 refs @ 21296 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(Sinai)\0&quot; /* =
 1 refs @ 21303 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Ex\0&quot; /* 2 refs @ 21311 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DDE style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;(Arbel\0&quot; /* 1 refs @ 21314 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDE style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;in\0&qu=
 ot; /* 1 refs @ 21321 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DDE style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Tavor\0&quot; /* 1 refs @ 21324=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;compatility)\0&quot; /* 1 refs @ 21330 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fam=
 ily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(Arbel)\0&q=
 uot; /* 1 refs @ 21343 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ConnectX\0&quot; /* 7 refs @ 21351 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;SDR\0&quot; /* 1 refs @ 21360 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(Hermon)\0&quot; /* 7 re=
 fs @ 21364 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;DDR\0&quot; /* 3 refs @ 21373 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;QDR\0&quot=
 ; /* 2 refs @ 21377 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCIe\0&quot; /* 8 refs @ 21381 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;2.5GT/s\0&quot; /* 2 refs @ 21386 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;EN\0&quot; /* 2 refs @ 21394 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;10GigE\0&quot; /* 2 ref=
 s @ 21397 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;5GT/s\0&quot; /* 3 refs @ 21404 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;MM-5415CN\0&quot; /* 1 refs @ 21410 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MM-54=
 25CN\0&quot; /* 1 refs @ 21420 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MN-120\0&quot; /* 1 refs @ 21430=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;Switched\0&quot; /* 1 refs @ 21437 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Weasel\0&quot; =
 /* 3 refs @ 21446 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Tornado\0&quot; /* 1 refs @ 2145=
 3 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;MPC105\0&quot; /* 1 refs @ 21461 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; &quot;\&quot;Eagle\&quot;\0&quot; /* 1 refs @ 21468 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MPC106\=
 0&quot; /* 1 refs @ 21476 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;\&quot;Grackle\&quot;\0&quot; /* 1 re=
 fs @ 21483 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;MPC8240\0&quot; /* 1 refs @ 21493 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;\&quot=
 ;Kahlua\&quot;\0&quot; /* 1 refs @ 21501 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MPC107\0&quot; /* 1 =
 refs @ 21510 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;\&quot;Chaparral\&quot;\0&quot; /* 1 refs @ 21517 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;MPC8245\0&quot; /* 1 refs @ 21529 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;\&quot;Kahlua\0&q=
 uot; /* 1 refs @ 21537 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;II\&quot;\0&quot; /* 1 refs @ 21545 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; &quot;MPC8555E\0&quot; /* 1 refs @ 21549 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MPC8541\0&quot; /*=
  1 refs @ 21558 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;Raven\0&quot; /* 1 refs @ 21566 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Mul=
 ti-Processor\0&quot; /* 1 refs @ 21572 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Falcon\0&quot; /* 1 refs=
  @ 21588 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;ECC\0&quot; /* 1 refs @ 21595 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Set\0&quot; =
 /* 1 refs @ 21599 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;Hawk\0&quot; /* 1 refs @ 21603 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MP=
 C5200B\0&quot; /* 1 refs @ 21608 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>=
 +&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CP102U\0&quot; /* 1 refs @ 216=
 17 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;C104H\0&quot; /* 1 refs @ 21624 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CP104UL\0&quot; =
 /* 1 refs @ 21630 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;CP104V2\0&quot; /* 1 refs @ 21638 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;CP104EL\0&quot; /* 1 refs @ 21646 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CP114\0=
 &quot; /* 1 refs @ 21654 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;C168H\0&quot; /* 1 refs @ 21=
 660 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;C168U\0&quot; /* 1 refs @ 21666 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;C168EL\0&quot; /* 2 refs @ 21672 */<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MV1000\0&quot; =
 /* 1 refs @ 21679 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DES style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;DAC960\0&quot; /* 4 refs @ 21686 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;(v2\0&quot; /* 1 refs @ 21693 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Int=
 erface)\0&quot; /* 4 refs @ 21697 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(v3\0&quot; /* 1 re=
 fs @ 21708 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(v4\0&quot; /* 1 refs @ 21712 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DES style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;(v5\0&quot; /* 1 refs @ 21716 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DES style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;eXtremeRAI=
 D\0&quot; /* 4 refs @ 21720 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DES style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;AcceleRAID\0&quot; /* 3 r=
 efs @ 21732 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;352\0&quot; /* 1 refs @ 21743 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;170\0&quot; /* 1 refs @ 21747 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;160\0&quot=
 ; /* 1 refs @ 21751 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;1100\0&quot; /* 2 refs @ 21755 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;2000/3000\0&quot; /* 1 refs @ 21760 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MTD803\=
 0&quot; /* 1 refs @ 21770 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;3-in-1\0&quot; /* 1 refs @ 21777 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;NCP130\0&quot; /* 2 refs @ 21784 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;A2\0&quot; /* 1 refs=
  @ 21791 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;NSP2K\0&quot; /* 1 refs @ 21794 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Policy\0&q=
 uot; /* 1 refs @ 21800 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;XLP\0&quot; /* 27 refs @ 21807 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;controller\0&quot; /* 17 refs @ 21811 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Inter-Chip\0&quot; /=
 * 1 refs @ 21822 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;interconnect\0&quot; /* 1 refs @ 21833 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;PCI-Express\0&quot; /* 7 refs @ 21846 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;RootComplex/Endpoint=
 \0&quot; /* 1 refs @ 21858 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Interlaken\0&quot; /* 1 refs @ 21879=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;LA\0&quot; /* 1 refs @ 21890 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;interface\0&quot; /*=
  2 refs @ 21893 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;Acceleration\0&quot; /* 1 refs @ 21903 */<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;engine\0&quot; /* 4 refs @ 21916 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Ordering\0&quot; /* 1 refs=
  @ 21923 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;Messaging\0&quot; /* 1 refs @ 21932 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Transf=
 er\0&quot; /* 1 refs @ 21942 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;accelerator\0&quot; /* 3 refs @ 21=
 951 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; &quot;RSA/ECC\0&quot; /* 1 refs @ 21963 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Compress/Deco=
 mpression\0&quot; /* 1 refs @ 21971 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;JTAG\0&quot; /* 1 refs @ 21=
 994 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; &quot;NOR\0&quot; /* 1 refs @ 21999 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;flash\0&quot; /* =
 2 refs @ 22003 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;NAND\0&quot; /* 1 refs @ 22009 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;eMMC/=
 SD/SDIO\0&quot; /* 1 refs @ 22014 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Regular\0&quot; /* 1 refs @ 2=
 2027 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;Expression\0&quot; /* 1 refs @ 22035 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SRIO\0&qu=
 ot; /* 1 refs @ 22046 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(Serial\0&quot; /* 1 refs @ 22051 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;Rapid\0&quot; /* 1 refs @ 22059 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;IO)\0&quot; /* 1 refs @ 22=
 065 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; &quot;Universe\0&quot; /* 1 refs @ 22069 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VME\0&quot; =
 /* 1 refs @ 22078 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;QSpan\0&quot; /* 1 refs @ 22082 */<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;PowerSpan\0&quot; /* 2 refs @ 22088 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MXI-3\0&quot; /* 1 refs @ =
 22098 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;Extender\0&quot; /* 1 refs @ 22104 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;DP83810\0&=
 quot; /* 1 refs @ 22113 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PC87415\0&quot; /* 1 refs @ 22121 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;87560\0&quot; /* 1 refs @ 22129 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Legacy\0&quot; /* 1 ref=
 s @ 22135 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;DP83815\0&quot; /* 1 refs @ 22142 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;DP83820=
 \0&quot; /* 1 refs @ 22150 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CS5535\0&quot; /* 6 refs @ 22158 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;Saturn\0&quot; /* 1 refs @ 22165 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SC1100\0&quot; /* 5 =
 refs @ 22172 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;XpressAUDIO\0&quot; /* 1 refs @ 22179 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;SMI/ACPI\0&quot; /* 1 refs @ 22191 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;X-Bus\0&=
 quot; /* 1 refs @ 22200 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;NS87410\0&quot; /* 1 refs @ 22206 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;SAA7130HL\0&quot; /* 1 refs @ 22214 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Broadcast\0&quot; /=
 * 4 refs @ 22224 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;SAA7133HL\0&quot; /* 1 refs @ 22234 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;A/V\0&quot; /* 3 refs @ 22244 */<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SAA7134HL\0&quot; /* 1 refs @ 2=
 2248 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DFI style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;SAA7135HL\0&quot; /* 1 refs @ 22258 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFI style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;SAA7146AH\0&quot; /* 1 refs @ 22268 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFI style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;53c81=
 0\0&quot; /* 1 refs @ 22278 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;53c820\0&quot; /* 1 refs =
 @ 22285 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;53c825\0&quot; /* 1 refs @ 22292 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;53c815\0&quot; /* 1 refs @ 22299 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;53c810AP=
 \0&quot; /* 1 refs @ 22306 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;53c860\0&quot; /* 1 refs @=
  22315 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;53c1510D\0&quot; /* 1 refs @ 22322 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;53c896\0&quot; /* 1 refs @ 22331 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;53c895\0=
 &quot; /* 1 refs @ 22338 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;53c885\0&quot; /* 1 refs @ 2=
 2345 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;53c875/876\0&quot; /* 1 refs @ 22352 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;53c1510\0&quot; /* 1 refs @ 22363 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;53c895A=
 \0&quot; /* 1 refs @ 22371 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;53c875A\0&quot; /* 1 refs =
 @ 22379 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;53c1010\0&quot; /* 2 refs @ 22387 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;(66MHz)\0&quot; /* 1 refs @ 22395 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;53c1020=
 /53c1030\0&quot; /* 1 refs @ 22403 */<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;53c1030R\0&quot; /=
 * 1 refs @ 22419 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;53c1030ZC\0&quot; /* 1 refs @ 22428 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;53c1035\0&quot; /* 1 refs @ 22438 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;53c1035ZC\0&quot; /* 1 refs @ 22446 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SAS10=
 64\0&quot; /* 1 refs @ 22456 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SAS1068\0&quot; /* 2 =
 refs @ 22464 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SAS1064E\0&quot; /* 2 refs @ 22472 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;SAS1068E\0&quot; /* 2 refs @ 22481 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;SAS1066E\0&quot; /* 1 refs @ 22490 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SAS2208=
 \0&quot; /* 7 refs @ 22499 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SAS1064A\0&quot; /* 1 r=
 efs @ 22507 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SAS1066\0&quot; /* 1 refs @ 22516 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;SAS1078\0&quot; /* 2 refs @ 22524 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;SAS2116\0&quot; /* 2 refs @ 22532 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SAS2308\0&q=
 uot; /* 3 refs @ 22540 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SAS2004\0&quot; /* 1 refs=
  @ 22548 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SAS2008\0&quot; /* 2 refs @ 22556 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;SAS2108\0&quot; /* 5 refs @ 22564 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;CRYPTO\0&quot; /* 1 refs @ 22572 */<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GEN2\0&quot; /* 2 =
 refs @ 22579 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SAS1078DE\0&quot; /* 1 refs @ 22584 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;53c875J\0&quot; /* 1 refs @ 22594 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fam=
 ily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FC909\0&quo=
 t; /* 1 refs @ 22602 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FC909A\0&quot; /* 1 refs @ 22608 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;&qu=
 ot;FC929\0&quot; /* 2 refs @ 22615 */<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FC919\0&quot; /* 2 refs @ 22=
 621 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;FC929X\0&quot; /* 1 refs @ 22627 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;FC919X\0&quot; /* 1 refs @ 22634 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FC949X\0&quot;=
  /* 1 refs @ 22641 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FC939X\0&quot; /* 1 refs @ 22648 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;FC949E\0&quot; /* 1 refs @ 22655 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;Megaraid\0&quot; /* 3 refs @ 22662 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;320-X\0&quot; =
 /* 1 refs @ 22671 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;320-E\0&quot; /* 1 refs @ 22677 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;(300-6X/300-8X)\0&quot; /* 1 refs @ 22683 */<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;Verde\0&quot; /* 1 refs @ 22699 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;ZCR\0&quot; /* 1 refs @ 22705 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;4/SC\0&quot; /* 1 r=
 efs @ 22709 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;G-NIC\0&quot; /* 2 refs @ 22714 */<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;Tools\0&quot; /* 1 refs @ 22720 */<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VRC4173\0&quot; /* 3 refs=
  @ 22726 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;PC-Card\0&quot; /* 1 refs @ 22734 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Unit\0&q=
 uot; /* 5 refs @ 22742 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PowerVR\0&quot; /* 1 refs @ 22747 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;PCX2\0&quot; /* 1 refs @ 22755 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;uPD72872\0&quot; /* 1 re=
 fs @ 22760 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;PK-UG-X001\0&quot; /* 1 refs @ 22769 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PK-=
 UG-X008\0&quot; /* 1 refs @ 22780 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Bus\0&quot; /* 3 refs @ 22791=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;uPD72870\0&quot; /* 1 refs @ 22795 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;uPD72871\0&quot=
 ; /* 1 refs @ 22804 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPL style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;uPD720400\0&quot; /* 1 refs @ 228=
 13 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPL style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;PCI/PCI-X\0&quot; /* 3 refs @ 22823 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;Versa\0&quot; /* 2 refs @ 22833 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VA26D\0&quot;=
  /* 1 refs @ 22839 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MagicGraph\0&quot; /* 4 refs @ 228=
 45 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;NM2070\0&quot; /* 1 refs @ 22856 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;128V\0&quot; /* 1 refs @ 22863 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;128ZV\0&quot; /* =
 1 refs @ 22868 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;128XD\0&quot; /* 1 refs @ 22874 */<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; &quot;MagicMedia\0&quot; /* 5 refs @ 22880 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;256AV\0&quot; /* 2 refs @ 22891 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;256ZX\0&quot; /* 2 r=
 efs @ 22897 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;256XL+\0&quot; /* 1 refs @ 22903 */<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DNL style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;NET2280\0&quot; /* 1 refs @ 22910 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DNL style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;NET22=
 82\0&quot; /* 1 refs @ 22918 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DNL style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GA620\0&quot; /* 2 refs =
 @ 22926 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;MA301\0&quot; /* 1 refs @ 22932 */<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;1284\0&quot; /* 6 refs @ 22938 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Printer\0&quo=
 t; /* 6 refs @ 22943 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&quot;9855\0&quot; /* 1 refs @ 22951 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;9865\0&quot; /* 1 refs @ 22956 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;MCS9990\0&quot; /* 1 refs @ 22961 */<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;NX82C501\0&quot; /=
 * 1 refs @ 22969 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;NDR4600\0&quot; /* 1 refs @ 22978 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;Baystack\0&quot; /* 1 refs @ 22986 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;21\0&quot; /* 1 refs @ 2299=
 5 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; &quot;(Accton\0&quot; /* 1 refs @ 22998 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;EN5038)\0&quot; /* 1 refs @ 23006 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Imagine-128\0&=
 quot; /* 2 refs @ 23014 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;RIVA\0&quot; /* 4 refs @ 230=
 26 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;TNT\0&quot; /* 1 refs @ 23031 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;TNT2\0&quot; /* 4 refs @ 23035 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Vanta\0&quot; /* 1 r=
 efs @ 23040 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Model\0&quot; /* 1 refs @ 23046 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;64\0&quot; /* 1 refs @ 23052 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MCP04\0&qu=
 ot; /* 7 refs @ 23055 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GeForce\0&quot; /* 40 refs @ 23=
 061 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;6800\0&quot; /* 4 refs @ 23069 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;GT\0&quot; /* 4 refs @ 23074 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;nForce4\0&quot; /* 1=
 4 refs @ 23077 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ATA133\0&quot; /* 13 refs @ 23085 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;nForce2\0&quot; /* 27 refs @ 23092 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;MCP-T\0&quot; /* 4 refs @ 23100 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;400\0&quot; /* 10 re=
 fs @ 23106 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Aladdin\0&quot; /* 1 refs @ 23110 */<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;nForce3\0&quot; /* 23 refs @ 23118 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;250\=
 0&quot; /* 12 refs @ 23126 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Quadro\0&quot; /* 13 refs =
 @ 23130 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FX\0&quot; /* 23 refs @ 23137 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;Quadro4\0&quot; /* 11 refs @ 23140 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;280\0&quot; /* 2 refs @ 23148 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;NVS\0&quot; /* 3 refs =
 @ 23152 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;1300\0&quot; /* 1 refs @ 23156 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;PCX\0&quot; /* 1 refs @ 23161 */<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;4300\0&quot; /*=
  1 refs @ 23165 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;256\0&quot; /* 1 refs @ 23170 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;GeForce2\0&quot; /* 7 refs @ 23174 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MX\=
 0&quot; /* 10 refs @ 23183 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;100/200\0&quot; /* 1 refs =
 @ 23186 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;Go\0&quot; /* 5 refs @ 23194 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;Quadro2\0&quot; /* 2 refs @ 23197 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MXR/EX\0&quot=
 ; /* 1 refs @ 23205 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;6600\0&quot; /* 5 refs @ 23212 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;6610\0&quot; /* 1 refs @ 23217 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;55=
 00\0&quot; /* 1 refs @ 23222 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;540\0&quot; /* 2 refs @ =
 23227 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;GTS\0&quot; /* 4 refs @ 23231 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;(DDR)\0&quot; /* 1 refs @ 23235 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;6200TC\0&quot; /=
 * 1 refs @ 23241 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;6200LE\0&quot; /* 1 refs @ 23248 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;GeForce4\0&quot; /* 15 refs @ 23255 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;460\0&quot; /* 1 refs @ 23264 */<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;440\0&quot; /* 4 refs=
  @ 23268 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; &quot;420\0&quot; /* 2 refs @ 23272 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;SE\0&quot; /* 4 refs @ 23276 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;500XGL\0&quot; /=
 * 1 refs @ 23279 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;200/400NVS\0&quot; /* 1 refs @ 23286=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;(AGP8X)\0&quot; /* 4 refs @ 23297 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;580\0&quot; /* 1 refs @ 23305 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;XGL\0&quot; /* 4 re=
 fs @ 23309 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;380\0&quot; /* 1 refs @ 23313 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;4600\0&quot; /* 2 refs @ 23317 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;nForce\0&q=
 uot; /* 153 refs @ 23322 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MCP\0&quot; /* 1 refs @ 2332=
 9 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; &quot;Xbox\0&quot; /* 3 refs @ 23333 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;ATA100\0&quot; /* 1 refs @ 23338 */<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;7300\0&quot; /* 1 =
 refs @ 23345 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GeForce3\0&quot; /* 3 refs @ 23350 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;Ti\0&quot; /* 10 refs @ 23359 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;500\0&=
 quot; /* 2 refs @ 23362 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;DCC\0&quot; /* 1 refs @ 2336=
 6 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; &quot;6150\0&quot; /* 2 refs @ 23370 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;4400\0&quot; /* 1 refs @ 23375 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;4200\0&quot; /* 3 re=
 fs @ 23380 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;900XGL\0&quot; /* 1 refs @ 23385 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;750XGL\0&quot; /* 1 refs @ 23392 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;700XGL\=
 0&quot; /* 1 refs @ 23399 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;nForce430\0&quot; /* 14 ref=
 s @ 23406 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;C51\0&quot; /* 18 refs @ 23416 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;4800\0&quot; /* 2 refs @ 23420 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;8x\0&quot;=
  /* 1 refs @ 23425 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;980\0&quot; /* 1 refs @ 23428 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;780\0&quot; /* 1 refs @ 23432 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;1500\0&quot; /*=
  1 refs @ 23436 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;Frame\0&quot; /* 1 refs @ 23441 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Buf=
 fer\0&quot; /* 1 refs @ 23447 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(0x02f0)\0&quot; /* 1 refs @ 2345=
 4 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;(0x02f1)\0&quot; /* 1 refs @ 23463 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&quot;(0x02f2)\0&quo=
 t; /* 1 refs @ 23472 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(0x02f3)\0&quot; /* 1 refs @ 23481 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;(0x02f4)\0&quot; /* 1 refs @ 23490 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(0x02f5)\0&quot; /* 1 r=
 efs @ 23499 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; &quot;(0x02f6)\0&quot; /* 1 refs @ 23508 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(0x0=
 2f7)\0&quot; /* 1 refs @ 23517 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(0x02fb)\0&quot; /* 1 refs @ 235=
 26 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;(0x02fc)\0&quot; /* 1 refs @ 23535 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(0x02fd)\0&qu=
 ot; /* 1 refs @ 23544 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(0x02ff)\0&quot; /* 1 refs @ 23553 */<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; &quot;5800\0&quot; /* 2 refs @ 23562 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5200\0=
 &quot; /* 2 refs @ 23567 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5200SE\0&quot; /* 1 refs @ 2=
 3572 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp; &nbsp;&quot;5900\0&quot; /* 2 refs @ 23579 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;5900XT\0&quot; /* 1 refs @ 23584 */<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5950\0&quot; /*=
  1 refs @ 23591 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5700\0&quot; /* 1 refs @ 23596 */<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; &quot;MCP55\0&quot; /* 17 refs @ 23601 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;16x\=
 0&quot; /* 2 refs @ 23607 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;7600\0&quot; /* 1 refs @ 23=
 611 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;MCP61\0&quot; /* 20 refs @ 23616 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;8600\0&quot; /* 2 refs @ 23622 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;8400M\0&quot; /*=
  1 refs @ 23627 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GS\0&quot; /* 2 refs @ 23633 */<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;140M\0&quot; /* 1 refs @ 23636 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MCP65\0&=
 quot; /* 31 refs @ 23641 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-LPC\0&quot; /* 7 refs @ =
 23647 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;MCP67\0&quot; /* 20 refs @ 23655 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;MCP73\0&quot; /* 20 refs @ 23661 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;8400\0&quo=
 t; /* 1 refs @ 23667 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MCP77\0&quot; /* 21 refs @ 23672=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;MCP78S\0&quot; /* 1 refs @ 23678 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;210\0&quot; /* 1 refs @ 23685 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MCP79\0&quot; /* 17 =
 refs @ 23689 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GTX\0&quot; /* 1 refs @ 23695 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;550\0&quot; /* 2 refs @ 23699 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Riva\0&quo=
 t; /* 1 refs @ 23703 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;OTI107\0&quot; /* 1 refs @ 23708=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;OC-3136/3137\0&quot; /* 1 refs @ 23715 */<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;Token-Ring\0&quot; /* 2 refs @ 23728 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;OC-3139=
 f\0&quot; /* 1 refs @ 23739 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Fastload\0&quot; /* 1 refs @ 23748 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;OC-3139/3140\0&quot; /* 1 refs @ 23757 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;RapidFire\0&=
 quot; /* 5 refs @ 23770 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;OC-3250\0&quot; /* 1 refs @ 23780 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;GoCard\0&quot; /* 1 refs @ 23788 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;OC-3530\0&quot; /* 1=
  refs @ 23795 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;OC-3141\0&quot; /* 1 refs @ 23803 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;OC-=
 3540\0&quot; /* 1 refs @ 23811 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;HSTR\0&quot; /* 1 refs @ 23819 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp; &quot;100/16/4\0&quot; /* 1 refs @ 23824 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;OC-3150\0&quot; /=
 * 1 refs @ 23833 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;OC-2805\0&quot; /* 1 refs @ 23841 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;OC-2325\0&quot; /* 1 refs @ 23849 */<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;OC-2183/2185\0&quot; /* 1 re=
 fs @ 23857 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;OC-2326\0&quot; /* 1 refs @ 23870 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;10/100=
 -TX\0&quot; /* 1 refs @ 23878 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;OC-2327/2350\0&quot; /* 1 refs @ =
 23888 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;OC-6151/6152\0&quot; /* 1 refs @ 23901 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&q=
 uot;82C557\0&quot; /* 1 refs @ 23914 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C558\0&quot; /=
 * 1 refs @ 23921 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C568\0&quot; /* 1 refs @ 23928 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;82D568\0&quot; /* 1 refs @ 23935 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;82C621\0&quot; /* 1 refs @ 23942 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C822\0&quot; /* 1=
  refs @ 23949 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C861\0&quot; /* 1 refs @ 23956 */<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; &quot;82C700\0&quot; /* 1 refs @ 23963 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C7=
 01\0&quot; /* 1 refs @ 23970 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;011H\0&quot; /* 1 refs @=
  23977 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;OX16PCI954\0&quot; /* 2 refs @ 23982 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;OX16PCI954K\0&quot; /* 1 refs @ 23993 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Ex=
 sys\0&quot; /* 2 refs @ 24005 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;EX-41092\0&quot; /* 1 r=
 efs @ 24011 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; &quot;OXCB950\0&quot; /* 1 refs @ 24020 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;OXmPC=
 I954\0&quot; /* 2 refs @ 24028 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Disabled\0&quot; /* 1 refs @ 240=
 38 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;EX-41098\0&quot; /* 1 refs @ 24047 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;OX16PCI952\0&quot; /* 2 refs @ 24056 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;OX16PCI95=
 8\0&quot; /* 1 refs @ 24067 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;OXPCIe952\0&quot; /* 1 re=
 fs @ 24078 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;HD-2000\0&quot; /* 1 refs @ 24088 */<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;HDTV\0&quot; /* 2 refs @ 24096 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;HD-5500\=
 0&quot; /* 1 refs @ 24101 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;RZ1000\0&quot; /* 1 refs @ =
 24109 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;PCAN\0&quot; /* 1 refs @ 24116 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;=
 &quot;P17C9X110\0&quot; /* 1 refs @ 24121 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;P17C9X\0&q=
 uot; /* 1 refs @ 24131 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;P1000\0&quot; /* 1 refs @ 24=
 138 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;FNW-3603-TX\0&quot; /* 1 refs @ 24144 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;FNW-3800-TX\0&quot; /* 1 refs @ 24156 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VSc=
 om\0&quot; /* 3 refs @ 24168 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-400\0&quot; /* 1 ref=
 s @ 24174 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-800\0&quot; /* 1 refs @ 24182 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;PCI-200\0&quot; /* 1 refs @ 24190 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;9030\0=
 &quot; /* 1 refs @ 24198 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Accelrator\0&quot; /* 2 refs=
  @ 24203 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; &quot;9050\0&quot; /* 1 refs @ 24214 */<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;9054\0&quot; /* 1 refs @ 24219 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;9060ES\0&quot=
 ; /* 1 refs @ 24224 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;9656\0&quot; /* 2 refs @ 24231 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;FPBGA\0&quot; /* 1 refs @ 24236 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;PowerTop\0&quot; /* 1 refs @ 24242 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PowerPro\0&quot; =
 /* 1 refs @ 24251 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20265\0&quot; /* 1 refs @ 24260 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;Ultra/66\0&quot; /* 3 refs @ 24269 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;PDC20263\0&quot; /* 1 refs @ 24278 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20275\0&quo=
 t; /* 1 refs @ 24287 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Ultra/133\0&quot; /* 10 refs @ 2=
 4296 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;PDC20318\0&quot; /* 1 refs @ 24306 */<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;PDC20319\0&quot; /* 1 refs @ 24315 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20371\=
 0&quot; /* 1 refs @ 24324 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20379\0&quot; /* 1 refs =
 @ 24333 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;PDC20378\0&quot; /* 1 refs @ 24342 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;PDC20375\0&quot; /* 1 refs @ 24351 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC203=
 76\0&quot; /* 1 refs @ 24360 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20377\0&quot; /* 1 re=
 fs @ 24369 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC40719\0&quot; /* 1 refs @ 24378 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;PDC40519\0&quot; /* 1 refs @ 24387 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC=
 20771\0&quot; /* 1 refs @ 24396 */<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20571\0&quot; /* 1=
  refs @ 24405 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20579\0&quot; /* 1 refs @ 24414 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;PDC40779\0&quot; /* 1 refs @ 24423 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;PDC40718\0&quot; /* 1 refs @ 24432 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC40518\0&quot; =
 /* 1 refs @ 24441 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20775\0&quot; /* 1 refs @ 24450 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;PDC20575\0&quot; /* 1 refs @ 24459 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;PDC20267\0&quot; /* 1 refs @ 24468 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Ultra/100\0&qu=
 ot; /* 3 refs @ 24477 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20246\0&quot; /* 1 refs @ 24=
 487 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;Ultra/33\0&quot; /* 1 refs @ 24496 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;PDC20262\0&quot; /* 1 refs @ 24505 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20268\0=
 &quot; /* 1 refs @ 24514 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20269\0&quot; /* 1 refs @=
  24523 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;PDC20276\0&quot; /* 1 refs @ 24532 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;DC5030\0&quot; /* 1 refs @ 24541 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20270=
 \0&quot; /* 1 refs @ 24548 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20271\0&quot; /* 1 refs=
  @ 24557 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20617\0&quot; /* 1 refs @ 24566 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;PDC20620\0&quot; /* 1 refs @ 24575 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20=
 621\0&quot; /* 1 refs @ 24584 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PDC20618\0&quot; /* 1 r=
 efs @ 24593 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Controler\0&quot; /* 1 refs @ 24602 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;PDC20619\0&quot; /* 1 refs @ 24612 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;PDC20277\0&quot; /* 1 refs @ 24621 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CH352\0&quot; /* =
 1 refs @ 24630 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CH353\0&quot; /* 1 refs @ 24636 */<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; &quot;QLA200\0&quot; /* 1 refs @ 24642 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ISP1=
 020\0&quot; /* 1 refs @ 24649 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ISP1022\0&quot; /* 1 re=
 fs @ 24657 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ISP1080\0&quot; /* 1 refs @ 24665 */<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;ISP1240\0&quot; /* 1 refs @ 24673 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ISP12=
 80\0&quot; /* 1 refs @ 24681 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ISP2100\0&quot; /* 1 ref=
 s @ 24689 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;ISP4022\0&quot; /* 2 refs @ 24697 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;TOE\0&quot; /* 2 refs @ 24705 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PWDOG1\0&q=
 uot; /* 1 refs @ 24709 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp; &nbsp;&nbsp;&quot;8580\0&quot; /* 1 refs @ 24716 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;Virtio\0&quot; /* 64 refs @ 24721 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CryptoSwift\0&quot; /* 1=
  refs @ 24728 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;PKI\0&quot; /* 1 refs @ 24740 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;RT2460A=
 \0&quot; /* 1 refs @ 24744 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;RT2560\0&quot; /* 1 refs @ 24752 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;802.11b/g\0&quot; /* 4 refs @ 24759 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;RT2561S\0&quot; /*=
  1 refs @ 24769 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;RT2561\0&quot; /* 1 refs @ 24777 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;RT2661\0&quot; /* 1 refs @ 24784 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;RT=
 3090\0&quot; /* 1 refs @ 24791 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;REX\0&quot; /* 1 refs =
 @ 24798 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-31/33\0&quot; /* 1 refs @ 24802 */<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;  &nbsp=
 ;&nbsp;&nbsp;&quot;R6040\0&quot; /* 1 refs @ 24812 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;8029\0&quot; /* 1 refs @ 24818 */<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;8139D\0&quot; /* 1=
  refs @ 24823 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;8100\0&quot; /* 1 refs @ 24829 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;8129\0&quot; /* 1 refs @ 24834 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;8100E/8101E/8102E\0&quot; /* 1 refs @ 24839 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;8138\0&q=
 uot; /* 1 refs @ 24857 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;8169SC/8110SC\0&quot; /* 1 r=
 efs @ 24862 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;8168/8111\0&quot; /* 1 refs @ 24876 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;8169/8110\0&quot; /* 1 refs @ 24886 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;RTL8188CE\0&quot; /* 1 refs @ 24896 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;802.11n\0&quot; /* 1 refs =
 @ 24906 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;8180\0&quot; /* 1 refs @ 24914 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&quot;8185\0&quot;=
  /* 1 refs @ 24919 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; &quot;802.11a/b/g\0&quot; /* 1 refs @ 24924 */<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;SH7780\0&quot; /* 1 refs @ 24936 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SH7785\0&quot; /* 1 refs=
  @ 24943 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;5C465\0&quot; /* 1 refs @ 24950 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5C466\0&qu=
 ot; /* 1 refs @ 24956 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5C475\0&quot; /* 1 refs @ 24962=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;5C476\0&quot; /* 1 refs @ 24968 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;5C477\0&quot; /* 1 refs @ 24974 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5C478\0&quot; /* 1 =
 refs @ 24980 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;5C551\0&quot; /* 1 refs @ 24986 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Bridge=
 /Firewire\0&quot; /* 2 refs @ 24992 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5C552\0&quot; /* 1 refs @ 2=
 5008 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;5C592\0&quot; /* 1 refs @ 25014 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Bridge/MS/SD/F=
 irewire\0&quot; /* 2 refs @ 25020 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5C593\0&quot; /* 1 refs @ 250=
 42 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;5C821\0&quot; /* 1 refs @ 25048 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Bridge/MS/SD/MMC=
 /SC\0&quot; /* 2 refs @ 25054 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5C822\0&quot; /* 1 refs @ 25074 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp; &quot;5C832\0&quot; /* 1 refs @ 25080 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-SD/MMC/MMC+/MS/x=
 D/Firewire\0&quot; /* 1 refs @ 25086 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5C843\0&quot; /* 1 refs @ =
 25117 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;Bridge/SD/MMC/MMC+/MS/xD/Firewire\0&quot; /* 2 refs @ 251=
 23 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;5C847\0&quot; /* 1 refs @ 25157 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;xD-Picture\0&quo=
 t; /* 1 refs @ 25163 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5C853\0&quot; /* 1 refs @ 25174 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;Bridge/SD/MMC/MMC+/MS/xD/SC/Firewire\0&quot; /* 1 refs @ 25180 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;5U230\0&quot; /* 1 refs @ 25217 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FireWire/SD/MMC/xD/MS\0&quot;=
  /* 1 refs @ 25223 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; &quot;5U822\0&quot; /* 1 refs @ 25245 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;5U823\0&quot; /* 1 refs @ 25251 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>=
 +&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5U832\0&quot; /* 1 refs @ 2525=
 7 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;5C852\0&quot; /* 1 refs @ 25263 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;N2\0&quot; /* 1 r=
 efs @ 25269 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; &quot;2200\0&quot; /* 1 refs @ 25272 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FDDI\0&q=
 uot; /* 1 refs @ 25277 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Xframe\0&quot; /* 1 refs @ 25282 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;Xframe2\0&quot; /* 1 refs @ 25289 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Xframe3\0&quot; /* 1=
  refs @ 25297 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;ViRGE\0&quot; /* 1 refs @ 25305 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Trio3=
 2\0&quot; /* 1 refs @ 25311 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Trio32/64\0&quot; /* 1 refs @ 25318=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;Aurora64V+\0&quot; /* 1 refs @ 25328 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Trio64UV+\0&q=
 uot; /* 1 refs @ 25339 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ViRGE/VX\0&quot; /* 1 refs @ 25349 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;868\0&quot; /* 1 refs @ 25358 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;86C9=
 28\0&quot; /* 1 refs @ 25362 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;86C864-0\0&quot; /* 1 re=
 fs @ 25369 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(\&quot;Vision864\&quot;)\0&quot; /* 4 ref=
 s @ 25378 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;86C864-1\0&quot; /* 1 refs @ 25392 */<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;86C864-2\0&quot; /* 1 refs @ 25401 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;86C8=
 64-3\0&quot; /* 1 refs @ 25410 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;86C964-0\0&quot; /* 1 =
 refs @ 25419 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(\&quot;Vision964\&quot;)\0&quot; /* 4 r=
 efs @ 25428 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;86C964-1\0&quot; /* 1 refs @ 25442 */<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; &quot;86C964-2\0&quot; /* 1 refs @ 25451 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;86=
 C964-3\0&quot; /* 1 refs @ 25460 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;86C968-0\0&quot; /* =
 1 refs @ 25469 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(\&quot;Vision968\&quot;)\0&quot; /* 4=
  refs @ 25478 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;86C968-1\0&quot; /* 1 refs @ 25492 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;86=
 C968-2\0&quot; /* 1 refs @ 25501 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>=
 +&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;86C968-3\0&quot; /* 1 refs @ 2=
 5510 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;Trio64V2/DX\0&quot; /* 1 refs @ 25519 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Plato/PX=
 \0&quot; /* 1 refs @ 25531 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;86C365\0&quot; /* 1 refs @ 25540 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;Trio3D\0&quot; /* 1 refs @ 25547 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ViRGE/DX\0&quot; /* =
 1 refs @ 25554 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;ViRGE/GX2\0&quot; /* 1 refs @ 25563 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;Trio3D/2X\0&quot; /* 1 refs @ 25573 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Savage3D\0&quot; /* 1 refs=
  @ 25583 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;Savage3D+MV\0&quot; /* 1 refs @ 25592 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;Savage4\0&quot; /* 1 refs @ 25604 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ProSavage\0&q=
 uot; /* 1 refs @ 25612 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;KM133\0&quot; /* 1 refs @ 25=
 622 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;ViRGE/MX\0&quot; /* 1 refs @ 25628 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;ViRGE/MXP\0&quot; /* 1 refs @ 25637 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Savage/MX=
 +MV\0&quot; /* 1 refs @ 25647 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Savage/MX\0&quot; /* 1 =
 refs @ 25660 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Savage/IX+MV\0&quot; /* 1 refs @ 25670 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;Savage/IX\0&quot; /* 1 refs @ 25683 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;Savage/IXC\0&quot; /* 1 refs @ 25693 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Savage2000=
 \0&quot; /* 1 refs @ 25704 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SonicVibes\0&quot; /* 1 re=
 fs @ 25715 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SafeXcel\0&quot; /* 1 refs @ 25726 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;KS8920\0&quot; /* 1 refs @ 25735 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;QE100=
 0\0&quot; /* 1 refs @ 25742 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;FE1000\0&quot; /* 1 refs =
 @ 25749 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;Broadband\0&quot; /* 1 refs @ 25756 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;CNB20-LE\0&quot; /* 2 refs @ 25766 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI/A=
 GP\0&quot; /* 6 refs @ 25775 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CNB30-LE\0&quot; /* 1 re=
 fs @ 25783 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;CNB20-HE\0&quot; /* 3 refs @ 25792 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CIOB-=
 X\0&quot; /* 1 refs @ 25801 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CMIC-HE\0&quot; /* 1 refs @ 25808 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp; &quot;CNB30-HE\0&quot; /* 1 refs @ 25816 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CMIC-LE\0&quot; /=
 * 1 refs @ 25825 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;CMIC-SL\0&quot; /* 1 refs @ 25833 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;HT1000\0&quot; /* 6 refs @ 25841 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CIOB-X2\0&quot; /* 1 refs @ 2=
 5848 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;BCM5714/BCM5715\0&quot; /* 1 refs @ 25856 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Inte=
 gral\0&quot; /* 1 refs @ 25872 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CIOB-E\0&quot; /* 1=
  refs @ 25881 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;HT2100\0&quot; /* 4 refs @ 25888 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;OSB4\0&quot; /* 2 refs @ 25895 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;CSB5\0&quot; /* 3 refs @ 25900 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CSB6\0&quot; /* =
 5 refs @ 25905 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;HT1000SB\0&quot; /* 1 refs @ 25910 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;HT-1000\0&quot; /* 3 refs @ 25919 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;IDE/RAID\0&quot; /* 2 refs @ 25927 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;OSB4/C=
 SB5\0&quot; /* 1 refs @ 25936 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ISA/LPC\0&quot; /* 2=
  refs @ 25946 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;XIOAPIC\0&quot; /* 1 refs @ 25954 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;Frodo4\0&quot; /* 1 refs @ 25962 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;Frodo8\0&quot; /* 1 refs @ 25969 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;&quot;IOC3\0&quot=
 ; /* 1 refs @ 25976 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 +&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PsiTech\0&quot; /* 1 refs @ 25=
 981 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;RAD1\0&quot; /* 1 refs @ 25989 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp; &quot;Tigon\0&quot; /* 1 refs @ 25994 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;STG\0&q=
 uot; /* 2 refs @ 26000 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;2000X\0&quot; /* 1 refs @=
  26004 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;1764X\0&quot; /* 1 refs @ 26010 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;  &nbsp;&nb=
 sp;&nbsp;&quot;BCM1250\0&quot; /* 2 refs @ 26016 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;LDT\0&quot; /* 1 refs @ 26024 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;REALmagic\0&quot; /=
 * 1 refs @ 26028 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;Hollywood-Plus\0&quot; /* 1 refs @ 26038 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;MPEG-2\0&quot; /* 1 refs @ 26053 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Cyber10x\0&qu=
 ot; /* 17 refs @ 26060 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;16550\0&quot; /* 13 refs @ 2=
 6069 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;16650\0&quot; /* 12 refs @ 26075 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;16850\0&quot; /* 12 refs @ 26081 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;2S1P\0&quot; /* 6 refs =
 @ 26087 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;4S\0&quot; /* 7 refs @ 26092 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Cyber20x\0&quo=
 t; /* 20 refs @ 26095 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;2P1S\0&quot; /* 3 refs @ 26104 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;8000\0&quot; /* 3 refs @ 26109 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>=
 +&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;86C201\0&quot; /* 1 refs @ 261=
 14 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;86C202\0&quot; /* 1 refs @ 26121 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;86C205\0&quot; =
 /* 1 refs @ 26128 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;85C503\0&quot; /* 1 refs @ 26135 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;or\0&quot; /* 1 refs @ 26142 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;5597/5598\0&quot; /* 5 refs @ 261=
 45 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;600\0&quot; /* 1 refs @ 26155 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Mngmt\0&quot; /* 1=
  refs @ 26159 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;180\0&quot; /* 1 refs @ 26165 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;181\0&q=
 uot; /* 1 refs @ 26169 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;182\0&quot; /* 1 refs @ 26173 */<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;183\0&quot; /* 1 refs @ 26177 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;190\0&quot; /* 1 refs @ 26181=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;191\0&quot; /* 1 refs @ 26185 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;300/305\0&quot; /* 1=
  refs @ 26189 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;315\0&quot; /* 1 refs @ 26197 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;85C501\0&quot; /* 1 refs @ 26201 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;85C496\0&quot; /*=
  1 refs @ 26208 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;530\0&quot; /* 2 refs @ 26215 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;85C601\0&quot; /* 1 refs @ 26219 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;620\0=
 &quot; /* 1 refs @ 26226 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;630\0&quot; /* 1 refs @ 2623=
 0 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; &quot;633\0&quot; /* 1 refs @ 26234 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;635\0&quot; /* 1 refs @ 26238 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;640\0&quot; /* 1 refs =
 @ 26242 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;645\0&quot; /* 1 refs @ 26246 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;646\0&quot; /* 1 refs @ 26250 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;648\0&quot; /* 1=
  refs @ 26254 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;650\0&quot; /* 1 refs @ 26258 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;651\0&quot; /* 1 refs @ 26262 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;652\0&quot=
 ; /* 1 refs @ 26266 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;655\0&quot; /* 1 refs @ 26270 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;658\0&quot; /* 1 refs @ 26274 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;661\=
 0&quot; /* 1 refs @ 26278 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;671\0&quot; /* 1 refs @ 262=
 82 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;730\0&quot; /* 1 refs @ 26286 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;733\0&quot; /* 1 refs @ 26290 */<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;735\0&quot; /* 1 refs=
  @ 26294 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; &quot;740\0&quot; /* 2 refs @ 26298 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;741\0&quot; /* 1 refs @ 26302 */<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;745\0&quot; /* =
 1 refs @ 26306 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;746\0&quot; /* 1 refs @ 26310 */<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;748\0&quot; /* 1 refs @ 26314 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;750\0&quo=
 t; /* 1 refs @ 26318 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;751\0&quot; /* 1 refs @ 26322 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;752\0&quot; /* 1 refs @ 26326 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;755=
 \0&quot; /* 1 refs @ 26330 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;756\0&quot; /* 1 refs @ 26=
 334 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;760\0&quot; /* 1 refs @ 26338 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;761\0&quot; /* 1 refs @ 26342 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;900\0&quot; /* 1 ref=
 s @ 26346 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;961\0&quot; /* 1 refs @ 26350 */<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;962\0&quot; /* 1 refs @ 26354 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;963\0&quot; /*=
  1 refs @ 26358 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;964\0&quot; /* 1 refs @ 26362 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;965\0&quot; /* 1 refs @ 26366 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;966\0&qu=
 ot; /* 1 refs @ 26370 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;968\0&quot; /* 1 refs @ 26374 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;GUI\0&quot; /* 1 refs @ 26378 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Accelerator+=
 3D\0&quot; /* 1 refs @ 26382 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;6325\0&quot; /* 1 refs @ 26397 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;6326\0&quot; /* 1 refs @ 26402 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;7002\0&quot; =
 /* 1 refs @ 26407 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;7012\0&quot; /* 1 refs @ 26412 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;7016\0&quot; /* 1 refs @ 26417 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;7018=
 \0&quot; /* 1 refs @ 26422 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;7502\0&quot; /* 1 refs @ 2=
 6427 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DDE style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;audio\0&quot; /* 1 refs @ 26432 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDE =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;Voyager\0&quot; /* 1 refs @ 26438 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DDE style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;LynxEM\0&quot=
 ; /* 1 refs @ 26446 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DDE style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;LynxEM+\0&quot; /* 1 refs @ 26453=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DDE style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;Lynx3DM\0&quot; /* 1 refs @ 26461 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDE st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;LynxE\0&quot; /* 2 refs @ 26469 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DDE style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Lynx3D\0&quot; /*=
  1 refs @ 26475 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DDE style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Lynx\0&quot; /* 1 refs @ 26482 */<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DDE style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; &quot;FDC37C665\0&quot; /* 1 refs @ 26487 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDE style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;FDC37C922\0&quot; /* 1 refs @ 26497 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;83C170\0&quot; /* 1 refs @=
  26507 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;(\&quot;EPIC/100\&quot;)\0&quot; /* 2 refs @ 26514 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;83C175\0&quot; /* 1 refs @ 26527 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SNP8023:\0&qu=
 ot; /* 2 refs @ 26534 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;971\0&quot; /* 1 refs @ 26543 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;Classifier\0&quot; /* 2 refs @ 26547 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PAX.w=
 are\0&quot; /* 1 refs @ 26558 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Gb\0&quot; /* 1 refs @ 26567 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;CXD1947A\0&quot; /* 1 refs @ 26570 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CXD3222\0&quot; /* 1=
  refs @ 26579 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;PCIO\0&quot; /* 3 refs @ 26587 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Ebus2\=
 0&quot; /* 2 refs @ 26592 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Happy\0&quot; /* 1 refs @ 26598 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;Meal\0&quot; /* 1 refs @ 26604 */<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(US\0&quot; /* 1 refs @ 2=
 6609 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;III)\0&quot; /* 3 refs @ 26613 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDE style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ERI\0=
 &quot; /* 1 refs @ 26618 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DDE style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GEM\0&quot; /* 1 refs @ 2662=
 2 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DDE style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; &quot;Simba\0&quot; /* 1 refs @ 26626 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDE sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;BCM5821\0&quot; /* 1 refs @ 26632 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DDE style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;psycho\0&quot; /=
 * 1 refs @ 26640 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DDE style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;microSPARC\0&quot; /* 1 refs @ 26647=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DDE style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;IIep\0&quot; /* 1 refs @ 26658 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDE style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;UltraSPARC\0&quot; /* 2 refs @ 26663 */<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DDE style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;IIi\0&quot; /* =
 1 refs @ 26674 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DDE style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Cassini\0&quot; /* 1 refs @ 26678 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;IP100A\0&quot; /* 1 refs @ 26686 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ST201\0&quot; /* 1 r=
 efs @ 26693 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; &quot;ST1023\0&quot; /* 1 refs @ 26699 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;ST2021\0&quot; /* 1 refs @ 26706 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Matrix\0&quot; /=
 * 1 refs @ 26713 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;adapter\0&quot; /* 1 refs @ 26720 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;SER5xxx\0&quot; /* 1 refs @ 26728 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;multiport\0&quot; /* 3 refs @ 26736 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI2S55=
 0\0&quot; /* 1 refs @ 26746 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SUN1888\0&quot; /* 1 refs=
  @ 26755 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; &quot;parallel\0&quot; /* 1 refs @ 26763 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;NE-34\0&quot; /* 1 refs @ 26772 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;4S2P\0&quot; /* 1 =
 refs @ 26778 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;82C101\0&quot; /* 2 refs @ 26783 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C10=
 3\0&quot; /* 1 refs @ 26790 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C105\0&quot; /* 1 refs =
 @ 26797 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;83C553\0&quot; /* 1 refs @ 26804 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;SB16C1054\0&quot; /* 1 refs @ 26811 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;UARTs=
 \0&quot; /* 2 refs @ 26821 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SB16C1058\0&quot; /* 1 ref=
 s @ 26827 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;FDDI-xP\0&quot; /* 1 refs @ 26837 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DSV style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;GE\0&quot; /* 1 refs @ 26845 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DSV style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SK-9821\0&=
 quot; /* 1 refs @ 26848 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DSV style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SK-9DX1\0&quot; /* 1 refs @ =
 26856 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;SK-9D21\0&quot; /* 1 refs @ 26864 */<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;1000BASE-T\0&quot; /* 1 refs @ 26872 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SK-9D41=
 \0&quot; /* 1 refs @ 26883 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;1000BASE-X\0&quot; /* 1 re=
 fs @ 26891 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SK-9Sxx\0&quot; /* 1 refs @ 26902 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;SK-9E21D/SK-9E22\0&quot; /* 1 refs @ 26910 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;1000base-T\0&quot; /* 1 refs @ 26927 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;TC90=
 21\0&quot; /* 2 refs @ 26938 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(alt\0&quot; /* 1 refs @=
  26945 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;ServerNet\0&quot; /* 1 refs @ 26950 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;DC-290(M)\0&quot; /* 1 refs @ 26960 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;DC-69=
 0C\0&quot; /* 1 refs @ 26970 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;DC-315/DC-395\0&quot; /*=
  1 refs @ 26978 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;TLAN\0&quot; /* 1 refs @ 26992 */<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; &quot;TVP4020\0&quot; /* 1 refs @ 26997 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;TSB=
 12LV21\0&quot; /* 1 refs @ 27005 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;TSB12LV22\0&quot; /*=
  1 refs @ 27015 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI4450\0&quot; /* 2 refs @ 27025 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;PCI4410\0&quot; /* 2 refs @ 27033 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;TSB12LV23\0&quot; /* 1 refs @ 27041 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;TSB12LV26\0&quot=
 ; /* 1 refs @ 27051 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;TSB43AA22\0&quot; /* 1 refs @ 270=
 61 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp; &nbsp;&quot;TSB43AA22/A\0&quot; /* 1 refs @ 27071 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;TSB43AA23\0&quot; /* 1 refs @ 27083 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;TSB43=
 AA21\0&quot; /* 1 refs @ 27093 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI4451\0&quot; /* 2 r=
 efs @ 27103 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI4510\0&quot; /* 2 refs @ 27111 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;PCI4520\0&quot; /* 2 refs @ 27119 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI7=
 [4-6]10\0&quot; /* 1 refs @ 27127 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI7x21/7x11\0&quot=
 ; /* 5 refs @ 27139 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Cardbus\0&quot; /* 4 refs @ 27152=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;FlashMedia\0&quot; /* 2 refs @ 27160 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SM\0&quot; /*=
  1 refs @ 27171 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;PCI6515A\0&quot; /* 2 refs @ 27174 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;(Smart\0&quot; /* 2 refs @ 27183 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCIXX12\0&quot; /* 5 refs @ 2=
 7190 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;Secure\0&quot; /* 2 refs @ 27198 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ACX100A\0&quo=
 t; /* 1 refs @ 27205 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ACX100B\0&quot; /* 1 refs @ 27213 */<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;ACX111\0&quot; /* 1 refs @ 27221 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI1130\0&quot; /* 1 refs =
 @ 27228 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;PCI1031\0&quot; /* 1 refs @ 27236 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI1131\0=
 &quot; /* 1 refs @ 27244 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI1250\0&quot; /* 1 refs @ 27252 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;PCI1220\0&quot; /* 1 refs @ 27260 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI1221\0&quot; /* 1=
  refs @ 27268 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;PCI1210\0&quot; /* 1 refs @ 27276 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI=
 1450\0&quot; /* 1 refs @ 27284 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI1225\0&quot; /* 1 refs @ 2729=
 2 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;PCI1251\0&quot; /* 1 refs @ 27300 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI1211\0&quot;=
  /* 1 refs @ 27308 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI1251B\0&quot; /* 1 refs @ 27316 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;PCI2030\0&quot; /* 1 refs @ 27325 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI2050\0&quot; /* 1 refs =
 @ 27333 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;PCI7510\0&quot; /* 1 refs @ 27341 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI7610\0=
 &quot; /* 2 refs @ 27349 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI7410\0&quot; /* 1 refs @ 27357 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;Mode)\0&quot; /* 3 refs @ 27365 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI7[46]10\0&quot; /* 2=
  refs @ 27371 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp; &quot;(SD/MMC\0&quot; /* 1 refs @ 27382 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(Me=
 mory\0&quot; /* 1 refs @ 27390 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI1410\0&quot; /* 1 refs @ 2739=
 8 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;PCI1420\0&quot; /* 1 refs @ 27406 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI1451\0&quot;=
  /* 1 refs @ 27414 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI1421\0&quot; /* 1 refs @ 27422 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;PCI1620\0&quot; /* 1 refs @ 27430 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI1520\0&quot; /* 1 refs @=
  27438 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;PCI1510\0&quot; /* 1 refs @ 27446 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI1530\0&=
 quot; /* 1 refs @ 27454 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI1515\0&quot; /* 1 refs @ 27462 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;PCI2040\0&quot; /* 1 refs @ 27470 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-DSP\0&quot; /* 1=
  refs @ 27478 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI7420\0&quot; /* 1 refs @ 27486 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;PCI-Cardbus\0&quot; /* 1 refs @ 27494 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;PCI-010L\0&quot; /* 1 refs @ 27506 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-100L\0&quot;=
  /* 1 refs @ 27515 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-110L\0&quot; /* 1 refs @ 27524=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;PCI-200L\0&quot; /* 1 refs @ 27533 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;PCI-210L\0&quot; /* 1 refs @ 27542 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-200Li\0&q=
 uot; /* 1 refs @ 27551 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-400L\0&quot; /* 1 ref=
 s @ 27561 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-800L\0&quot; /* 1 refs @ 27570 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;PCI-011H\0&quot; /* 1 refs @ 27579 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;PCI-x10H\0&quot; /* 1 refs @ 27588 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-100H\0=
 &quot; /* 1 refs @ 27597 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-800H\0&quot; /* 1 ref=
 s @ 27606 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-800H_1\0&quot; /* 1 refs @ 27615 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;PCI-200H\0&quot; /* 1 refs @ 27626 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;PCI-010HV2\0&quot; /* 1 refs @ 27635 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-20=
 0HV2\0&quot; /* 1 refs @ 27646 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;R4x00\0&quot; /* 1 =
 refs @ 27657 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;TC35856F\0&quot; /* 1 refs @ 27663 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;(\&quot;Meteor\&quot;)\0&quot; /* 1 refs @ 27672 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;Portege\0&quot; /* 1 refs @ 27683 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;Piccolo\0&quot; /* 4 refs @ 27691 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ToPIC95\0&=
 quot; /* 1 refs @ 27699 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ToPIC95B\0&quot; /* 1 ref=
 s @ 27707 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;ToPIC97\0&quot; /* 1 refs @ 27716 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SanRemo=
 ?\0&quot; /* 1 refs @ 27724 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Triangle\0&quot; /* 1 refs @ 27733 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;Type-A\0&quot; /* 1 refs @ 27742 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ToPIC100\0&quot; /=
 * 1 refs @ 27749 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Infrared\0&quot; /* 2 refs @ 2775=
 8 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;Type\0&quot; /* 2 refs @ 27767 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;O\0&quot; /* 1 refs @ 27772 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;DO\0&quot; /* =
 1 refs @ 27774 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;TM8000\0&quot; /* 1 refs @ 27777 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Lon=
 gRun\0&quot; /* 1 refs @ 27784 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SDRAM\0&quot; /* 1 refs @ 27792 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;BIOS\0&quot; /* 1 refs @ 27798 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;4DWAVE\0&quot; /* 2 refs @ 27803 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;DX\0&quot; =
 /* 1 refs @ 27810 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;NX\0&quot; /* 1 refs @ 27813 */<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; &quot;CyberBlade\0&quot; /* 2 refs @ 27816 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;i7\0&quot; /* 1 refs @ 27827 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;TGUI\0&quot; /* 8 refs =
 @ 27830 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;9320\0&quot; /* 1 refs @ 27835 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;9350\0&quot; /* 1 refs @ 27840 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;9360\0&quot; /=
 * 1 refs @ 27845 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CYBER\0&quot; /* 3 refs @ 27850 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;9397\0&quot; /* 1 refs @ 27856 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;9397=
 DVD\0&quot; /* 1 refs @ 27861 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;9525\0&quot; /* 1 refs =
 @ 27869 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;9420\0&quot; /* 1 refs @ 27874 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;9440\0&quot; /* 1 refs @ 27879 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;9660\0&quot; /=
 * 1 refs @ 27884 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;9680\0&quot; /* 1 refs @ 27889 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;9682\0&quot; /* 1 refs @ 27894 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;HPT34=
 3/345\0&quot; /* 1 refs @ 27899 */<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;HPT366/370/372\0&quot=
 ; /* 1 refs @ 27910 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;HPT372A\0&quot; /* 1 refs @ 27925=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;HPT302\0&quot; /* 1 refs @ 27933 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;HPT371\0&quot; /* 1 refs @ 27940 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;HPT374\0&quot; /*=
  1 refs @ 27947 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;HPT372N\0&quot; /* 1 refs @ 27954 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;RocketRAID\0&quot; /* 2 refs @ 27962 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;2310\0&quot; /* 1 refs @ 27973 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;card\0&quot; /* 2 r=
 efs @ 27978 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;2720\0&quot; /* 1 refs @ 27983 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;Pyramid3D\0&quot; /* 1 refs @ 27988 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;TR252=
 02\0&quot; /* 1 refs @ 27998 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ET4000w32p\0&quot; /* 4 =
 refs @ 28006 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DDE style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ET6000\0&quot; /* 1 refs @ 28017 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DDE style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;UM82C881\0&quot; /* 1 refs @ 28024 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDE style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;486=
 \0&quot; /* 2 refs @ 28033 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DDE style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;UM82C886\0&quot; /* 1 refs=
  @ 28037 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp;  &nbsp;&nbsp;&nbsp;&quot;UM8673F\0&quot; /* 1 refs @ 28046 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;UM8881\0&quot; /* 1 refs @ 28054 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;UM82C891\0&quot; /* 1 refs @ 28061 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;UM886A\0&quot;=
  /* 1 refs @ 28070 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DDE style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;UM8886BF\0&quot; /* 1 refs @ 28077=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DDE style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;UM8710\0&quot; /* 1 refs @ 28086 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDE sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;UM8886\0&quot; /* 1 refs @ 28093 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DDE style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;UM8881F\0&quot; /=
 * 1 refs @ 28100 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DDE style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-Host\0&quot; /* 1 refs @ 28108 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; &quot;UM8886F\0&quot; /* 1 refs @ 28117 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;UM8886A\0&quot; /* 1 refs @ 28125 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;UM8891A=
 \0&quot; /* 1 refs @ 28133 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;UM9017F\0&quot; /* 1 re=
 fs @ 28141 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;UM8886N\0&quot; /* 1 refs @ 28149 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;UM8891N\0&quot; /* 1 refs @ 28157 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;US201\0&q=
 uot; /* 1 refs @ 28165 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Voice\0&quot; /* 1 refs @ 28171 */<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;Internal\0&quot; /* 1 refs @ 28177 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DDE style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(WinModem)=
 \0&quot; /* 1 refs @ 28186 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DDE style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;3CP5609\0&quot; /* 1 refs =
 @ 28197 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DDE style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;USR997902\0&quot; /* 1 refs @ 28205 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &qu=
 ot;V292PBCPSC\0&quot; /* 1 refs @ 28215 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Am29K\0&quot; /* 1 refs=
  @ 28226 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;Local\0&quot; /* 1 refs @ 28232 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;V292PBC\0&=
 quot; /* 1 refs @ 28238 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;AMD290x0\0&quot; /* 1 refs @ 28246 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;V960PBC\0&quot; /* 1 refs @ 28255 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;V96DPC\0&quot; /* 1 =
 refs @ 28263 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;(Dual)\0&quot; /* 1 refs @ 28270 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT630=
 5\0&quot; /* 1 refs @ 28277 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;K8M800\0&quot; /* 1 refs @ 28284 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DDE style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;K8T890\0&quot; /* 7 refs @ 28291 */<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DDE style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;KT880\0&quot; /* 6 refs @ 28298 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DDE style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;K8HTB\0&quot; /* 3 r=
 efs @ 28304 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; &quot;VT8363\0&quot; /* 2 refs @ 28310 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(Apoll=
 o\0&quot; /* 24 refs @ 28317 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;KT133)\0&quot; /* 2 refs @ 28325 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;VT3351\0&quot; /* 7 refs @ 28332 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;VT8371\0&quot; /* 2 refs @ 28339 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;KX133)\0&quot; /* 2=
  refs @ 28346 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VX900\0&quot; /* 2 refs @ 28353 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;VT8501\0&quot; /* 2 refs @ 28359 */<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;MVP4)=
 \0&quot; /* 2 refs @ 28366 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT82C505\0&quot; /* 1 refs=
  @ 28372 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; &quot;(Pluto)\0&quot; /* 1 refs @ 28381 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;VT82C561\0&quot; /* 1 refs @ 28389 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT82C5=
 86A\0&quot; /* 1 refs @ 28398 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT82C576\0&quot; /* 1 r=
 efs @ 28408 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;3V\0&quot; /* 1 refs @ 28417 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;CX700\0&quot; /* 2 refs @ 28420 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT82C580\=
 0&quot; /* 1 refs @ 28426 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VP)\0&quot; /* 1 refs @ 284=
 35 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;VT82C586\0&quot; /* 3 refs @ 28439 */<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;VT8237A\0&quot; /* 4 refs @ 28448 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT82C595\0=
 &quot; /* 2 refs @ 28456 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VP2)\0&quot; /* 2 refs @ 284=
 65 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;VT82C596A\0&quot; /* 1 refs @ 28470 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;VT82C597\0&quot; /* 2 refs @ 28480 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VP3)\0&quo=
 t; /* 2 refs @ 28489 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT82C598\0&quot; /* 2 refs @ 284=
 94 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;MVP3)\0&quot; /* 2 refs @ 28503 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;VT8605\0&quot; /* 2 refs @ 28509 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ProMedia\0&qu=
 ot; /* 2 refs @ 28516 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;133)\0&quot; /* 2 refs @ 285=
 25 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;VT82C686A\0&quot; /* 4 refs @ 28530 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;VT82C691\0&quot; /* 1 refs @ 28540 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;Pro)\0&quot; /* 1 refs @ 28549 */<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT82C693\0&quot; /=
 * 1 refs @ 28554 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Plus)\0&quot; /* 1 refs @ 28563 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; &quot;VT86C926\0&quot; /* 1 refs @ 28569 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;Amazon\0&quot; /* 1 refs @ 28578 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PCI-Eth=
 ernet\0&quot; /* 1 refs @ 28585 */<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT82C570M\0&quot; =
 /* 2 refs @ 28598 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(Apollo)\0&quot; /* 2 refs @ 286=
 08 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;VT8251\0&quot; /* 6 refs @ 28617 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;Port1\0&quot; /* 1 refs @ 28624 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Port2\0&quot;=
  /* 1 refs @ 28630 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VLINK\0&quot; /* 1 refs @ 28636 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;VT83C572\0&quot; /* 1 refs @ 28642 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;VT3043\0&quot; /* 1 refs @ 28651 */<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(Rhine)\0&quot; /*=
  1 refs @ 28658 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT6306\0&quot; /* 1 refs @ 28666 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;VT6105M\0&quot; /* 1 refs @ 28673 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;(Rhine\0&quot; /* 3 refs @ 28681 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT8233/VT8235\0&quo=
 t; /* 1 refs @ 28688 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT6102\0&quot; /* 1 refs @ 28702=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;MC-97\0&quot; /* 1 refs @ 28709 */<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quo=
 t;VT8233\0&quot; /* 1 refs @ 28715 */<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT8366\0&quot; /* =
 2 refs @ 28722 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;KT266)\0&quot; /* 2 refs @ 28729 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;CPU-PCI\0&quot; /* 3 refs @ 28736 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT=
 8653\0&quot; /* 1 refs @ 28744 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;266T)\0&quot; /* 1 ref=
 s @ 28751 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;VT8237\0&quot; /* 4 refs @ 28757 */<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;VT6105\0&quot; /* 1 refs @ 28764 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT612X\0=
 &quot; /* 1 refs @ 28771 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(Velocity)\0&quot; /* 1 refs=
  @ 28778 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; &quot;VT8623\0&quot; /* 2 refs @ 28789 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp; &quot;CLE266)\0&quot; /* 2 refs @ 28796 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT8233A=
 \0&quot; /* 1 refs @ 28804 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT6410\0&quot; /* 1 refs @=
  28812 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp; &quot;VT6421\0&quot; /* 1 refs @ 28819 */<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;VT3314\0&quot; /* 1 refs @ 28826 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CN900\0&qu=
 ot; /* 1 refs @ 28833 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;UniChrome\0&quot; /* 2 refs @ 2=
 8839 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;VT8237R\0&quot; /* 1 refs @ 28849 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;VT8235\0&quot; /* 1 refs @ 28857 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;KT400)\0&q=
 uot; /* 1 refs @ 28864 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT8377\0&quot; /* 2 refs @ 2=
 8871 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;Apollo\0&quot; /* 2 refs @ 28878 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;KT400\0&quot;=
  /* 1 refs @ 28885 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; &quot;VT8378\0&quot; /* 2 refs @ 28891 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;KM400\0&quot; /* 2 refs @ 28898 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>=
 +&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT8237A/VT8251\0&quot; /* 1 re=
 fs @ 28904 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;VT8237A/VT82C586A\0&quot; /* 1 refs @ 28919 */<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;VT8237S\0&quot; /* 2 refs @ 28937 */<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CX700M2/VX700\0&quot; /* =
 1 refs @ 28945 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp; &quot;VT86C100A\0&quot; /* 1 refs @ 28959 */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;(Rhine-II)\0&quot; /* 1 refs @ 28969 */<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT8231\0&quot; /* 2 refs =
 @ 28980 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;VX800/VX820\0&quot; /* 1 refs @ 28987 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CPU-A=
 GP\0&quot; /* 7 refs @ 28999 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VT8633\0&quot; /* 1 refs=
  @ 29007 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; &quot;266)\0&quot; /* 1 refs @ 29014 */<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;VT8377CE\0&quot; /* 1 refs @ 29019 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Guest\0&q=
 uot; /* 1 refs @ 29028 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Service\0&quot; /* 1 refs @ =
 29034 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;GDT6000/6020/6050\0&quot; /* 1 refs @ 29042 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;GDT6000B/6010\0&quot; /* 1 refs @ 29060 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;GDT6110/6510\0&quot; /* 1 refs @ 29074 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;&quot;GDT6120/=
 6520\0&quot; /* 1 refs @ 29087 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6530\0&quot; /* 1 r=
 efs @ 29100 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6550\0&quot; /* 1 refs @ 29108 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;GDT6117/6517\0&quot; /* 1 refs @ 29116 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;GDT6127/6527\0&quot; /* 1 refs @ 29129 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6537\0&quo=
 t; /* 1 refs @ 29142 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6557/6557-ECC\0&quot; /* 1 re=
 fs @ 29150 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6115/6515\0&quot; /* 1 refs @ 29167 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;GDT6125/6525\0&quot; /* 1 refs @ 29180 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;GDT6535\0&quot; /* 1 refs @ 29193 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6555/6555-E=
 CC\0&quot; /* 1 refs @ 29201 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6[15]17RP\0&quot; /* =
 1 refs @ 29218 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6[15]27RP\0&quot; /* 1 refs @ 29231=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;GDT6537RP\0&quot; /* 1 refs @ 29244 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;GDT6557RP\0&quot; /* 1 refs @ 29254 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6[15]11=
 RP\0&quot; /* 1 refs @ 29264 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6[15]21RP\0&quot; /* =
 1 refs @ 29277 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6[15]17RD\0&quot; /* 1 refs @ 29290=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;GDT6[5]127RD\0&quot; /* 1 refs @ 29303 */<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;GDT6537RD\0&quot; /* 1 refs @ 29316 */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6557R=
 D\0&quot; /* 1 refs @ 29326 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6[15]11RD\0&quot; /* 1=
  refs @ 29336 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6[15]21RD\0&quot; /* 1 refs @ 29349 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;GDT6[156]18RD\0&quot; /* 1 refs @ 29362 */<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p; &quot;GDT6[156]28RD\0&quot; /* 1 refs @ 29376 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6=
 [56]38RD\0&quot; /* 1 refs @ 29390 */<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6[56]58RD\0&quo=
 t; /* 1 refs @ 29403 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6[15]17RP2\0&quot; /* 1 refs =
 @ 29416 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp; &quot;GDT6[15]27RP2\0&quot; /* 1 refs @ 29430 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;GDT6537RP2\0&quot; /* 1 refs @ 29444 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;GDT6[15]11RP2\0&quot; /* 1 refs @ 29455 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6[15]21=
 RP2\0&quot; /* 1 refs @ 29469 */<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6513RS\0&quot; /* 1 =
 refs @ 29483 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6523RS\0&quot; /* 1 refs @ 29493 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;GDT6518RS\0&quot; /* 1 refs @ 29503 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;GDT6x28RS\0&quot; /* 1 refs @ 29513 */<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6x38RS\0&quot=
 ; /* 1 refs @ 29523 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6x58RS\0&quot; /* 1 refs @ 295=
 33 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;GDT6x33RS\0&quot; /* 1 refs @ 29543 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;GDT6x43RS\0&quot; /* 1 refs @ 29553 */<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6x53RS=
 \0&quot; /* 1 refs @ 29563 */<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6x63RS\0&quot; /* 1 ref=
 s @ 29573 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT7x13RN\0&quot; /* 1 refs @ 29583 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;GDT7x23RN\0&quot; /* 1 refs @ 29593 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GD=
 T7[156]18RN\0&quot; /* 1 refs @ 29603 */<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT7[156]28RN\0=
 &quot; /* 1 refs @ 29617 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT7[56]38RN\0&quot; /* 1 re=
 fs @ 29631 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT7[56]58RN\0&quot; /* 1 refs @ 29644 */<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;GDT7[56]43RN\0&quot; /* 1 refs @ 29657 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;GDT7x53RN\0&quot; /* 1 refs @ 29670 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT7x63RN\=
 0&quot; /* 1 refs @ 29680 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT4x13RZ\0&quot; /* 1 refs=
  @ 29690 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT4x23RZ\0&quot; /* 1 refs @ 29700 */<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;GDT8x13RZ\0&quot; /* 1 refs @ 29710 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT=
 8x23RZ\0&quot; /* 1 refs @ 29720 */<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT8x33RZ\0&quot; /*=
  1 refs @ 29730 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT8x43RZ\0&quot; /* 1 refs @ 29740 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp; &quot;GDT8x53RZ\0&quot; /* 1 refs @ 29750 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;GDT8x63RZ\0&quot; /* 1 refs @ 29760 */<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6[56]19RD\=
 0&quot; /* 1 refs @ 29770 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT6[56]29RD\0&quot; /* 1 r=
 efs @ 29783 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;GDT7[56]19RN\0&quot; /* 1 refs @ 29796 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp; &quot;GDT7[56]29RN\0&quot; /* 1 refs @ 29809 */<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;ICP\0&quot; /* 1 refs @ 29822 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C592\0&quot; /* 1 refs @ =
 29826 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp; &quot;82C593\0&quot; /* 1 refs @ 29833 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C594\0&quo=
 t; /* 1 refs @ 29840 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Wildcat\0&quot; /* 2 refs @ 29847 */<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp=
 ;&nbsp; &quot;82C596/597\0&quot; /* 1 refs @ 29855 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82=
 C541\0&quot; /* 1 refs @ 29866 */<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C543\0&quot; /* 1 re=
 fs @ 29873 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C532\0&quot; /* 1 refs @ 29880 */<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; &quot;82C534\0&quot; /* 1 refs @ 29887 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C535\=
 0&quot; /* 1 refs @ 29894 */<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New=
 "'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;82C147\0&quot; /* 1 refs @ =
 29901 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;82C975\0&quot; /* 1 refs @ 29908 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ; &quot;82C925\0&quot; /* 1 refs @ 29915 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;SVGA\0&quo=
 t; /* 2 refs @ 29922 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Machine\0&quot; /* 1 refs @ 2992=
 7 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; &quot;Communication\0&quot; /* 1 refs @ 29935 */<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;82545EM\0&quot; /* 1 refs @ 29949 */<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;82546EB\0&quot; /* 1 refs @ 29957 */<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;PVSCSI\0&quot; =
 /* 1 refs @ 29965 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;VMI\0&quot; /* 1 refs @ 29972 */=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;option\0&quot; /* 1 refs @ 29976 */<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; =
 &quot;ROM\0&quot; /* 1 refs @ 29983 */<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;P9000\0&quot; =
 /* 1 refs @ 29987 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;P9100\0&quot; /* 1 refs @ 29993 =
 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;WD33C193A\0&quot; /* 1 refs @ 29999 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;WD=
 33C196A\0&quot; /* 1 refs @ 30009 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;WD33C197A\0&quot; /* 1 refs @=
  30019 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;WD7193\0&quot; /* 1 refs @ 30029 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fam=
 ily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;WD7197\0&qu=
 ot; /* 1 refs @ 30036 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp; &quot;WD33C296A\0&quot; /* 1 refs @ 30043 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
  &quot;WD34C296\0&quot; /* 1 refs @ 30053 */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPL style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;90C\0&quot=
 ; /* 1 refs @ 30062 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPL style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;W83769F\0&quot; /* 1 refs @ 30066=
  */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPL style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp; &quot;W83C553F\0&quot; /* 2 refs @ 30074 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPL s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;W83628F\0&quot; /* 1 refs @ 30083 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPL style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;W89C840F\0&quo=
 t; /* 1 refs @ 30091 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPL style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;W89C940F\0&quot; /* 2 refs @ 301=
 00 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPL style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp; &quot;W6692\0&quot; /* 1 refs @ 30109 */<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPL st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &q=
 uot;NinjaSCSI-32UDE\0&quot; /* 5 refs @ 30115 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(KME=
 )\0&quot; /* 3 refs @ 30131 */<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(IODATA)\0&quot; /* 1 =
 refs @ 30137 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(LOGITEC)\0&quot; /* 1 refs @ 30146 *=
 /<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp; &quot;(LOGITEC2)\0&quot; /* 1 refs @ 30156 */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp; &quot;(BUFFALO)\0&quot; /* 2 refs @ 30167 */<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CF3=
 2A\0&quot; /* 2 refs @ 30177 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;CompactFlash\0&quot; /* 1 refs @ 3=
 0183 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;CF\0&quot; /* 1 refs @ 30196 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;NPATA-32\0&quot; =
 /* 1 refs @ 30199 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPL style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Xen\0&quot; /* 1 refs @ 30208 */<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPL style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp; &quot;Platform\0&quot; /* 1 refs @ 30212 */<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPL style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot=
 ;Volari\0&quot; /* 5 refs @ 30221 */<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPL style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Z7/Z9/Z9s\0&quot; /=
 * 1 refs @ 30228 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPL style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;Z9m\0&quot; /* 1 refs @ 30238 */<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPL style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp; &quot;Z11/Z11M\0&quot; /* 1 refs @ 30242 */<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&quot;V3XT/V5/V8\0=
 &quot; /* 1 refs @ 30251 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;XP10\0&quot; /* 1 refs @ 30262 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;X3201-3\0&quot; /* 2 refs @ 30267 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(21143)\0&quot; /* 1 ref=
 s @ 30275 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp; &quot;WinGlobal\0&quot; /* 1 refs @ 30283 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;724\0&quot; /* 1 refs @ 30293 */<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;740C\0&quot; /* 1 =
 refs @ 30297 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(DS-1)\0&quot; /* 2 refs @ 30302 */<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp; &quot;724F\0&quot; /* 1 refs @ 30309 */<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;744\0&q=
 uot; /* 1 refs @ 30314 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;(DS-1S)\0&quot; /* 1 refs @ =
 30318 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp; &quot;754\0&quot; /* 1 refs @ 30326 */<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &=
 quot;(DS-1E)\0&quot; /* 1 refs @ 30330 */<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;1221\0&quot; /* 1 refs @=
  30338 */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp; &quot;PCI-ST32\0&quot; /* 1 refs @ 30343 */<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-f=
 amily:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ZR36057\0=
 &quot; /* 1 refs @ 30352 */<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &quot;ZR36120\0&quot; /* 1 refs @ 30360 */<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'> };<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'>-const int pci_nwords =3D 4095;<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"=
 '>+const int pci_nwords =3D 4096;<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> <=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an style=3D'font-family:"Courier New"'>Index: dev/pci/puccn.c<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'f=
 ont-family:"Courier New"'>=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'>RCS file: /cvsroot/src/sys/dev/p=
 ci/puccn.c,v<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'>retrieving revision 1.1=
 0<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span style=3D'font-family:"Courier New"'>diff -u -r1.10 puccn.c<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D=
 'font-family:"Courier New"'>--- dev/pci/puccn.c&nbsp; 28 Apr 2010 19:17:05 =
 -0000 1.10<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'>+++ dev/pci/puccn.c&nbsp;=
  5 Jul 2013 01:08:41 -0000<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>@@ -181,=
 7 +181,8 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; goto resume_scan;<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; }<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>=
  <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; cn-&gt;cn_pri =
 =3D CN_REMOTE;<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; i=
 f (cn) <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; cn-&gt;cn_pri =3D CN_REMOTE;<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; return PCI_MA=
 PREG_IO_ADDR(base);<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> }<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DIT style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-=
 family:"Courier New"'>Index: dev/pci/pucdata.c<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-f=
 amily:"Courier New"'>=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DIT style=3D'font-family:"Courier New"'>RCS file: /cvsroot/src/sys/d=
 ev/pci/pucdata.c,v<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>retrieving revisi=
 on 1.84<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span style=3D'font-family:"Courier New"'>diff -u -r1.84 pucdata.c<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'>--- dev/pci/pucdata.c 3 Jun 2013 16:21:=
 50 -0000&nbsp; 1.84<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span style=3D'font-family:"Courier New"'>+++ dev/pci/pucd=
 ata.c 5 Jul 2013 01:08:41 -0000<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>@@ -=
 57,8 +57,8 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_ADVANTECH, PCI_PRODUCT_ADVANTECH_PCI1604=
 , 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0x0=
 , 0x0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM=
 _FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x=
 00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, P=
 CI_BAR0, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_=
 TYPE_COM, PCI_BAR1, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;</span><span=
  style=3D'font-family:"Courier New"'>},<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span style=3D'font-family:"Courier Ne=
 w"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> <o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span sty=
 le=3D'font-family:"Courier New"'>@@ -67,10 +67,10 @@<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PC=
 I_PRODUCT_ADVANTECH_PCI1610,&nbsp; 0x0 },<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbs=
 p; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0x0 },<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ =
 * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x18, CO=
 M_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR=
 0, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_C=
 OM, PCI_BAR0, 0x08, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_=
 PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 8 },<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 8 },<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&n=
 bsp;</span><span style=3D'font-family:"Courier New"'>},<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'>@@ -79,10 +79,10 @@<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp; PCI_PRODUCT_ADVANTECH_PCI1612,&nbsp; 0x0 },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-f=
 amily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&=
 nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0x0 }=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ *=
  8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x08, COM=
 _FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x=
 10, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0=
 x10, 0x18, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, PCI_BAR0, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { P=
 UC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8 },<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 8 },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 8 },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp;&nbsp;</span><span style=3D'font-family:"Courier New"'>},<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-f=
 amily:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span style=3D'font-family:"Courier New"'>@@ -92,10 +92=
 ,10 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_ADVANTECH_PCI1620,&nbsp; 0x0 },<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span s=
 tyle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&n=
 bsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbs=
 p;&nbsp; 0x0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, =
 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM,=
  0x10, 0x08, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TY=
 PE_COM, 0x10, 0x10, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_=
 PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
  { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8 },<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 8 },=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_=
 FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;</span><span style=3D'font-family:"Courier=
  New"'>},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"=
 '>@@ -105,10 +105,10 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_ADVANTECH_PCI1620,&=
 nbsp; 0x0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; =
 0xffff,&nbsp;&nbsp;&nbsp; 0x0 },<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_T=
 YPE_COM, 0x10, 0x00, COM_FREQ * 2 },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC=
 _PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 2 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 2 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 2 },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 2 },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ=
  * 2 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x1=
 0, COM_FREQ * 2 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PC=
 I_BAR0, 0x18, COM_FREQ * 2 },<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>@@ -120,14 +120,14 @@<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp; PCI_VEND=
 OR_AMCIRCUITS, PCI_PRODUCT_AMCIRCUITS_ADDI7800, 0, 0&nbsp; },<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;{&nbsp;&nbsp; 0xffff, 0xffff, 0, 0&nbsp; },<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 {<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FRE=
 Q },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x08, COM_=
 FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00, C=
 OM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x08=
 , COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0=
 x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c=
 , 0x08, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0=
 x20, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM=
 , 0x20, 0x08, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, PCI_BAR1, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_P=
 ORT_TYPE_COM, PCI_BAR1, 0x08, COM_FREQ },<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
 { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x08, COM_FREQ },<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ },<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR3, 0x08, COM_FREQ },<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR4, 0x00, COM_FREQ }=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR4, 0x08, COM=
 _FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -136,8 +=
 136,8 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_AVLAB, PCI_PRODUCT_AVLAB_PCI2S, =
 0, 0&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0, 0&nbsp;=
  },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, 0x10, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_=
 TYPE_COM, 0x14, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PO=
 RT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {=
  PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'>@@ -146,10 +146,10 @@<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PC=
 I_VENDOR_AVLAB, PCI_PRODUCT_AVLAB_LPPCI4S,&nbsp;&nbsp;&nbsp; 0, 0 },<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbs=
 p;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_F=
 REQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00=
 , COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR=
 3, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>@@ -158,10 +158,10 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 > &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_AVLAB, PCI_PRODUC=
 T_AVLAB_LPPCI4S_2,&nbsp; 0, 0&nbsp; },<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;=
 &nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp; 0, 0&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_F=
 REQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00=
 , COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR=
 3, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>@@ -172,32 +172,32 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 > &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_BBELEC, PCI_PRODU=
 CT_BBELEC_ISOLATED_2_PORT, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff, 0xffff, 0=
 ,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0000, COM_FREQ * 8 },<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0200, COM_FREQ * 8 =
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0000, =
 COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_B=
 AR0, 0x0200, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; {&nbsp;&nbsp; &quot;BBEL=
 EC ISOLATED_4_PORT&quot;,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_BBELEC, PCI_P=
 RODUCT_BBELEC_ISOLATED_4_PORT, 0, 0 },<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff, 0xfff=
 f, 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0000, COM_FREQ * 8 },<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0200, COM_FREQ =
 * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0400, =
 COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10,=
  0x0600, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_C=
 OM, PCI_BAR0, 0x0000, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PU=
 C_PORT_TYPE_COM, PCI_BAR0, 0x0200, COM_FREQ * 8 },<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0400, COM_FREQ * 8 },<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0600, COM_FREQ * 8 }=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; {&nbsp;&nbsp; &quot;BBELEC ISOLATED_8_PORT&quot;,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_BBELEC, PCI_PRODUCT_BBELEC_ISOLATED_8_POR=
 T, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff, 0xffff, 0,&nbsp;&nbsp; 0&nbsp;&nb=
 sp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_=
 PORT_TYPE_COM, 0x10, 0x0000, COM_FREQ * 8 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x10, 0x0200, COM_FREQ * 8 },<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0400, COM_FREQ * 8 },<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0600, COM_FREQ * 8 },<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0800, COM_FREQ =
 * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0a00, =
 COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10,=
  0x0c00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_C=
 OM, 0x10, 0x0e00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PO=
 RT_TYPE_COM, PCI_BAR0, 0x0000, COM_FREQ * 8 },<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0200, COM_FREQ * 8 },<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0400, COM_FREQ * 8 },<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0600, COM_F=
 REQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, =
 0x0800, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_CO=
 M, PCI_BAR0, 0x0a00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC=
 _PORT_TYPE_COM, PCI_BAR0, 0x0c00, COM_FREQ * 8 },<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0e00, COM_FREQ * 8 },<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>@@ -209,10 +209,10 @@<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp=
 ;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0 },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 {<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FRE=
 Q * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x08, C=
 OM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0=
 x10, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0=
 x10, 0x18, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, PCI_BAR0, 0x00, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PU=
 C_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 4},<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 4},<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 4},<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;</span><span style=3D'font-family:"Courier New"'>},<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-fami=
 ly:"Courier New"'> &nbsp;&nbsp;&nbsp; {&nbsp;&nbsp; &quot;Comtrol RocketPor=
 t 550/8 RJ11 part B&quot;,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>@@ -220,=
 10 +220,10 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0, 0 },<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier =
 New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbs=
 p; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0 },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4},<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 4},<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4},<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4},<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FR=
 EQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x=
 08, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PC=
 I_BAR0, 0x10, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TY=
 PE_COM, PCI_BAR0, 0x18, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;</span><span st=
 yle=3D'font-family:"Courier New"'>},<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'=
 > &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; {&nbsp;&nbsp; &quot;Comtrol RocketPort 550/8 Octa part A&quot;,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 style=3D'font-family:"Courier New"'>@@ -231,10 +231,10 @@<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-=
 family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p; 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,=
 &nbsp;&nbsp; 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, =
 0x00, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, =
 0x10, 0x08, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, 0x10, 0x10, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PO=
 RT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { =
 PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 4},<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 4},<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 4},<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ *=
  4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'> &nbsp;&nbsp;&nbsp; {&nbsp;&nbsp; &quot;Comtrol RocketPort 550/8 Octa=
  part B&quot;,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -242,=
 30 +242,30 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0, 0 },<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0 },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM=
 , 0x10, 0x00, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TY=
 PE_COM, 0x10, 0x08, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_P=
 ORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {=
  PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4},<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 4},<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 4},<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 4=
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, CO=
 M_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; {&nbsp;&nbsp; &quot;Comtrol RocketPort 55=
 0/4 RJ45&quot;,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_COMTROL, PCI_PRODUCT_COMT=
 ROL_ROCKETPORT5504, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp=
 ; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0 },<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4}=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FRE=
 Q * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x10, C=
 OM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0=
 x18, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, P=
 CI_BAR0, 0x00, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_T=
 YPE_COM, PCI_BAR0, 0x08, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { =
 PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 4},<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 4},<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; {&nbsp;&nbsp; &quot;Comtrol RocketPort 550/Quad&quot;,<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;{ PCI_VENDOR_COMTROL, PCI_PRODUCT_COMTROL_ROCKETPORT550Q, 0, 0 },<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,=
 &nbsp;&nbsp; 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {=
  PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4},<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp; { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 4},<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4},<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4},<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 4=
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, CO=
 M_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0=
 , 0x10, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 +&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM=
 , PCI_BAR0, 0x18, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; {&nbsp;&nbsp; &quot;C=
 omtrol RocketPort 550/16 part A&quot;,<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>@@ -273,10 +273,10 @@<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0, 0=
  },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nb=
 sp; 0,&nbsp;&nbsp; 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 > &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4},<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 4},<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4},<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4},<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FR=
 EQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x=
 08, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PC=
 I_BAR0, 0x10, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TY=
 PE_COM, PCI_BAR0, 0x18, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; {&nbsp;&nbsp; &=
 quot;Comtrol RocketPort 550/16 part B&quot;,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>@@ -284,18 +284,18 @@<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&=
 nbsp;&nbsp; 0,&nbsp;&nbsp; 0 },<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4},<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 4},<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4},<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ *=
  4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x20, COM_=
 FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x28=
 , COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10=
 , 0x30, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM=
 , 0x10, 0x38, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TY=
 PE_COM, 0x10, 0x40, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_P=
 ORT_TYPE_COM, 0x10, 0x48, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {=
  PUC_PORT_TYPE_COM, 0x10, 0x50, COM_FREQ * 4},<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp; { PUC_PORT_TYPE_COM, 0x10, 0x58, COM_FREQ * 4},<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 4},<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 4},<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FR=
 EQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x=
 18, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PC=
 I_BAR0, 0x20, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TY=
 PE_COM, PCI_BAR0, 0x28, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { P=
 UC_PORT_TYPE_COM, PCI_BAR0, 0x30, COM_FREQ * 4},<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x38, COM_FREQ * 4},<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x40, COM_FREQ * 4},<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x48, COM_FREQ * =
 4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x50, C=
 OM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR=
 0, 0x58, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 > &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; {&nbsp;&nbsp; &quot;Comtrol Ro=
 cketPort 550/8 part A&quot;,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>@@ -303,10 +303,10 @@<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0, 0 },<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbs=
 p;&nbsp; 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC=
 _PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4},<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
  { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 4},<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4},<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4},<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 4},<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ =
 * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10,=
  COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_B=
 AR0, 0x18, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; {&nbsp;&nbsp; &quot;Comt=
 rol RocketPort 550/8 part B&quot;,<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>@@ -314,10 +314,10 @@<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0, 0 },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; =
 0,&nbsp;&nbsp; 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
  { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 4},<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 4},<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 4},<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 4},<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 4=
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, CO=
 M_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0=
 , 0x10, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 +&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM=
 , PCI_BAR0, 0x18, COM_FREQ * 4},<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>@@ -329,8 +329,8 @@<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_DCI, PCI=
 _PRODUCT_DCI_APCI2,&nbsp;&nbsp;&nbsp;&nbsp; 0x0, 0x0&nbsp; },<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0x0, 0x0&nbsp=
 ; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, 0x1c, 0x00, COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_T=
 YPE_COM, 0x1c, 0x08, COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT=
 _TYPE_COM, PCI_BAR3, 0x00, COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PU=
 C_PORT_TYPE_COM, PCI_BAR3, 0x08, COM_FREQ},<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>@@ -339,10 +339,10 @@<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_=
 VENDOR_DCI, PCI_PRODUCT_DCI_APCI4,&nbsp;&nbsp;&nbsp;&nbsp; 0x0, 0x0&nbsp; }=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp=
 ; 0x0, 0x0&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
  { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ},<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x1c, 0x08, COM_FREQ},<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0x10, COM_FREQ},<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0x18, COM_FREQ},<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ},<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR3, 0x08, COM_FREQ},<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR3, 0x10, COM_FREQ},<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR3, 0x18, COM_FR=
 EQ},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -351,14 +351=
 ,14 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_DCI, PCI_PRODUCT_DCI_APCI8,&nbsp;&=
 nbsp;&nbsp;&nbsp; 0x0, 0x0&nbsp; },<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nb=
 sp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0x0, 0x0&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 {<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FRE=
 Q},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0x08, COM_F=
 REQ},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0x10, COM=
 _FREQ},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0x18, C=
 OM_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0x20,=
  COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0x2=
 8, COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0=
 x30, COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c,=
  0x38, COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI=
 _BAR3, 0x00, COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_CO=
 M, PCI_BAR3, 0x08, COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_T=
 YPE_COM, PCI_BAR3, 0x10, COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_=
 PORT_TYPE_COM, PCI_BAR3, 0x18, COM_FREQ},<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
 { PUC_PORT_TYPE_COM, PCI_BAR3, 0x20, COM_FREQ},<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp; { PUC_PORT_TYPE_COM, PCI_BAR3, 0x28, COM_FREQ},<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR3, 0x30, COM_FREQ},<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR3, 0x38, COM_FREQ},<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -367,10 +367,10 @@<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;{ PCI_VENDOR_DIGI, PCI_PRODUCT_DIGI_NEO4,&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0, 0&nbsp; },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff=
 , 0xffff,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0, 0&nbsp; },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM=
 , 0x10, 0x0000, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT=
 _TYPE_COM, 0x10, 0x0200, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {=
  PUC_PORT_TYPE_COM, 0x10, 0x0400, COM_FREQ * 8 },<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0600, COM_FREQ * 8 },<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0000, COM_FREQ * 8 },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0200, COM_FR=
 EQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0=
 x0400, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 +&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM=
 , PCI_BAR0, 0x0600, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>@@ -379,14 +379,14 @@<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_DIG=
 I, PCI_PRODUCT_DIGI_NEO8,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0=
 , 0&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff, 0xffff,&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp; 0, 0&nbsp; },<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0000, COM_FREQ * 8 },<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0200, COM_FREQ=
  * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0400,=
  COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10=
 , 0x0600, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, 0x10, 0x0800, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC=
 _PORT_TYPE_COM, 0x10, 0x0a00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x10, 0x0c00, COM_FREQ * 8 },<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0e00, COM_FREQ * 8 },<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0000, COM_FREQ * 8 }=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0200, C=
 OM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BA=
 R0, 0x0400, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, PCI_BAR0, 0x0600, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {=
  PUC_PORT_TYPE_COM, PCI_BAR0, 0x0800, COM_FREQ * 8 },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0a00, COM_FREQ * 8 },<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0c00, COM_FREQ *=
  8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0e0=
 0, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@=
 @ -394,18 +394,18 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp; PCI_VENDOR_EXAR, PC=
 I_PRODUCT_EXAR_XR17D152, 0,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 > &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp; 0xffff, 0xffff, =
 0,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; },<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM,=
  0x10, 0x0000, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_=
 TYPE_COM, 0x10, 0x0200, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { =
 PUC_PORT_TYPE_COM, PCI_BAR0, 0x0000, COM_FREQ * 8 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0200, COM_FREQ * 8 },<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; {&nbsp;&nbsp; &quot;EXAR XR17D154&quot;,<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;{&nbsp;&nbsp; PCI_VENDOR_EXAR, PCI_PRODUCT_EXAR_XR17D154, 0,&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; },<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&n=
 bsp;{&nbsp;&nbsp; 0xffff, 0xffff, 0,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0000, COM_FREQ * 8 },<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0200, COM_FREQ * 8 },<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0400, COM_FREQ=
  * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0600,=
  COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_=
 BAR0, 0x0000, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_T=
 YPE_COM, PCI_BAR0, 0x0200, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
  { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0400, COM_FREQ * 8 },<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0600, COM_FREQ * 8 },<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -418,10 +418,10 @@<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;{&nbsp;&nbsp; PCI_VENDOR_EXAR, PCI_PRODUCT_EXAR_XR17D158, =
 0x2205,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0x2003&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp; 0xffff, 0xffff, 0xffff,&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;0xffff&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; },<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10=
 , 0x0000, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, 0x10, 0x0200, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC=
 _PORT_TYPE_COM, 0x10, 0x0400, COM_FREQ * 8 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x10, 0x0600, COM_FREQ * 8 },<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0000, COM_FREQ * 8 },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0200, COM_FREQ *=
  8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x040=
 0, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PC=
 I_BAR0, 0x0600, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>@@ -429,14 +429,14 @@<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp; PCI_VE=
 NDOR_EXAR, PCI_PRODUCT_EXAR_XR17D158, 0,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp; 0xf=
 fff, 0xffff, 0,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_P=
 ORT_TYPE_COM, 0x10, 0x0000, COM_FREQ * 8 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x10, 0x0200, COM_FREQ * 8 },<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0400, COM_FREQ * 8 },<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0600, COM_FREQ * 8 },<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0800, COM_FREQ =
 * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0a00, =
 COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10,=
  0x0c00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_C=
 OM, 0x10, 0x0e00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PO=
 RT_TYPE_COM, PCI_BAR0, 0x0000, COM_FREQ * 8 },<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0200, COM_FREQ * 8 },<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0400, COM_FREQ * 8 },<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0600, COM_F=
 REQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, =
 0x0800, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_CO=
 M, PCI_BAR0, 0x0a00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC=
 _PORT_TYPE_COM, PCI_BAR0, 0x0c00, COM_FREQ * 8 },<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0e00, COM_FREQ * 8 },<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>@@ -445,10 +445,10 @@<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;{&nbsp;&nbsp; PCI_VENDOR_IBM, PCI_PRODUCT_IBM_4810_SCC, 0, 0 =
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp; 0xffff, 0xffff,&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0, 0 },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10,=
  0x00, COM_FREQ }, /* Port C */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT=
 _TYPE_COM, 0x18, 0x00, COM_FREQ }, /* Port D */<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ }, /* Port E */<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ }, /* Port =
 F */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, =
 COM_FREQ }, /* Port C */<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_C=
 OM, PCI_BAR2, 0x00, COM_FREQ }, /* Port D */<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ }, /* Port E */<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ }, =
 /* Port F */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -457=
 ,8 +457,8 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_IODATA, PCI_PRODUCT_IODATA_R=
 SAPCI, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff, 0xffff, 0, 0 },<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00,=
  COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x=
 00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_B=
 AR1, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 +&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM=
 , PCI_BAR2, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>&nbsp; <o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>@@ -467,7 +467,7 @@<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_LAVA,=
 &nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_LAVA_TWOSP_1P, 0, 0 },<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; =
 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
  &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x00, 0x00 },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>@@ -476,8 +476,8 @@<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ P=
 CI_VENDOR_LAVA,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_LAVA_TWOSP_2S, 0, 0 },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xfffc,&nbsp;&nbsp;&nbsp; =
 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_F=
 REQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;</span><span lang=3DIT style=3D'font-family:"Co=
 urier New"'>},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DIT style=3D'font-family:"Courier New"'> <o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT=
  style=3D'font-family:"Courier New"'>@@ -486,8 +486,8 @@<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 { PCI_VENDOR_LAVA,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_LAVA_QUATTRO_AB, 0, =
 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xfffc,&nbsp;&nbsp;&nbsp=
 ; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ }=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;</span><span lang=3DIT style=3D'font-family:"Courier=
  New"'>},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DIT style=3D'font-family:"Courier New"'> <o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT styl=
 e=3D'font-family:"Courier New"'>@@ -496,8 +496,8 @@<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI=
 _VENDOR_LAVA,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_LAVA_QUATTRO_CD, 0, 0 },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xfffc,&nbsp;&nbsp;&nbsp; 0,&=
 nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 > &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 > <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -506,7 +506,7 @@<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_LAVA,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT=
 _LAVA_IOFLEX_2S_0, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp=
 ; 0xfffc,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10,=
  0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PC=
 I_BAR0, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;</span><span lang=3DIT sty=
 le=3D'font-family:"Courier New"'>},<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier=
  New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DIT style=3D'font-family:"Courier New"'>@@ -515,8 +515,8 =
 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp; PCI_VENDOR_LAVA, PCI_PRODUCT_LAVA_QUATTR=
 O_AB2, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp; 0xffff, 0xfffc, 0, 0&nbsp;&n=
 bsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DIT style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_=
 TYPE_COM, 0x10, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PO=
 RT_TYPE_COM, 0x14, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC=
 _PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 </span><span lang=3DIT style=3D'font-family:"Courier New"'>},<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT sty=
 le=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Couri=
 er New"'>@@ -525,8 +525,8 @@<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New=
 "'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp; PCI_VENDOR_LAV=
 A, PCI_PRODUCT_LAVA_QUATTRO_CD2, 0, 0 },<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp; 0x=
 ffff, 0xfffc, 0, 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ }=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -535,10 +535,=
 10 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_LAVA,&nbsp;&nbsp;&nbsp;&nbsp; PCI_P=
 RODUCT_LAVA_OCTOPUS550_0, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp=
 ;&nbsp; 0xfffc,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0=
 x10, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM=
 , 0x14, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, 0x18, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_=
 TYPE_COM, 0x1c, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PO=
 RT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {=
  PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ },<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ },<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'>@@ -547,10 +547,10 @@<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp;&nbsp;{ PCI_VENDOR_LAVA,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_LAVA_OCTOP=
 US550_1, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xfffc,&n=
 bsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FR=
 EQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00, COM=
 _FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00, =
 COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0x0=
 0, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BA=
 R0, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM,=
  PCI_BAR1, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TY=
 PE_COM, PCI_BAR2, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_=
 PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'>@@ -559,7 +559,7 @@<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VE=
 NDOR_LAVA,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_LAVA_SSERIAL, 0, 0 },<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbs=
 p;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>@@ -569,7 +569,7 @@<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp; 0x0, 0x0 },<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbs=
 p;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0x0, 0x0&nbsp; },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 {<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FRE=
 Q },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1,&nbsp; =
 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;</span><span style=3D'font-family:"C=
 ourier New"'>},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cour=
 ier New"'>@@ -582,7 +582,7 @@<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_MIDDLE_DIGITA=
 L_WEASEL_SERIAL, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&=
 nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nb=
 sp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>@@ -591,8 +591,8 @@<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nb=
 sp;{ PCI_VENDOR_MOXA,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_MOXA_CP102U, 0, 0=
  },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nb=
 sp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8=
  },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, C=
 OM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BA=
 R2, 0x08, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>@@ -601,10 +601,10 @@<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_MOXA,&nbs=
 p;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_MOXA_C104H, 0, 0 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 { 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp=
 ;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { =
 PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp; { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8=
  },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x08, C=
 OM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BA=
 R2, 0x10, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, PCI_BAR2, 0x18, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>@@ -613,10 +613,10 @@<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_=
 MOXA,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_MOXA_CP104, 0, 0 },<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp=
 ; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_=
 FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2,=
  0x08, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 +&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM=
 , PCI_BAR2, 0x10, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PO=
 RT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 8 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>@@ -625,10 +625,10 @@<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_=
 VENDOR_MOXA,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_MOXA_CP104V2, 0, 0 },<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&n=
 bsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 =
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FR=
 EQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0=
 x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, =
 PCI_BAR2, 0x08, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT=
 _TYPE_COM, PCI_BAR2, 0x10, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
  { PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 8 },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>@@ -637,10 +637,10 @@<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;{ PCI_VENDOR_MOXA,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_MOXA_CP104EL, 0, 0=
  },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nb=
 sp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8=
  },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_F=
 REQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x18=
 , COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI=
 _BAR2, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TY=
 PE_COM, PCI_BAR2, 0x08, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { =
 PUC_PORT_TYPE_COM, PCI_BAR2, 0x10, COM_FREQ * 8 },<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 8 },<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'>@@ -649,10 +649,10 @@<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp;&nbsp;{ PCI_VENDOR_MOXA,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_MOXA_CP114=
 , 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nb=
 sp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 =
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FR=
 EQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x10,=
  COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18=
 , 0x18, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_CO=
 M, PCI_BAR2, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_P=
 ORT_TYPE_COM, PCI_BAR2, 0x08, COM_FREQ * 8 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x10, COM_FREQ * 8 },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 8 },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -661,14 +661,14 @@<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;{ PCI_VENDOR_MOXA,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_MOXA=
 _C168H, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nb=
 sp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 {<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FRE=
 Q * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x08, =
 COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18,=
  0x10, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM=
 , 0x18, 0x18, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_T=
 YPE_COM, 0x18, 0x20, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC=
 _PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 8 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ * 8 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x38, COM_FREQ * 8 },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x08, COM_FREQ=
  * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x1=
 0, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PC=
 I_BAR2, PCI_BAR2, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PO=
 RT_TYPE_COM, PCI_BAR2, 0x20, COM_FREQ * 8 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x28, COM_FREQ * 8 },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x30, COM_FREQ * 8 },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x38, COM_FREQ * 8=
  },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -677,14 +677,=
 14 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_MOXA,&nbsp;&nbsp;&nbsp;&nbsp; PCI_P=
 RODUCT_MOXA_C168U, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp=
 ; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18,=
  0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM=
 , 0x18, 0x08, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_T=
 YPE_COM, 0x18, 0x10, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC=
 _PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 8 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 8 },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ * 8 },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x38, COM_FREQ * 8 },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_F=
 REQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, =
 0x08, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM,=
  PCI_BAR2, 0x10, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_POR=
 T_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 8 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x20, COM_FREQ * 8 },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x28, COM_FREQ * 8 },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x30, COM_FREQ * 8=
  },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x38, C=
 OM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -6=
 93,14 +693,14 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_MOXA,&nbsp;&nbsp;&nbsp;&=
 nbsp; PCI_PRODUCT_MOXA_C168EL, 0, 0 },<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;=
 &nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; }=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_C=
 OM, 0x18, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT=
 _TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { P=
 UC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 8 },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 8 },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ * 8 },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x38, COM_FREQ =
 * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00=
 , COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI=
 _BAR2, 0x08, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TY=
 PE_COM, PCI_BAR2, 0x10, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { =
 PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 8 },<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x20, COM_FREQ * 8 },<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x28, COM_FREQ * 8 },<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x30, COM_FRE=
 Q * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x=
 38, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;</span><span style=3D'font-family:=
 "Courier New"'>},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; /* Moxa Tec=
 hnologies Co., Ltd. PCI-Express I/O Card 8S RS232 */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'>@@ -708,14 +708,14 @@<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New=
 "'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_MOXA,&nbsp;&nbs=
 p;&nbsp;&nbsp; PCI_PRODUCT_MOXA_C168ELA, 0, 0 },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nb=
 sp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x000, COM_FREQ * 8=
  },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x200, COM_=
 FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x4=
 00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0=
 x14, 0x600, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, 0x14, 0x800, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_=
 PORT_TYPE_COM, 0x14, 0xa00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x14, 0xc00, COM_FREQ * 8 },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0xe00, COM_FREQ * 8 },<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x000, COM_FREQ * 8 },<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x200, COM_F=
 REQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, =
 0x400, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 +&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM=
 , PCI_BAR1, 0x600, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_P=
 ORT_TYPE_COM, PCI_BAR1, 0x800, COM_FREQ * 8 },<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0xa00, COM_FREQ * 8 },<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0xc00, COM_FREQ * 8 },<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0xe00, COM_FREQ=
  * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -726,7 +7=
 26,7 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0x8014 },<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0=
 xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp=
 ; 0xffff&nbsp;&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -736,7 +736,7 @@<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; 0x8012 },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&n=
 bsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff&nbsp;=
 &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ},<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ},<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>@@ -745,7 +745,7 @@<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 { PCI_VENDOR_NETMOS,&nbsp;&nbsp; PCI_PRODUCT_NETMOS_NM9805, 0, 0 },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp=
 ;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x00, 0x00 },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nb=
 sp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>@@ -754,8 +754,8 @@<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nb=
 sp;{ PCI_VENDOR_NETMOS,&nbsp;&nbsp; PCI_PRODUCT_NETMOS_NM9815, 0, 0 },<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&n=
 bsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x00, 0x00 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR2, 0x00, 0x00 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DFR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-f=
 amily:"Courier New"'>@@ -764,7 +764,7 @@<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_NET=
 MOS, PCI_PRODUCT_NETMOS_NM9835, 0x1000, 0x0001 },<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fon=
 t-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xfff=
 f, 0xffff, 0xffff, 0xffff&nbsp; },<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>@@ -773,8 +773,8 @@<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;{ PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9835, 0x1000, 0x0002 }=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff, 0xffff, 0xffff, 0xffff&nbsp; },<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x=
 00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14,=
  0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PC=
 I_BAR0, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, PCI_BAR1, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'>@@ -783,9 +783,9 @@<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_NETMOS=
 , PCI_PRODUCT_NETMOS_NM9835, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&n=
 bsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM=
 , 0x10, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, 0x14, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_LPT, 0x18, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, PCI_BAR0, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_P=
 ORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
 { PUC_PORT_TYPE_LPT, PCI_BAR2, 0x00, 0x00 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>@@ -794,10 +794,10 @@<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;{&nbsp;&nbsp=
 ; PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9845, 0x1000, 0x0004 },<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;{&nbsp;&nbsp; 0xffff, 0xffff, 0xffff, 0xffff&nbsp; },<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_=
 FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00, =
 COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x=
 00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c=
 , 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, =
 PCI_BAR0, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TY=
 PE_COM, PCI_BAR1, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC=
 _PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp; { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;},<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'>@@ -806,11 +806,11 @@<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{&nb=
 sp;&nbsp; PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9845, 0x1000, 0x0014 },<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp; 0xffff, 0xffff, 0xffff, 0xffff&nbsp; },<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM=
 , 0x10, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TY=
 PE_COM, 0x14, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_POR=
 T_TYPE_COM, 0x18, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC=
 _PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{ PU=
 C_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PU=
 C_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ },<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ },<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR4, 0x00, 0x00 },<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
  &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
  <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -819,12 +819,12 @@=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp; PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_N=
 M9845, 0x1000, 0x0006 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp; 0xffff, 0xffff,=
  0xffff, 0xffff&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x24, 0x00, COM_FREQ },=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM=
 _FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0=
 x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI=
 _BAR2, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_=
 COM, PCI_BAR3, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PO=
 RT_TYPE_COM, PCI_BAR4, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
 { PUC_PORT_TYPE_COM, PCI_BAR5, 0x00, COM_FREQ },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>@@ -833,11 +833,11 @@<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 { PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9845, 0, 0 },<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nb=
 sp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
 { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ },<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_F=
 REQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR4, 0x00=
 , 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -846,11=
  +846,11 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM=
 9855, 0x1000, 0x0014 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 > &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0x=
 ffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff&nbsp;&nbsp;&nbsp;&=
 nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT=
 _TYPE_LPT, 0x10, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_=
 TYPE_COM, 0x18, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PO=
 RT_TYPE_COM, 0x1c, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC=
 _PORT_TYPE_COM, 0x20, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { =
 PUC_PORT_TYPE_COM, 0x24, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
  { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x00, 0x00 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR4, 0x00, COM_FREQ },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR5, 0x00, COM_FREQ },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 > &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 > <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -859,7 +859,7 @@<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9865, 0xa000=
 , 0x1000 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&=
 nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff&nbsp;&nbsp;&nbsp;&nbsp; },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0=
 x10, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 +&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM=
 , PCI_BAR0, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>@@ -868,8 +868,8 @@<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_NETMOS, PCI=
 _PRODUCT_NETMOS_NM9865, 0xa000, 0x3002 },<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nb=
 sp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff&=
 nbsp;&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -878,9 +878,9 @@<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;{ PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9865, 0xa000, 0x=
 3003 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp=
 ;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff&nbsp;&nbsp;&nbsp;&nbsp; },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10,=
  0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x=
 14, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM,=
  0x18, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_C=
 OM, PCI_BAR0, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT=
 _TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { P=
 UC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>@@ -889,10 +889,10 @@<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_=
 VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9865, 0xa000, 0x3004 },<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&n=
 bsp;&nbsp; 0xffff&nbsp;&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ =
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FR=
 EQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,=
  COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1=
 , 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, P=
 CI_BAR2, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, PCI_BAR3, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'>@@ -901,8 +901,8 @@<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_NETMOS=
 , PCI_PRODUCT_NETMOS_NM9865, 0xa000, 0x3011 },<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xfff=
 f,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0x=
 ffff&nbsp;&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR1, 0x00, 0x00 },<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>@@ -911,9 +911,9 @@<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;{ PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9865, 0xa000, 0x3012 }=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp=
 ; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff&nbsp;&nbsp;&nbsp;&nbsp; },<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00,=
  COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x=
 00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x18, 0x=
 00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_=
 FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x0=
 0, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BA=
 R2, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@=
  -922,8 +922,8 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_NETMOS, PCI_PRODUCT_NET=
 MOS_NM9865, 0xa000, 0x3020 },<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nb=
 sp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff&nbsp;&nbsp;&=
 nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PU=
 C_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PO=
 RT_TYPE_LPT, 0x14, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_T=
 YPE_LPT, PCI_BAR0, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_T=
 YPE_LPT, PCI_BAR1, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D=
 'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fo=
 nt-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>@@ -935,15 +935,15 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_NETMOS, PCI_PRODUCT_=
 NETMOS_NM9865, 0xa000, 0x1000 },<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff, 0xffff, 0xffff=
 , 0xffff },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;</span><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x=
 10, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM,=
  PCI_BAR0, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; {&nbsp;&nbsp; &quot;NetM=
 os NM9865 2S&quot;,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_NETMOS, PCI_PRODUCT_N=
 ETMOS_NM9865, 0xa000, 0x3002 },<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff, 0xffff, 0xff=
 ff, 0xffff },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC=
 _PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { =
 PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
  { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nb=
 sp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>@@ -952,7 +952,7 @@<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nb=
 sp;{&nbsp;&nbsp; PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9901, 0xa000, 0x10=
 00 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0xffff, 0xffff },=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_CO=
 M, 0x10, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, PCI_BAR0, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'>@@ -961,7 +961,7 @@<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_NETMOS=
 , PCI_PRODUCT_NETMOS_NM9901, 0xa000, 0x2000 },<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xfff=
 f,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0x=
 ffff&nbsp;&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;</span><span lang=3DFR=
  style=3D'font-family:"Courier New"'>{<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_=
 PORT_TYPE_LPT, 0x10, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT=
 _TYPE_LPT, PCI_BAR0, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D=
 'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>@@ -970,7 +970,7 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp; PCI_VENDOR_NETMOS, =
 PCI_PRODUCT_NETMOS_NM9904, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&=
 nbsp; 0xffff,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp; 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PO=
 RT_TYPE_COM, 0x10, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC=
 _PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>@@ -979,7 +979,7 @@<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&=
 nbsp; PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9922, 0, 0 },<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0, 0 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ=
  },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -999,7 +999,7=
  @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PCI_VENDOR_OXFORDSEMI, PCI_PRODUCT_OXF=
 ORDSEMI_OXPCIE952 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xfff=
 f,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff&nbsp;&nbsp;&nbsp;&nbs=
 p; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TY=
 PE_COM, 0x10, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT=
 _TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>@@ -1009,8 +1009,8 @@<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0=
 , 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;=
 &nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 10 }=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FRE=
 Q * 10 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0=
 x00, COM_FREQ * 10 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM,=
  PCI_BAR0, 0x08, COM_FREQ * 10 },<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>@@ -1020,8 +1020,8 @@<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0, 0 }=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp; 0xffff, 0xffff, 0, 0&nbsp;&nbsp;&nbsp;=
  },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10=
 , 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0=
 x14, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 +&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM=
 , PCI_BAR0, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_T=
 YPE_COM, PCI_BAR1, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>@@ -1031,7 +1031,7 @@<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0, =
 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;{&nbsp; &nbsp;0xffff, 0xffff, 0, 0&nbsp;&nbsp;&nb=
 sp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_T=
 YPE_LPT, 0x10, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TY=
 PE_LPT, PCI_BAR0, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>@@ -1041,10 +1041,10 @@<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PCI_VE=
 NDOR_INNOSYS, 0x5850 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 > &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0x=
 ffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff&nbsp;&nbsp;&nbsp;&=
 nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT=
 _TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { P=
 UC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8 },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8 },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ=
  * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x1=
 0, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PC=
 I_BAR0, 0x18, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>@@ -1054,8 +1054,8 @@<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PCI_VENDOR=
 _IODATA, 0xc070 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,=
 &nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff&nbsp;&nbsp;&nbsp;&nbsp;=
  },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, 0x10, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_P=
 ORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
 { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8 },<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>@@ -1065,10 +1065,10 @@<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; PCI_VENDOR_IODATA, 0xd007 },<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;=
 &nbsp; 0xffff&nbsp;&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 =
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FR=
 EQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x18,=
  COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_=
 BAR0, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, PCI_BAR0, 0x08, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { P=
 UC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 8 },<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 8 },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>@@ -1078,10 +1078,10 @@<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp; PCI_VENDOR_SIIG, 0x2050&nbsp;&nbsp;&nbsp; },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,=
 &nbsp;&nbsp;&nbsp; 0xffff&nbsp;&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 {<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FRE=
 Q * 10 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x08,=
  COM_FREQ * 10 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1=
 0, 0x10, COM_FREQ * 10 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, 0x10, 0x18, COM_FREQ * 10 },<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_=
 PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 10 },<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 10 },<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 10 },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ=
  * 10 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -1091,10=
  +1091,10 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PCI_VENDOR_SIIG, 0x2051&nbsp;=
 &nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nb=
 sp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff&nbsp;&nbsp;&nbsp;&nbsp; },=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_CO=
 M, 0x10, 0x00, COM_FREQ * 10 },<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT=
 _TYPE_COM, 0x10, 0x08, COM_FREQ * 10 },<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { =
 PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 10 },<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 10 },<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 10 },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 1=
 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, =
 COM_FREQ * 10 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_=
 BAR0, 0x18, COM_FREQ * 10 },<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>@@ -1104,10 +1104,10 @@<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PCI_VEND=
 OR_AVLAB, 0x2150 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff=
 ,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff&nbsp;&nbsp;&nbsp;&nbsp=
 ; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, 0x10, 0x00, COM_FREQ * 10 },<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_=
 PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 10 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 10 },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 10 },<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 10 },<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FR=
 EQ * 10 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, =
 0x10, COM_FREQ * 10 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 +&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM=
 , PCI_BAR0, 0x18, COM_FREQ * 10 },<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'>@@ -1117,10 +1117,10 @@<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PCI=
 _VENDOR_OXFORDSEMI,&nbsp;&nbsp;&nbsp;&nbsp; 0 },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xf=
 fff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; =
 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
  &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8},<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8},<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FR=
 EQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x=
 08, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PC=
 I_BAR0, 0x10, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TY=
 PE_COM, PCI_BAR0, 0x18, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>@@ -1130,10 +1130,10 @@<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
  0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbs=
 p;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ},<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ},<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ},=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ=
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, CO=
 M_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x=
 08, COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BA=
 R0, 0x10, COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, =
 PCI_BAR0, 0x18, COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>@@ -1143,10 +1143,10 @@<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PCI_VEND=
 OR_IODATA, 0xd007 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xfff=
 f,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff&nbsp;&nbsp;&nbsp;&nbs=
 p; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TY=
 PE_COM, 0x10, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_=
 PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
  { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8 },<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8 },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8 },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8=
  },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, C=
 OM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BA=
 R0, 0x18, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>@@ -1156,10 +1156,10 @@<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PCI_VEND=
 OR_SIIG, 0x2082&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&n=
 bsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff&nbsp;=
 &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 10},<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 10},<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 10},<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 10},<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_F=
 REQ * 10},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, =
 0x08, COM_FREQ * 10},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM,=
  PCI_BAR0, 0x10, COM_FREQ * 10},<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_POR=
 T_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 10},<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>@@ -1169,7 +1169,7 @@<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp; 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp=
 ;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 {<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x00, 0x00=
  },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -1179,14 +117=
 9,14 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PCI_VENDOR_OXFORDSEMI, 0x0671 },<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0=
 xffff,&nbsp;&nbsp;&nbsp; 0xffff&nbsp;&nbsp;&nbsp;&nbsp; },<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00, CO=
 M_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x08, =
 COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x10=
 , COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x=
 18, COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, =
 0x20, COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18=
 , 0x28, COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x=
 18, 0x30, COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, =
 0x18, 0x38, COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 +&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM=
 , PCI_BAR2, 0x00, COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TY=
 PE_COM, PCI_BAR2, 0x08, COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_P=
 ORT_TYPE_COM, PCI_BAR2, 0x10, COM_FREQ},<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {=
  PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ},<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x20, COM_FREQ},<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x28, COM_FREQ},<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x30, COM_FREQ},<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x38, COM_FREQ},<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
  &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
  <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -1196,14 +1196,14 =
 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0, 0 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff=
 ,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&=
 nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT=
 _TYPE_COM, 0x18, 0x00, COM_FREQ * 10},<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { P=
 UC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 10},<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 10},<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 10},<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 10},<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 10},<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ =
 * 10},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x38, CO=
 M_FREQ * 10},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR=
 2, 0x00, COM_FREQ * 10},<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_C=
 OM, PCI_BAR2, 0x08, COM_FREQ * 10},<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_=
 PORT_TYPE_COM, PCI_BAR2, 0x10, COM_FREQ * 10},<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 10},<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x20, COM_FREQ * 10},<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x28, COM_FREQ * =
 10},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x30, =
 COM_FREQ * 10},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_B=
 AR2, 0x38, COM_FREQ * 10},<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>@@ -1212,7 +1212,7 @@<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0x1fd4,&nb=
 sp;&nbsp;&nbsp; 0x0100 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp=
 ; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xeff0 },<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp;&nbsp;</span><span lang=3DFR style=3D'font-family:"Courier New"'>{<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR1, 0x00, 0x00 },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'> <o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR =
 style=3D'font-family:"Courier New"'>@@ -1221,26 +1221,26 @@<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp; 0x1fd4,&nbsp;&nbsp;&nbsp; 0x0010 },<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xff=
 ff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0=
 xffff },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New=
 "'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_=
 COM, 0x10, 0x00, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT=
 _TYPE_COM, 0x10, 0x08, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PU=
 C_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8},<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8},<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8},<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x08, COM_FREQ * 8},<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x10, COM_FREQ * 8},<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x18, COM_FREQ *=
  8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, =
 COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BA=
 R0, 0x08, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_C=
 OM, PCI_BAR0, 0x10, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_P=
 ORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 8},<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ * 8},<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x08, COM_FREQ * 8},<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x10, COM_FREQ * 8=
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x18, CO=
 M_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> </span><s=
 pan style=3D'font-family:"Courier New"'>/*<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Courier=
  New"'>&nbsp; * PUC_MAX_PORTS needs to be raised in order to reach these po=
 rts<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span style=3D'font-family:"Courier New"'>&nbsp; */<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-famil=
 y:"Courier New"'> #if PUC_MAX_PORTS &gt;=3D 16<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PO=
 RT_TYPE_COM, 0x14, 0x20, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { =
 PUC_PORT_TYPE_COM, 0x14, 0x28, COM_FREQ * 8},<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x14, 0x30, COM_FREQ * 8},<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x38, COM_FREQ * 8},<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x40, COM_FREQ * 8},<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x48, COM_FREQ * 8},<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x50, COM_FREQ *=
  8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x58, COM_=
 FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, =
 0x20, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, =
 PCI_BAR1, 0x28, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_=
 TYPE_COM, PCI_BAR1, 0x30, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {=
  PUC_PORT_TYPE_COM, PCI_BAR1, 0x38, COM_FREQ * 8},<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x40, COM_FREQ * 8},<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x48, COM_FREQ * 8},<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x50, COM_FREQ =
 * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x58,=
  COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> #endif=
  /* PUC_MAX_PORTS &gt;=3D 16 */<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'>@@ -1250,7 +1250,7 @@<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp; 0x1fd4,&nbsp;&nbsp;&nbsp; 0x0001 },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xf=
 fff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; =
 0xffff },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_POR=
 T_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { P=
 UC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8},<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>@@ -1259,8 +1259,8 @@<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; 0x1fd4,&nbsp;&nbsp;&nbsp; 0x0002 },<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xff=
 ff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0=
 xffff },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT=
 _TYPE_COM, 0x10, 0x00, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PU=
 C_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8},<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8},<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -1269,10 +1269,10 @@<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0x1fd4,&nbsp;&nbsp;&nbsp; 0x0004 },<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,=
 &nbsp;&nbsp;&nbsp; 0xffff },<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8},<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ *=
  8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, =
 COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BA=
 R0, 0x08, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_C=
 OM, PCI_BAR0, 0x10, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_P=
 ORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 8},<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>@@ -1281,14 +1281,14 @@<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; 0x1fd4,&nbsp;&nbsp;&nbsp; 0x0008 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff=
 ,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xf=
 fff },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_T=
 YPE_COM, 0x10, 0x00, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_=
 PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
 { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ * 8},<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ * 8},<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8},<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x08, COM_FREQ * 8},<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x10, COM_FREQ * 8},<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x18, COM_FREQ *=
  8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, =
 COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BA=
 R0, 0x08, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_C=
 OM, PCI_BAR0, 0x10, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_P=
 ORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 8},<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ * 8},<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x08, COM_FREQ * 8},<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x10, COM_FREQ * 8=
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x18, CO=
 M_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -129=
 7,8 +1297,8 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0x1fd4,&nbsp;&nbsp;&nbsp; 0=
 x0101 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbs=
 p;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xeff0 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ =
 * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR1, 0x00,=
  0x00 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -1307,9 =
 +1307,9 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0x1fd4,&nbsp;&nbsp;&nbsp; 0x010=
 2 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&n=
 bsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff },<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ=
  * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08=
 , COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_=
 BAR1, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>@@ -1318,11 +1318,11 @@<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0x1fd4,&nbsp;&=
 nbsp;&nbsp; 0x0104 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xff=
 ff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff },<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&n=
 bsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM=
 _FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0=
 8, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1=
 0, 0x10, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_CO=
 M, 0x10, 0x18, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE=
 _LPT, 0x14, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, PCI_BAR0, 0x00, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PU=
 C_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8},<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 8},<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 8},<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR1, 0x00, 0x00 },<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -1341,8 +1341,8 @@<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_PLX, PCI_PRODUCT_PLX_9050, 0xd84d,&nbsp;&nb=
 sp;&nbsp; 0x6810&nbsp;&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff=
 ,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xf=
 fff&nbsp;&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_LPT, 0x24, 0x00, 0x00 },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_LPT, PCI_BAR4, 0x00, 0x00 },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_LPT, PCI_BAR5, 0x00, 0x00 },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>@@ -1361,8 +1361,8 @@<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_PL=
 X, PCI_PRODUCT_PLX_9050, 0xd84d,&nbsp;&nbsp;&nbsp; 0x6808&nbsp;&nbsp;&nbsp;=
 &nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;=
 &nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff&nbsp;&nbsp;&nbsp;&nbsp; },<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00,=
  COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0x=
 00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_B=
 AR2, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 +&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM=
 , PCI_BAR3, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>@@ -1380,8 +1380,8 @@<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PCI_VENDOR=
 _QINHENG, 0x3253 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff, 0xffff, 0xffff, 0xffff&n=
 bsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_=
 TYPE_COM, 0x10, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PO=
 RT_TYPE_COM, 0x14, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC=
 _PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>@@ -1390,9 +1390,9 @@<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp; PCI_VENDOR_QINHENG, 0x7053 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff=
 , 0xffff, 0xffff, 0xffff&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ },<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR2, 0x00, 0x00 =
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -1401,7 +1401=
 ,7 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82946GZ_KT=
 , 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nb=
 sp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FR=
 EQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -1410,7 +14=
 10,7 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82P965_K=
 T, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&n=
 bsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_F=
 REQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -1419,7 +1=
 419,7 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82965PM=
 _KT, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;=
 &nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ }=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM=
 _FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -1428,7 =
 +1428,7 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82965=
 GME_KT, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nb=
 sp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 {<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FRE=
 Q },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, =
 COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -1437=
 ,7 +1437,7 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82=
 Q965_KT, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&n=
 bsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FR=
 EQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,=
  COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -144=
 6,7 +1446,7 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_8=
 2G33_KT, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&n=
 bsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FR=
 EQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,=
  COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -145=
 5,7 +1455,7 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_8=
 2Q35_KT, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&n=
 bsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FR=
 EQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,=
  COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -146=
 4,7 +1464,7 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_8=
 2Q33_KT, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&n=
 bsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FR=
 EQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,=
  COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -147=
 3,7 +1473,7 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_8=
 2X38_KT, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&n=
 bsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FR=
 EQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,=
  COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -148=
 2,7 +1482,7 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_3=
 200_KT, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nb=
 sp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 {<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FRE=
 Q },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, =
 COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -1491=
 ,7 +1491,7 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82=
 GM45_KT, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&n=
 bsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FR=
 EQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,=
  COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -150=
 0,7 +1500,7 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_8=
 2Q45_KT, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&n=
 bsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FR=
 EQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,=
  COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -150=
 9,7 +1509,7 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_3=
 400_KT, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nb=
 sp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 {<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FRE=
 Q },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, =
 COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -1518=
 ,7 +1518,7 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_6S=
 ERIES_KT, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&=
 nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_F=
 REQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00=
 , COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -15=
 27,7 +1527,7 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_=
 7SERIES_KT, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff=
 ,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&n=
 bsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM=
 _FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x=
 00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -=
 1536,7 +1536,7 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTE=
 L_8SERIES_KT, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xff=
 ff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, C=
 OM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, =
 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@=
  -1545,7 +1545,7 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_INTEL, PCI_PRODUCT_IN=
 TEL_C600_KT, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xfff=
 f,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, CO=
 M_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0=
 x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ =
 -1554,7 +1554,7 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_INTEL, PCI_PRODUCT_INT=
 EL_EG20T_UART_0, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0=
 xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00=
 , COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR=
 0, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>@@ -1563,7 +1563,7 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 > &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_INTEL, PCI_PRODUC=
 T_INTEL_EG20T_UART_1, 0, 1 },<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nb=
 sp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10,=
  0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PC=
 I_BAR0, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>@@ -1572,7 +1572,7 @@<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_INTEL, PC=
 I_PRODUCT_INTEL_EG20T_UART_2, 0, 2 },<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&=
 nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_CO=
 M, 0x10, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, PCI_BAR0, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'>@@ -1581,7 +1581,7 @@<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_INTE=
 L, PCI_PRODUCT_INTEL_EG20T_UART_3, 0, 3 },<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&n=
 bsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbs=
 p; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TY=
 PE_COM, 0x10, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT=
 _TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>@@ -1591,8 +1591,8 @@<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; P=
 CI_VENDOR_PLX, 0x1103 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0=
 xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff&nbsp;&nbsp;&nbsp;=
 &nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_POR=
 T_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { =
 PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ * 8 },<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -1602,10 +1602,10 @@<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PCI_VENDOR_PLX, 0x1077&nbsp;&nbsp;&nbsp;&nbs=
 p; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&=
 nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff&nbsp;&nbsp;&nbsp;&nbsp; },<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18,=
  0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM=
 , 0x18, 0x08, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_T=
 YPE_COM, 0x18, 0x10, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC=
 _PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x08, COM_FREQ * 8 },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x10, COM_FREQ * 8=
  },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, C=
 OM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -1=
 615,14 +1615,14 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PCI_VENDOR_PLX, 0x1076&=
 nbsp;&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp=
 ; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff&nbsp;&nbsp;&nb=
 sp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_=
 PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
  { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 },<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 },<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 8 },<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 8 =
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FR=
 EQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x38,=
  COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_=
 BAR2, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, PCI_BAR2, 0x08, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { P=
 UC_PORT_TYPE_COM, PCI_BAR2, 0x10, COM_FREQ * 8 },<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 8 },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x20, COM_FREQ * 8 },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x28, COM_FREQ=
  * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x3=
 0, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PC=
 I_BAR2, 0x38, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>@@ -1633,10 +1633,10 @@<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_PLX, PC=
 I_PRODUCT_PLX_9030, 0x155f, 0xf001 },<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff, 0xffff=
 , 0xffff, 0xffff&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 4 },<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 4 },<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 4 },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 4=
  },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, C=
 OM_FREQ * 4 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BA=
 R2, 0x08, COM_FREQ * 4 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, PCI_BAR2, 0x10, COM_FREQ * 4 },<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { P=
 UC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 4 },<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>@@ -1647,10 +1647,10 @@<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;{ PCI_VENDOR_PLX, PCI_PRODUCT_PLX_9050, 0x155f, 0xf001 },<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;{ 0xffff, 0xffff, 0xffff, 0xffff&nbsp; },<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 4 }=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FRE=
 Q * 4 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x10, =
 COM_FREQ * 4 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18,=
  0x18, COM_FREQ * 4 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 +&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM=
 , PCI_BAR2, 0x00, COM_FREQ * 4 },<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PO=
 RT_TYPE_COM, PCI_BAR2, 0x08, COM_FREQ * 4 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x10, COM_FREQ * 4 },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 4 },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -1661,14 +1661,14 @@<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp;&nbsp;{ PCI_VENDOR_PLX, PCI_PRODUCT_PLX_9030, 0x155f, 0xf010 },=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;{ 0xffff, 0xffff, 0xffff, 0xffff&nbsp; },<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x0=
 0, COM_FREQ * 4 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x=
 18, 0x08, COM_FREQ * 4 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, 0x18, 0x10, COM_FREQ * 4 },<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_P=
 ORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 4 },<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
 { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 4 },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 4 },<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ * 4 },<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x38, COM_FREQ * 4 },<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ *=
  4 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x08,=
  COM_FREQ * 4 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_=
 BAR2, 0x10, COM_FREQ * 4 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, PCI_BAR2, 0x18, COM_FREQ * 4 },<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { P=
 UC_PORT_TYPE_COM, PCI_BAR2, 0x20, COM_FREQ * 4 },<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x28, COM_FREQ * 4 },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x30, COM_FREQ * 4 },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x38, COM_FREQ=
  * 4 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -1679,14 =
 +1679,14 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_PLX, PCI_PRODUCT_PLX_9050, 0x=
 155f, 0xf010 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff, 0xffff, 0xffff, 0xffff&nbsp;=
  },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, 0x18, 0x00, COM_FREQ * 4 },<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_P=
 ORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 4 },<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
 { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 4 },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 4 },<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 4 },<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 4 },<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FREQ * 4 }=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x38, COM_FRE=
 Q * 4 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x=
 00, COM_FREQ * 4 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, P=
 CI_BAR2, 0x08, COM_FREQ * 4 },<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_=
 TYPE_COM, PCI_BAR2, 0x10, COM_FREQ * 4 },<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
 { PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 4 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x20, COM_FREQ * 4 },<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x28, COM_FREQ * 4 },=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x30, COM_=
 FREQ * 4 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2,=
  0x38, COM_FREQ * 4 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
  &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>@@ -1699,10 +1699,10 @@<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp; PCI_VENDOR_=
 PLX, PCI_PRODUCT_PLX_9050, 0x12e0, 0x0031&nbsp; },<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{&n=
 bsp;&nbsp; 0xffff, 0xffff, 0xffff, 0xffff&nbsp; },<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ *=
  4 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x08, COM=
 _FREQ * 4 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x=
 10, COM_FREQ * 4 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0=
 x18, 0x18, COM_FREQ * 4 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, PCI_BAR2, 0x00, COM_FREQ * 4 },<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { P=
 UC_PORT_TYPE_COM, PCI_BAR2, 0x08, COM_FREQ * 4 },<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x10, COM_FREQ * 4 },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 4 },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -1715,14 +1715,14 @@=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp; PCI_VENDOR_PLX, PCI_PRODUCT_PLX_9050, 0=
 x12e0, 0x0021&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
  &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp; 0xffff, 0xffff, 0=
 xffff, 0xffff&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
  &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 4 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 4 },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 4 },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 4 },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x20, COM_FREQ * 4 },<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x28, COM_FREQ * 4 =
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x30, COM_FR=
 EQ * 4 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x38,=
  COM_FREQ * 4 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_=
 BAR2, 0x00, COM_FREQ * 4 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, PCI_BAR2, 0x08, COM_FREQ * 4 },<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { P=
 UC_PORT_TYPE_COM, PCI_BAR2, 0x10, COM_FREQ * 4 },<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x18, COM_FREQ * 4 },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x20, COM_FREQ * 4 },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x28, COM_FREQ=
  * 4 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x3=
 0, COM_FREQ * 4 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PC=
 I_BAR2, 0x38, COM_FREQ * 4 },<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>@@ -1745,7 +1745,7 @@<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_SIIG,&nbs=
 p;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_SIIG_CYBER10_S550, 0, 0 },<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; =
 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
  &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x18, 0x00,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC=
 _PORT_TYPE_COM, PCI_BAR2, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR1 },<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -1755,7 +=
 1755,7 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_SIIG,&nbsp;&nbsp;&nbsp;&nbsp; P=
 CI_PRODUCT_SIIG_CYBER10_S650, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&=
 nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_CO=
 M, 0x18, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BA=
 R2, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;(COM_FRE=
 Q * 8)|PUC_COM_SIIG10x|PUC_PORT_USR1 },<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>@@ -1765,7 +1765,7 @@<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp;&nbsp;{ PCI_VENDOR_SIIG,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_SIIG_CYBER1=
 0_S850, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nb=
 sp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 {<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG10x=
 |PUC_PORT_USR1 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>@@ -1775,9 +1775,9 @@<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_=
 SIIG,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_SIIG_CYBER10_IO550, 0, 0 },<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nb=
 sp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR0 },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR3, 0x00, 0x00 },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'> <o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR =
 style=3D'font-family:"Courier New"'>@@ -1786,9 +1786,9 @@<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;{ PCI_VENDOR_SIIG,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_SIIG_CYBER10_IO650,=
  0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&=
 nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR0 },=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR3, 0x00, 0x00 },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'> <o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>@@ -1797,9 +1797,9 @@<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;{ PCI_VENDOR_SIIG,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_SIIG_CYBER10_=
 IO850, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&=
 nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fon=
 t-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fon=
 t-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR0 }=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR3, 0x00, 0x00 },<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>@@ -1808,7 +1808,7 @@<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;{ PCI_VENDOR_SIIG,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_SIIG_CYBER10_=
 P, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp=
 ;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR2, 0x00, 0x00 },<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DFR style=3D'font-family:"Courier New"'> <o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'>@@ -1817,8 +1817,8 @@<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D=
 'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ P=
 CI_VENDOR_SIIG,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_SIIG_CYBER10_2P, 0, 0 }=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0=
 ,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_LPT, PCI_BAR2, 0x00, 0x00 },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_LPT, PCI_BAR4, 0x00, 0x00 },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>@@ -1827,9 +1827,9 @@<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_SI=
 IG,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_SIIG_CYBER10_2S550, 0, 0 },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&n=
 bsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p; { PUC_PORT_TYPE_COM, 0x18, 0x00,<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_POR=
 T_TYPE_COM, PCI_BAR2, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR2 },<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0x00,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
  { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR3 },<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DFR style=3D'font-family:"Courier New"'>@@ -1839,9 +1839,9=
  @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_SIIG,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUC=
 T_SIIG_CYBER10_2S650, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp;=
  0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG10x|=
 PUC_PORT_USR2 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0=
 x00,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_S=
 IIG10x|PUC_PORT_USR3 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-famil=
 y:"Courier New"'>@@ -1851,9 +1851,9 @@<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_SIIG,=
 &nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_SIIG_CYBER10_2S850, 0, 0 },<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp=
 ; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
  { PUC_PORT_TYPE_COM, 0x18, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_=
 TYPE_COM, PCI_BAR2, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR2 },<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0x00,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
  { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR3 },<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DFR style=3D'font-family:"Courier New"'>@@ -1864,11 +1864,=
 11 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0, 0 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&n=
 bsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbs=
 p; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_C=
 OM, 0x18, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2=
 , 0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;(COM_FREQ * 8=
 )|PUC_COM_SIIG10x|PUC_PORT_USR2 },<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT=
 _TYPE_COM, 0x1c, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, P=
 CI_BAR3, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;(COM_F=
 REQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR3 },<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { P=
 UC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_P=
 ORT_TYPE_LPT, PCI_BAR4, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'>@@ -1878,11 +1878,11 @@<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0, 0 },<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&=
 nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New=
 "'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x18, 0x00,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PO=
 RT_TYPE_COM, PCI_BAR2, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New=
 "'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR2 },<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0x00,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
  { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR3 },<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x20, 0x00, 0x00 },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR4, 0x00, 0x00 },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR s=
 tyle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&n=
 bsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;=
  },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DFR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>@@ -1892,11 +1892,11 @@<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&n=
 bsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 {<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00,<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT=
 _USR2 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0x00,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG10x|P=
 UC_PORT_USR3 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x20, 0x=
 00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR4, 0x=
 00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'>@@ -1905,11 +1905,11=
  @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_SIIG,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUC=
 T_SIIG_CYBER10_4S550, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp;=
  0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG10x|=
 PUC_PORT_USR0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c=
 , 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_CO=
 M, 0x20, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_=
 TYPE_COM, 0x24, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PU=
 C_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp; { PUC_PORT_TYPE_COM, PCI_BAR4, 0x00, COM_FREQ * 8 },<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR5, 0x00, COM_FREQ * 8 },<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -1918,11 +1918,11 @@<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_SIIG,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT=
 _SIIG_CYBER10_4S650, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbs=
 p; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18,=
  0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|P=
 UC_COM_SIIG10x|PUC_PORT_USR0 },<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT=
 _TYPE_COM, 0x1c, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { P=
 UC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x24, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ * 8 },<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR4, 0x00, COM_FREQ * 8 },=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR5, 0x00, COM_=
 FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -1931=
 ,11 +1931,11 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_SIIG,&nbsp;&nbsp;&nbsp;&n=
 bsp; PCI_PRODUCT_SIIG_CYBER10_4S850, 0, 0 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff=
 ,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&=
 nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT=
 _TYPE_COM, 0x18, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 +&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM=
 , PCI_BAR2, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 (COM_FREQ * 8)|PUC_COM_SIIG10x|PUC_PORT_USR0 },<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ * 8 },<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x24, 0x00, COM_FREQ * 8 },<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ * =
 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR4, 0x00, =
 COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_B=
 AR5, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>@@ -1948,7 +1948,7 @@<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_SIIG,&nbs=
 p;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_SIIG_CYBER20_S550, 0, 0 },<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; =
 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
  &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x10, 0x00,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC=
 _PORT_TYPE_COM, PCI_BAR0, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -1958,7 +=
 1958,7 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_SIIG,&nbsp;&nbsp;&nbsp;&nbsp; P=
 CI_PRODUCT_SIIG_CYBER20_S650, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&=
 nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_CO=
 M, 0x10, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BA=
 R0, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;(COM_FRE=
 Q * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>@@ -1968,7 +1968,7 @@<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp;&nbsp;{ PCI_VENDOR_SIIG,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_SIIG_CYBER2=
 0_S850, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nb=
 sp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 {<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG20x=
 |PUC_PORT_USR0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>@@ -1978,9 +1978,9 @@<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_=
 SIIG,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_SIIG_CYBER20_IO550, 0, 0 },<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nb=
 sp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR1, 0x00, 0x00 },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'> <o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR =
 style=3D'font-family:"Courier New"'>@@ -1989,9 +1989,9 @@<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;{ PCI_VENDOR_SIIG,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_SIIG_CYBER20_IO650,=
  0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&=
 nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR1, 0x00, 0x00 },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'> <o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>@@ -2000,9 +2000,9 @@<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;{ PCI_VENDOR_SIIG,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_SIIG_CYBER20_=
 IO850, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&=
 nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fon=
 t-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00,<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fon=
 t-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 }=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR1, 0x00, 0x00 },<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&n=
 bsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> <o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>@@ -2011,7 +2011,7 @@<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;{ PCI_VENDOR_SIIG,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_SIIG_CYBER20_=
 P, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp=
 ;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x00, 0x00 },<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DFR style=3D'font-family:"Courier New"'> <o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'>@@ -2020,8 +2020,8 @@<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D=
 'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ P=
 CI_VENDOR_SIIG,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_SIIG_CYBER20_2P, 0, 0 }=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbs=
 p;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0=
 ,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x00, 0x00 },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_LPT, PCI_BAR2, 0x00, 0x00 },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>@@ -2030,9 +2030,9 @@<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_SI=
 IG,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_SIIG_CYBER20_2S550, 0, 0 },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&n=
 bsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p; { PUC_PORT_TYPE_COM, 0x10, 0x00,<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cour=
 ier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_POR=
 T_TYPE_COM, PCI_BAR0, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
  { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR1 },<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DFR style=3D'font-family:"Courier New"'>@@ -2042,9 +2042,9=
  @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_SIIG,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUC=
 T_SIIG_CYBER20_2S650, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp;=
  0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00,<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG20x|=
 PUC_PORT_USR0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0=
 x00,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_S=
 IIG20x|PUC_PORT_USR1 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-famil=
 y:"Courier New"'>@@ -2054,9 +2054,9 @@<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_SIIG,=
 &nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_SIIG_CYBER20_2S850, 0, 0 },<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp=
 ; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
  { PUC_PORT_TYPE_COM, 0x10, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_=
 TYPE_COM, PCI_BAR0, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00,<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
  { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00,<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&=
 nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR1 },<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DFR style=3D'font-family:"Courier New"'>@@ -2067,10 +2067,=
 10 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0, 0 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&n=
 bsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbs=
 p; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_C=
 OM, 0x10, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0=
 , 0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;(COM_FREQ * 8=
 )|PUC_COM_SIIG20x|PUC_PORT_USR0 },<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT=
 _TYPE_LPT, 0x14, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_LPT, 0x1c, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_L=
 PT, PCI_BAR1, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_L=
 PT, PCI_BAR3, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>@@ -=
 2080,10 +2080,10 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0, 0 },<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbs=
 p;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_P=
 ORT_TYPE_COM, 0x10, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_C=
 OM, PCI_BAR0, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;(=
 COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-f=
 amily:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ; { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-famil=
 y:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { =
 PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_=
 PORT_TYPE_LPT, PCI_BAR1, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_=
 PORT_TYPE_LPT, PCI_BAR3, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier=
  New"'>@@ -2093,10 +2093,10 @@<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0, 0 },<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&=
 nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New=
 "'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x10, 0x00,<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PO=
 RT_TYPE_COM, PCI_BAR0, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New=
 "'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x14, 0x00, 0x00 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_LPT, PCI_BAR1, 0x00, 0x00 },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_LPT, PCI_BAR3, 0x00, 0x00 },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>@@ -2105,11 +2105,11 @@<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDO=
 R_SIIG,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_SIIG_CYBER20_4S550, 0, 0 },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbs=
 p;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00,<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC=
 _PORT_TYPE_COM, PCI_BAR0, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier =
 New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ =
 * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00=
 , COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI=
 _BAR2, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TY=
 PE_COM, PCI_BAR3, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'>@@ -2118,11 +2118,11 @@<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VE=
 NDOR_SIIG,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_SIIG_CYBER20_4S650, 0, 0 },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; =
 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00,<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0=
  },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_F=
 REQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00=
 , COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1=
 c, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_C=
 OM, PCI_BAR1, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_=
 PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp; { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ * 8 },<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&n=
 bsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>@@ -2131,11 +2131,11 @@<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;{ PCI_VENDOR_SIIG,&nbsp;&nbsp;&nbsp;&nbsp; PCI_PRODUCT_SIIG_CYBER20=
 _4S850, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;=
 &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nb=
 sp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 {<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00,<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG20x=
 |PUC_PORT_USR0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1=
 4, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_C=
 OM, 0x18, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT=
 _TYPE_COM, 0x1c, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { P=
 UC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ * 8 },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -2145,11 +2145,11 @@=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0, 0 },<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nb=
 sp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp=
 ; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, 0x10, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PC=
 I_BAR0, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;(COM=
 _FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
  { PUC_PORT_TYPE_COM, 0x14, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_=
 TYPE_COM, PCI_BAR1, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR1 },<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR2, 0x00, 0x00 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DFR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-f=
 amily:"Courier New"'>@@ -2159,11 +2159,11 @@<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
  0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&=
 nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DF=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00,<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT=
 _USR1 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x0=
 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR2, 0x00, 0x0=
 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> =
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DFR style=3D'font-family:"Courier New"'>@@ -2173,11 +2173,11 @@<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp; 0, 0 },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp=
 ;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0=
 x00,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00,<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|PUC_COM_S=
 IIG20x|PUC_PORT_USR0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, =
 0x14, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x=
 00,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|PU=
 C_COM_SIIG20x|PUC_PORT_USR1 },<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_LPT, 0x18, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_L=
 PT, PCI_BAR2, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-fa=
 mily:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>@@ -=
 2186,15 +2186,15 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_SIIG,&nbsp;&nbsp;&nbsp;&=
 nbsp; PCI_PRODUCT_SIIG_PS8000P550, 0, 0 },<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-famil=
 y:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp=
 ;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; =
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0=
 x10, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x0=
 0,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;(COM_FREQ * 8)|PUC=
 _COM_SIIG20x|PUC_PORT_USR0 },<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_T=
 YPE_COM, 0x14, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC=
 _PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ * 8 },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x20, 0x08, COM_FREQ * 8 },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x20, 0x10, COM_FREQ * 8 },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x20, 0x18, COM_FREQ =
 * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00=
 , COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI=
 _BAR2, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TY=
 PE_COM, PCI_BAR3, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { =
 PUC_PORT_TYPE_COM, PCI_BAR4, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR4, 0x08, COM_FREQ * 8 },<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR4, 0x10, COM_FREQ * 8 },<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR4, 0x18, COM_FRE=
 Q * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -2203,15=
  +2203,15 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_SIIG,&nbsp;&nbsp;&nbsp;&nbsp=
 ; PCI_PRODUCT_SIIG_PS8000P650, 0, 0 },<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;=
 &nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; }=
 ,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_C=
 OM, 0x10, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_B=
 AR0, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;(COM_FR=
 EQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {=
  PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fo=
 nt-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ * 8 },<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ * 8 },<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x20, 0x08, COM_FREQ * 8 },=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x20, 0x10, COM_FREQ=
  * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x20, 0x18, C=
 OM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BA=
 R1, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { P=
 UC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR4, 0x00, COM_FREQ * 8 },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR4, 0x08, COM_FREQ * 8 },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR4, 0x10, COM_FREQ=
  * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR4, 0x1=
 8, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nb=
 sp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@=
 @ -2220,15 +2220,15 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
  &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_SIIG,&nbsp;&nbsp;&=
 nbsp;&nbsp; PCI_PRODUCT_SIIG_PS8000P850, 0, 0 },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xf=
 fff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbs=
 p;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_P=
 ORT_TYPE_COM, 0x10, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, PCI_BAR0, 0x00,<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;(COM_FREQ * 8)|PUC_COM_SIIG20x|PUC_PORT_USR0 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ * 8 },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ =
 * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x20, 0x08, CO=
 M_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x20, 0=
 x10, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, =
 0x20, 0x18, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, PCI_BAR1, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { P=
 UC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR3, 0x00, COM_FREQ * 8 },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR4, 0x00, COM_FREQ * 8 },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR4, 0x08, COM_FREQ=
  * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR4, 0x1=
 0, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PC=
 I_BAR4, 0x18, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>@@ -2241,7 +2241,7 @@<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PCI_VENDOR=
 _SUNIX, 0x4000 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&=
 nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xeff0 },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 </span><span lang=3DFR style=3D'font-family:"Courier New"'>{<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x00, 0x00 },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'fo=
 nt-family:"Courier New"'>@@ -2250,8 +2250,8 @@<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-f=
 amily:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ; PCI_VENDOR_SUNIX, 0x4010 },<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp;=
  0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xeff0 },<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00=
  },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x18, 0x00, 0x00 },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x00, 0x00 },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR2, 0x00, 0x00 },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;=
 &nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'> <o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DFR style=3D'font-family:"Courier New"'>@@ -2260,7 +2260,7 @@<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp; PCI_VENDOR_SUNIX, 0x4020 },<o:p></o:p></span></p><p cla=
 ss=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR style=3D'font-=
 family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,=
 &nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xef=
 f0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DFR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;</span><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x=
 00, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PC=
 I_BAR0, 0x00, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>@@ -2269,8 +2269,8 @@<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PCI_VENDOR=
 _SUNIX, 0x4030 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&=
 nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xeff0 },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 {<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FRE=
 Q * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x08, C=
 OM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR=
 0, 0x00, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_CO=
 M, PCI_BAR0, 0x08, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>@@ -2279,8 +2279,8 @@<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PCI_VE=
 NDOR_SUNIX, 0x0002 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> =
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xff=
 ff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xeff0 },<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&n=
 bsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM=
 _FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0=
 8, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI=
 _BAR0, 0x00, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, PCI_BAR0, 0x08, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>@@ -2289,10 +2289,10 @@<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
 PCI_VENDOR_SUNIX, 0x4050 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp=
 ; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xeff0 },<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0=
 0, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1=
 0, 0x08, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_CO=
 M, 0x14, 0x00, COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, 0x14, 0x08, COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_T=
 YPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { =
 PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8},<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ},<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x08, COM_FREQ},<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'>@@ -2301,14 +2301,14 @@<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; PCI_VENDOR_SUNIX, 0x4060 },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 { 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&n=
 bsp; 0xeff0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&=
 nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PU=
 C_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8},<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8},<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ},<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x08, COM_FREQ},<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ},<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1c, 0x00, COM_FREQ},<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ},<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x24, 0x00, COM_FREQ},<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8=
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, CO=
 M_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1=
 , 0x00, COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PC=
 I_BAR1, 0x08, COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_C=
 OM, PCI_BAR2, 0x00, COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_=
 TYPE_COM, PCI_BAR3, 0x00, COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC=
 _PORT_TYPE_COM, PCI_BAR4, 0x00, COM_FREQ},<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
  { PUC_PORT_TYPE_COM, PCI_BAR5, 0x00, COM_FREQ},<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>@@ -2317,9 +2317,9 @@<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; PCI_VENDOR_SUNIX, 0x4070 },<o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp=
 ;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xeff0 },=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x=
 00, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x=
 10, 0x08, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT,=
  0x18, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, =
 PCI_BAR0, 0x00, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_=
 TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_T=
 YPE_LPT, PCI_BAR2, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>@@ -2328,10 +2328,10 @@<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PCI_V=
 ENDOR_SUNIX, 0x4080 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
  &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xf=
 fff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xeff0 },<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, CO=
 M_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x=
 08, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x18,=
  0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x20, 0x0=
 0, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, =
 0x00, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, =
 PCI_BAR0, 0x08, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_=
 TYPE_LPT, PCI_BAR2, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PO=
 RT_TYPE_LPT, PCI_BAR4, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMso=
 Normal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-famil=
 y:"Courier New"'>@@ -2340,12 +2340,12 @@<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; P=
 CI_VENDOR_SUNIX, 0x4090 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp=
 ; 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0xeff0 },<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0=
 0, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1=
 0, 0x08, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_CO=
 M, 0x14, 0x00, COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, 0x14, 0x08, COM_FREQ},<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier Ne=
 w"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE=
 _LPT, 0x18, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DFR style=3D'font-family:"Courier New"=
 '>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_L=
 PT, 0x20, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_CO=
 M, PCI_BAR0, 0x00, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PO=
 RT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8},<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ},<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x08, COM_FREQ},<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR2, 0x00, 0x00 },<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR4, 0x00, 0x00 },<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -2358,8 +2358,8 @@<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp; 0x0, 0x0&nbsp; },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff=
 ,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0x0, 0x0&nbsp; },<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0=
 0, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1=
 0, 0x08, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_CO=
 M, PCI_BAR0, 0x00, COM_FREQ * 8},<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PO=
 RT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8},<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>@@ -2373,10 +2373,10 @@<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{&nb=
 sp;&nbsp; PCI_VENDOR_SYBA, PCI_PRODUCT_SYBA_4S,&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp; 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
  &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xf=
 fff,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0=
 , 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_T=
 YPE_COM, 0x10, 0x3e8, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PO=
 RT_TYPE_COM, 0x10, 0x2e8, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PU=
 C_PORT_TYPE_COM, 0x10, 0x3f8, COM_FREQ },<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
 { PUC_PORT_TYPE_COM, 0x10, 0x2f8, COM_FREQ },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x3e8, COM_FREQ },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x2e8, COM_FREQ },<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x3f8, COM_FREQ },<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x2f8, COM_FREQ =
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -2385,12 +238=
 5,12 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp; PCI_VENDOR_SYBA, PCI_PRODUCT_SYB=
 A_4S2P,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0, 0 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff=
 ,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp; 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x2e8, COM_FREQ },<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x2f8, COM_FREQ },<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DFR =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x10, 0x000, 0x00 },<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x3e8, COM_FREQ },<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x3f8, COM_FREQ },<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x10, 0x000, 0x00 },<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x2e8, COM_FREQ },<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x2f8, COM_FR=
 EQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x000=
 , 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0=
 x3e8, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI=
 _BAR0, 0x3f8, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_LPT, PCI_BAR0, 0x000, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>@@ -2399,10 +2399,10 @@<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_SYSTE=
 MBASE, PCI_PRODUCT_SYSTEMBASE_SB16C1054, 0, 0 },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xf=
 fff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  0, 0 },<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x0=
 0, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, =
 0x08, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x1=
 0, 0x10, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, =
 0x10, 0x18, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_CO=
 M, PCI_BAR0, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_=
 TYPE_COM, PCI_BAR0, 0x08, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:=
 "Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PU=
 C_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;=
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>@@ -2411,14 +2411,14 @@<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&n=
 bsp;{&nbsp;&nbsp; PCI_VENDOR_SYSTEMBASE, PCI_PRODUCT_SYSTEMBASE_SB16C1058, =
 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;  0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
  &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ },<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x18, COM_FREQ },<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x20, COM_FREQ },<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x28, COM_FREQ },<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x30, COM_FREQ },<o:p>=
 </o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span l=
 ang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x38, COM_FREQ },<o=
 :p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><spa=
 n lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FR=
 EQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08,=
  COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0=
 , 0x10, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, P=
 CI_BAR0, 0x18, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, PCI_BAR0, 0x20, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_P=
 ORT_TYPE_COM, PCI_BAR0, 0x28, COM_FREQ },<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
 { PUC_PORT_TYPE_COM, PCI_BAR0, 0x30, COM_FREQ },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x38, COM_FREQ },<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'>@@ -2431,7 +2431,7 @@<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&n=
 bsp;{ PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI010L,&nbsp;&nbsp;&nbsp; =
 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&n=
 bsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff, 0xffff,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp; 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR3, 0x00, 0x00 },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nb=
 sp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>@@ -2445,7 +2445,7 @@<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;{ PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI100L,&nbsp;&nbsp; 0, 0 =
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff, 0xffff,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0, 0 },<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00,=
  COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_=
 BAR1, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal =
 style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cour=
 ier New"'>@@ -2458,8 +2458,8 @@<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_TITAN, PC=
 I_PRODUCT_TITAN_VSCOM_PCI110L,&nbsp;&nbsp; 0, 0 },<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0=
 xffff, 0xffff,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; 0, 0 },<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 FR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ * 8 },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR3, 0x00, 0x00 },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 > &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 > <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -2473,8 +2473,8 @=
 @<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><=
 span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &=
 nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI200L,=
 &nbsp;&nbsp; 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff, 0xffff,&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0, =
 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none=
 '><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp=
 ; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYP=
 E_COM, 0x14, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_P=
 ORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
 { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>@@ -2487,9 +2487,9 @@<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;{ PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI210L,&nbsp;&nb=
 sp; 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff, 0xffff,&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; 0, 0 },<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DFR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x1c, 0x00, 0x00 },<o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ * 8=
  },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'=
 ><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, C=
 OM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BA=
 R3, 0x00, 0x00 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'tex=
 t-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@=
  -2498,8 +2498,8 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text=
 -autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &n=
 bsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_TITAN, PCI_PRODUCT_TI=
 TAN_VSCOM_PCI200LI,&nbsp; 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff, 0xffff,&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp; 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {=
  PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; { PUC_PORT_TYPE_COM, 0x20, 0x08, COM_FREQ },<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp; { PUC_PORT_TYPE_COM, PCI_BAR4, 0x00, COM_FREQ },<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR4, 0x08, COM_FREQ },<o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nb=
 sp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>@@ -2508,10 +2508,10 @@<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;{ PCI_VENDOR_MOLEX, PCI_PRODUCT_MOLEX_VSCOM_PCI400L,&nbsp;&n=
 bsp; 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autosp=
 ace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nb=
 sp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff, 0xffff,&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp; 0, 0 },<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x20, 0x00, COM_FREQ =
 * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x20, 0x08, CO=
 M_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR=
 1, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_C=
 OM, PCI_BAR2, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_=
 PORT_TYPE_COM, PCI_BAR4, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp; { PUC_PORT_TYPE_COM, PCI_BAR4, 0x08, COM_FREQ * 8 },<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&n=
 bsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>@@ -2519,14 +2519,14 @@<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;{ PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI800L,&nbsp;&nbsp; 0,=
  0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&=
 nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14, 0x00, COM_FREQ * 8 },=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ=
  * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x20, 0x00, C=
 OM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-auto=
 space:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x20, =
 0x08, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'te=
 xt-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM,=
  0x20, 0x10, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TY=
 PE_COM, 0x20, 0x18, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_=
 PORT_TYPE_COM, 0x20, 0x20, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
  { PUC_PORT_TYPE_COM, 0x20, 0x28, COM_FREQ * 8 },<o:p></o:p></span></p><p c=
 lass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'=
 font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ * 8 },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR2, 0x00, COM_FREQ * 8 },<o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR4, 0x00, COM_FREQ=
  * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR4, 0x0=
 8, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PC=
 I_BAR4, 0x10, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_T=
 YPE_COM, PCI_BAR4, 0x18, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMs=
 oNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fami=
 ly:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {=
  PUC_PORT_TYPE_COM, PCI_BAR4, 0x20, COM_FREQ * 8 },<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR4, 0x28, COM_FREQ * 8 },<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&=
 nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&n=
 bsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o=
 :p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>@@ -2534,7 +2534,7 @@<o:p></o:=
 p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbs=
 p;&nbsp;&nbsp;{ PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI011H,&nbsp;&nb=
 sp; 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospa=
 ce:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbs=
 p;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff, 0xffff,&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp; 0, 0 },<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x00, 0x00 },<o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;=
 &nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></=
 span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT=
 -BR style=3D'font-family:"Courier New"'>@@ -2546,7 +2546,7 @@<o:p></o:p></s=
 pan></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-=
 BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbs=
 p;&nbsp;{ PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCIx10H,&nbsp;&nbsp; 0,=
  0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff, 0xffff,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp; 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal styl=
 e=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier =
 New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x00, 0x00 },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nb=
 sp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></spa=
 n></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR=
  style=3D'font-family:"Courier New"'>@@ -2560,7 +2560,7 @@<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&=
 nbsp;{ PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI100H,&nbsp;&nbsp; 0, 0 =
 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; =
 &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff, 0xffff,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp; 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=
 =3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier N=
 ew"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p =
 class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D=
 'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8 },<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nb=
 sp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbs=
 p;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-a=
 utospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> <o:p=
 ></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span =
 lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -2573,28 +2573,28 @@<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp;&nbsp;{ PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI800H,&nbs=
 p;&nbsp; 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&n=
 bsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR styl=
 e=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp=
 ;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'>=
 <span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FR=
 EQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace=
 :none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x08,=
  COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10=
 , 0x10, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'=
 >-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_CO=
 M, 0x10, 0x18, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_=
 TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fam=
 ily:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =
 { PUC_PORT_TYPE_COM, PCI_BAR0, 0x08, COM_FREQ * 8 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 8 },<o:p></o:p>=
 </span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3D=
 PT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 8 },=
 <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><s=
 pan lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &n=
 bsp;&nbsp;&nbsp;&nbsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; {&nbsp;&nbsp; &quot;VScom PCI-800H&quot;,<o:p></o:p><=
 /span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DP=
 T-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&n=
 bsp;&nbsp;{ PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI800H_1, 0, 0 },<o:=
 p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span=
  lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp=
 ;&nbsp;&nbsp;&nbsp;{ 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,=
 &nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span=
 ></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR =
 style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },<o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=
 =3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_FREQ * 8 },<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x10, COM_FREQ =
 * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x18, CO=
 M_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autos=
 pace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&n=
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, PCI_BAR=
 0, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"=
 '>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_C=
 OM, PCI_BAR0, 0x08, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNorm=
 al style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_=
 PORT_TYPE_COM, PCI_BAR0, 0x10, COM_FREQ * 8 },<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x18, COM_FREQ * 8 },<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&n=
 bsp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nb=
 sp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:no=
 ne'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {&nbsp;&nbsp; &quot;VScom PCI-200H&quot;,<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nb=
 sp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp; PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCO=
 M_PCI200H, 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-=
 autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {&nbsp=
 ;&nbsp; 0xffff, 0xffff, 0,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<=
 o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><sp=
 an lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbs=
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_=
 PORT_TYPE_COM, 0x10, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-fa=
 mily:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x08, COM_F=
 REQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>+&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp; { PUC_PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ * 8 },<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR s=
 tyle=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
 sp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{ PUC_PORT_TYPE_COM, PC=
 I_BAR0, 0x08, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal sty=
 le=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier=
  New"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
 bsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>&nbsp;&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNor=
 mal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"=
 Courier New"'> <o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>@@ -260=
 2,15 +2602,15 @@<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-au=
 tospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp=
 ;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp; PCI_VENDOR_TITAN, PCI_P=
 RODUCT_TITAN_VSCOM_PCI010HV2,&nbsp;&nbsp;&nbsp; 0, 0 },<o:p></o:p></span></=
 p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR sty=
 le=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbs=
 p;{&nbsp;&nbsp; 0xffff, 0xffff, 0,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nb=
 sp;&nbsp;&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal st=
 yle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courie=
 r New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p>=
 <p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_LPT, 0x10, 0x00, 0x00 },<o:p></o:p></span></p><=
 p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
 nbsp;&nbsp; { PUC_PORT_TYPE_LPT, PCI_BAR0, 0x00, 0x00 },<o:p></o:p></span><=
 /p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR st=
 yle=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nb=
 sp;},<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:non=
 e'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbs=
 p; {&nbsp;&nbsp; &quot;VScom PCI-200HV2&quot;,<o:p></o:p></span></p><p clas=
 s=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'fon=
 t-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;=
 &nbsp; PCI_VENDOR_TITAN, PCI_PRODUCT_TITAN_VSCOM_PCI200HV2,&nbsp;&nbsp;&nbs=
 p; 0, 0 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospac=
 e:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp=
 ;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;&nbsp; 0xffff, 0xffff, 0,&nbsp;&nbsp=
 ;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; },<o:p></o:p></sp=
 an></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-B=
 R style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp=
 ;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;&nbsp;&=
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x10, 0x00, =
 COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-aut=
 ospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>-&nbsp;=
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM, 0x14,=
  0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal style=3D't=
 ext-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'>=
 +&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT_TYPE_COM=
 , PCI_BAR0, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=3DMsoNormal=
  style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Cou=
 rier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PO=
 RT_TYPE_COM, PCI_BAR1, 0x00, COM_FREQ * 8 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;},<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&nbsp; },<o:p><=
 /o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span la=
 ng=3DPT-BR style=3D'font-family:"Courier New"'> <o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'>@@ -2619,7 +2619,16 @@<o:p></o:p></span></p><p cl=
 ass=3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'f=
 ont-family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ PCI=
 _VENDOR_USR, PCI_PRODUCT_USR_3CP5609, 0, 0 },<o:p></o:p></span></p><p class=
 =3DMsoNormal style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font=
 -family:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{ 0xffff=
 ,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp; 0&nbsp;&nbsp;&=
 nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:=
 none'><span lang=3DPT-BR style=3D'font-family:"Courier New"'> &nbsp;&nbsp;&=
 nbsp; &nbsp;&nbsp;&nbsp;&nbsp;{<o:p></o:p></span></p><p class=3DMsoNormal s=
 tyle=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Couri=
 er New"'>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_PORT=
 _TYPE_COM, 0x10, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DMsoNorma=
 l style=3D'text-autospace:none'><span lang=3DPT-BR style=3D'font-family:"Co=
 urier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_P=
 ORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3DM=
 soNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family=
 :"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; },<o:p></o:p></span>=
 </p><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT styl=
 e=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p=
 ><p class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=
 =3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; <o:p></o:p></span></p><p=
  class=3DMsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'f=
 ont-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; /* Intel Centerton Processor =
 UART */<o:p></o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:n=
 one'><span lang=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp=
 ; {&nbsp;&nbsp; &quot;Centerton Processor Integrated PCI UART&quot;,<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_CENTERTON_UART, 0, 0 },<o:p></=
 o:p></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span lan=
 g=3DIT style=3D'font-family:"Courier New"'>+&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;=
 &nbsp; { 0xffff,&nbsp;&nbsp;&nbsp; 0xffff,&nbsp;&nbsp;&nbsp; 0,&nbsp;&nbsp;=
  0&nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D'=
 text-autospace:none'><span lang=3DIT style=3D'font-family:"Courier New"'>+&=
 nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; {<o:p></o:p></span></p><p class=3DMsoN=
 ormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-family:"C=
 ourier New"'>+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { PUC_=
 PORT_TYPE_COM, PCI_BAR0, 0x00, COM_FREQ },<o:p></o:p></span></p><p class=3D=
 MsoNormal style=3D'text-autospace:none'><span lang=3DIT style=3D'font-famil=
 y:"Courier New"'> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;</span><span s=
 tyle=3D'font-family:"Courier New"'>},<o:p></o:p></span></p><p class=3DMsoNo=
 rmal style=3D'text-autospace:none'><span style=3D'font-family:"Courier New"=
 '> &nbsp;&nbsp;&nbsp; },<o:p></o:p></span></p><p class=3DMsoNormal style=3D=
 'text-autospace:none'><span style=3D'font-family:"Courier New"'> <o:p></o:p=
 ></span></p><p class=3DMsoNormal style=3D'text-autospace:none'><span style=
 =3D'font-family:"Courier New"'><o:p>&nbsp;</o:p></span></p><p class=3DMsoNo=
 rmal><o:p>&nbsp;</o:p></p></div></body></html>=
 
 --_000_A5B985BD62DE2943886F9B23F410AF1F01B76F213BFEAUSX7MCPC10_--
 



Home | Main Index | Thread Index | Old Index