Full Code of G4lile0/Heimdall-WiFi-Radar for AI

master 7962c137a672 cached
28 files
568.9 KB
287.6k tokens
107 symbols
1 requests
Download .txt
Showing preview only (587K chars total). Download the full file or copy to clipboard to get everything.
Repository: G4lile0/Heimdall-WiFi-Radar
Branch: master
Commit: 7962c137a672
Files: 28
Total size: 568.9 KB

Directory structure:
gitextract_n3mwhkk3/

├── LICENSE
├── PacketMonitor32/
│   ├── Buffer.cpp
│   ├── Buffer.h
│   └── PacketMonitor32_ite5.ino
├── README.md
├── README.txt
├── circles_no_zoom.html
├── circles_zoom.html
├── data/
│   └── vendors.tsv
├── esp8266/
│   ├── espreset.py
│   ├── esptool.py
│   ├── espwrite.py
│   ├── install.sh
│   └── jsonsniffer/
│       └── jsonsniffer.ino
├── flare.json
├── flare1.json
├── mqtt.py
├── phatsniffer.py
├── rickroll.py
├── server.py
├── server2.py
├── static/
│   ├── sorttable.js
│   └── style.css
└── templates/
    ├── flare.html
    ├── flare.json
    ├── flare1.json
    ├── flare2.html
    └── index.html

================================================
FILE CONTENTS
================================================

================================================
FILE: LICENSE
================================================
MIT License

Copyright (c) 2018 Galile0

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


================================================
FILE: PacketMonitor32/Buffer.cpp
================================================
#include "Buffer.h"

Buffer::Buffer(){
  bufA = (uint8_t*)malloc(BUF_SIZE);
  bufB = (uint8_t*)malloc(BUF_SIZE);
}

void Buffer::open(fs::FS* fs){
  int i=0;
  do{
    fileName = "/"+(String)i+".pcap";
    i++;
  } while(fs->exists(fileName));

  Serial.println(fileName);
  
  file = fs->open(fileName, FILE_WRITE);
  file.close();

  bufSizeA = 0;
  bufSizeB = 0;
  
  writing = true;
  
  write(uint32_t(0xa1b2c3d4)); // magic number
  write(uint16_t(2)); // major version number
  write(uint16_t(4)); // minor version number
  write(int32_t(0)); // GMT to local correction
  write(uint32_t(0)); // accuracy of timestamps
  write(uint32_t(SNAP_LEN)); // max length of captured packets, in octets
  write(uint32_t(105)); // data link type

  useSD = true;
}

void Buffer::close(fs::FS* fs){
  if(!writing) return;
  forceSave(fs);
  writing = false;
  Serial.println("file closed");
}

void Buffer::addPacket(uint8_t* buf, uint32_t len){
  
  // buffer is full -> drop packet
  if((useA && bufSizeA + len >= BUF_SIZE && bufSizeB > 0) || (!useA && bufSizeB + len >= BUF_SIZE && bufSizeA > 0)){
    Serial.print(";"); 
    return;
  }
  
  if(useA && bufSizeA + len + 16 >= BUF_SIZE && bufSizeB == 0){
    useA = false;
    Serial.println("\nswitched to buffer B");
  }
  else if(!useA && bufSizeB + len + 16 >= BUF_SIZE && bufSizeA == 0){
    useA = true;
    Serial.println("\nswitched to buffer A");
  }

  uint32_t microSeconds = micros(); // e.g. 45200400 => 45s 200ms 400us
  uint32_t seconds = (microSeconds/1000)/1000; // e.g. 45200400/1000/1000 = 45200 / 1000 = 45s

  microSeconds -= seconds*1000*1000; // e.g. 45200400 - 45*1000*1000 = 45200400 - 45000000 = 400us (because we only need the offset)
  
  write(seconds); // ts_sec
  write(microSeconds); // ts_usec
  write(len); // incl_len
  write(len); // orig_len
  
  write(buf, len); // packet payload
}

void Buffer::write(int32_t n){
  uint8_t buf[4];
  buf[0] = n;
  buf[1] = n >> 8;
  buf[2] = n >> 16;
  buf[3] = n >> 24;
  write(buf,4);
}

void Buffer::write(uint32_t n){
  uint8_t buf[4];
  buf[0] = n;
  buf[1] = n >> 8;
  buf[2] = n >> 16;
  buf[3] = n >> 24;
  write(buf,4);
}

void Buffer::write(uint16_t n){
  uint8_t buf[2];
  buf[0] = n;
  buf[1] = n >> 8;
  write(buf,2);
}

void Buffer::write(uint8_t* buf, uint32_t len){
  if(!writing) return;
  
  if(useA){
    memcpy(&bufA[bufSizeA], buf, len);
    bufSizeA += len;
  }else{
    memcpy(&bufB[bufSizeB], buf, len);
    bufSizeB += len;
  }
}

void Buffer::save(fs::FS* fs){
  if(saving) return; // makes sure the function isn't called simultaneously on different cores

  // buffers are already emptied, therefor saving is unecessary
  if((useA && bufSizeB == 0) || (!useA && bufSizeA == 0)){
    //Serial.printf("useA: %s, bufA %u, bufB %u\n",useA ? "true" : "false",bufSizeA,bufSizeB); // for debug porpuses
    return;
  }
  
  Serial.println("saving file");
  
  uint32_t startTime = millis();
  uint32_t finishTime;

  file = fs->open(fileName, FILE_APPEND);
  if (!file) {
    Serial.println("Failed to open file '"+fileName+"'");
    useSD = false;
    return;
  }
  
  saving = true;
  
  uint32_t len;
  
  if(useA){
    file.write(bufB, bufSizeB);
    len = bufSizeB;
    bufSizeB = 0;
  }
  else{
    file.write(bufA, bufSizeA);
    len = bufSizeA;
    bufSizeA = 0;
  }

  file.close();
  
  finishTime = millis() - startTime;

  Serial.printf("\n%u bytes written for %u ms\n", len, finishTime);
  
  saving = false;
  
}

void Buffer::forceSave(fs::FS* fs){
  uint32_t len = bufSizeA + bufSizeB;
  if(len == 0) return;
  
  file = fs->open(fileName, FILE_APPEND);
  if (!file) {
    Serial.println("Failed to open file '"+fileName+"'");
    useSD = false;
    return;
  }

  saving = true;
  writing = false;
  
  if(useA){

    if(bufSizeB > 0){
      file.write(bufB, bufSizeB);
      bufSizeB = 0;
    }

    if(bufSizeA > 0){
      file.write(bufA, bufSizeA);
      bufSizeA = 0;
    }
    
  } else {

    if(bufSizeA > 0){
      file.write(bufA, bufSizeA);
      bufSizeA = 0;
    }
    
    if(bufSizeB > 0){
      file.write(bufB, bufSizeB);
      bufSizeB = 0;
    }
    
  }

  file.close();

  Serial.printf("saved %u bytes\n",len);

  saving = false;
  writing = true;
}



================================================
FILE: PacketMonitor32/Buffer.h
================================================
#ifndef Buffer_h
#define Buffer_h

#include "Arduino.h"
#include "FS.h"
#include "SD_MMC.h"

#define BUF_SIZE 24 * 1024
#define SNAP_LEN 2324 // max len of each recieved packet

extern bool useSD;

class Buffer {
  public:
    Buffer();
    void open(fs::FS* fs);
    void close(fs::FS* fs);
    void addPacket(uint8_t* buf, uint32_t len);
    void save(fs::FS* fs);
    void forceSave(fs::FS* fs);
  private:
    void write(int32_t n);
    void write(uint32_t n);
    void write(uint16_t n);
    void write(uint8_t* buf, uint32_t len);
    
    uint8_t* bufA;
    uint8_t* bufB;

    uint32_t bufSizeA = 0;
    uint32_t bufSizeB = 0;

    bool writing = false; // acceppting writes to buffer
    bool useA = true; // writing to bufA or bufB
    bool saving = false; // currently saving onto the SD card

    String fileName = "/0.pcap";
    File file;
};

#endif


================================================
FILE: PacketMonitor32/PacketMonitor32_ite5.ino
================================================
//https://github.com/lpodkalicki/blog/blob/master/esp32/016_wifi_sniffer/main/main.c
// packet monitor from spacehuhn

/* uncomment if the default 4 bit mode doesn't work */
/* ------------------------------------------------ */
// #define BOARD_HAS_1BIT_SDMMC true // forces 1bit mode for SD MMC
/* ------------------------------------------------ */

#include "freertos/FreeRTOS.h"
#include "esp_wifi.h"
#include "esp_wifi_types.h"
#include "esp_system.h"
#include "esp_event.h"
#include "esp_event_loop.h"
#include "nvs_flash.h"
#include <stdio.h>
#include <string>
#include <cstddef>
#include <Wire.h>
#include <Preferences.h>
using namespace std;


// g4lile0 ESPNow

#include <esp_now.h>
#include <WiFi.h>

#define CHANNEL 1

// Init ESP Now with fallback
void InitESPNow() {
  if (esp_now_init() == ESP_OK) {
    Serial.println("ESPNow Init Success");
  }
  else {
    Serial.println("ESPNow Init Failed");
    // Retry InitESPNow, add a counte and then restart?
    // InitESPNow();
    // or Simply Restart
    ESP.restart();
  }
}


// config AP SSID
void configDeviceAP() {
  char* SSID = "Slave_1";
  bool result = WiFi.softAP(SSID, "Slave_1_Password", CHANNEL, 0);
  if (!result) {
    Serial.println("AP Config failed.");
  } else {
    Serial.println("AP Config Success. Broadcasting with AP: " + String(SSID));
  }
}




/* ===== compile settings ===== */
#define MAX_CH 14 // 1 - 14 channels (1-11 for US, 1-13 for EU and 1-14 for Japan)
#define SNAP_LEN 2324 // max len of each recieved packet

#define BUTTON_PIN 0 // button to change the channel

#define USE_DISPLAY // comment out if you don't want to use the OLED display
#define FLIP_DISPLAY // comment out if you don't like to flip it
#define SDA_PIN 4
#define SCL_PIN 15
#define MAX_X 128
#define MAX_Y 51

#if CONFIG_FREERTOS_UNICORE
#define RUNNING_CORE 0
#else
#define RUNNING_CORE 1
#endif

#ifdef USE_DISPLAY
#include "SSD1306.h"
#endif

#include "FS.h"
#include "SD_MMC.h"
#include "Buffer.h"

esp_err_t event_handler(void* ctx, system_event_t* event) {
  return ESP_OK;
}



/* =====g4lile0 ===== */




#define DATA_LENGTH           112

#define TYPE_MANAGEMENT       0x00
#define TYPE_CONTROL          0x01
#define TYPE_DATA             0x02
#define SUBTYPE_PROBE_REQUEST 0x04

struct RxControl {
 signed rssi:8; // signal intensity of packet
 unsigned rate:4;
 unsigned is_group:1;
 unsigned:1;
 unsigned sig_mode:2; // 0:is 11n packet; 1:is not 11n packet;
 unsigned legacy_length:12; // if not 11n packet, shows length of packet.
 unsigned damatch0:1;
 unsigned damatch1:1;
 unsigned bssidmatch0:1;
 unsigned bssidmatch1:1;
 unsigned MCS:7; // if is 11n packet, shows the modulation and code used (range from 0 to 76)
 unsigned CWB:1; // if is 11n packet, shows if is HT40 packet or not
 unsigned HT_length:16;// if is 11n packet, shows length of packet.
 unsigned Smoothing:1;
 unsigned Not_Sounding:1;
 unsigned:1;
 unsigned Aggregation:1;
 unsigned STBC:2;
 unsigned FEC_CODING:1; // if is 11n packet, shows if is LDPC packet or not.
 unsigned SGI:1;
 unsigned rxend_state:8;
 unsigned ampdu_cnt:8;
 unsigned channel:4; //which channel this packet in.
 unsigned:12;
};

struct SnifferPacket{
    struct RxControl rx_ctrl;
    uint8_t data[DATA_LENGTH];
    uint16_t cnt;
    uint16_t len;
};




/* ===== run-time variables ===== */
Buffer sdBuffer;
#ifdef USE_DISPLAY
SSD1306  display(0x3c, SDA_PIN, SCL_PIN);
#endif
Preferences preferences;

bool useSD = false;
bool buttonPressed = false;
bool buttonEnabled = true;
uint32_t lastDrawTime;
uint32_t lastButtonTime;
uint32_t tmpPacketCounter;
uint32_t pkts[MAX_X]; // here the packets per second will be saved
uint32_t deauths = 0; // deauth frames per second
unsigned int ch = 1; // current 802.11 channel
int rssiSum;

/* ===== functions ===== */
double getMultiplicator() {
  uint32_t maxVal = 1;
  for (int i = 0; i < MAX_X; i++) {
    if (pkts[i] > maxVal) maxVal = pkts[i];
  }
  if (maxVal > MAX_Y) return (double)MAX_Y / (double)maxVal;
  else return 1;
}

void setChannel(int newChannel) {
  ch = newChannel;
  if (ch > MAX_CH || ch < 1) ch = 1;

  preferences.begin("packetmonitor32", false);
  preferences.putUInt("channel", ch);
  preferences.end();

  esp_wifi_set_promiscuous(false);
  esp_wifi_set_channel(ch, WIFI_SECOND_CHAN_NONE);
  esp_wifi_set_promiscuous_rx_cb(&wifi_promiscuous);
  esp_wifi_set_promiscuous(true);
}

bool setupSD() {
  if (!SD_MMC.begin()) {
    Serial.println("Card Mount Failed");
    return false;
  }

  uint8_t cardType = SD_MMC.cardType();

  if (cardType == CARD_NONE) {
    Serial.println("No SD_MMC card attached");
    return false;
  }

  Serial.print("SD_MMC Card Type: ");
  if (cardType == CARD_MMC) {
    Serial.println("MMC");
  } else if (cardType == CARD_SD) {
    Serial.println("SDSC");
  } else if (cardType == CARD_SDHC) {
    Serial.println("SDHC");
  } else {
    Serial.println("UNKNOWN");
  }

  uint64_t cardSize = SD_MMC.cardSize() / (1024 * 1024);
  Serial.printf("SD_MMC Card Size: %lluMB\n", cardSize);

  return true;
}

void wifi_promiscuous(void* buf, wifi_promiscuous_pkt_type_t type) {
  wifi_promiscuous_pkt_t* pkt = (wifi_promiscuous_pkt_t*)buf;
  wifi_pkt_rx_ctrl_t ctrl = (wifi_pkt_rx_ctrl_t)pkt->rx_ctrl;

  if (type == WIFI_PKT_MGMT && (pkt->payload[0] == 0xA0 || pkt->payload[0] == 0xC0 )) deauths++;

  if (type == WIFI_PKT_MISC) return; // wrong packet type
  if (ctrl.sig_len > SNAP_LEN) return; // packet too long

  uint32_t packetLength = ctrl.sig_len;
  if (type == WIFI_PKT_MGMT) packetLength -= 4; // fix for known bug in the IDF https://github.com/espressif/esp-idf/issues/886


  

//, CHAN=%02d, RSSI=%02d,"
//  Serial.print(pkt->payload);
  tmpPacketCounter++;
  rssiSum += ctrl.rssi;




  unsigned int frameControl = ((unsigned int)pkt->payload[1] << 8) + pkt->payload[0];

  uint8_t version      = (frameControl & 0b0000000000000011) >> 0;
  uint8_t frameType    = (frameControl & 0b0000000000001100) >> 2;
  uint8_t frameSubType = (frameControl & 0b0000000011110000) >> 4;
  uint8_t toDS         = (frameControl & 0b0000000100000000) >> 8;
  uint8_t fromDS       = (frameControl & 0b0000001000000000) >> 9;

  // Only look for probe request packets
  if (frameType != TYPE_MANAGEMENT ||
  frameSubType != SUBTYPE_PROBE_REQUEST)
        return;

//  if (frameType != TYPE_MANAGEMENT )  return;



//  Serial.print(ctrl.rssi, DEC);
     
//Serial.print(".");

Serial.println("");
//Serial.printf("PACKET TYPE=%s CHAN=%02d, RSSI=%02d ",wifi_sniffer_packet_type2str(type),ctrl.channel,ctrl.rssi);
Serial.printf("PACKET TYPE=%s CHAN=%02d, RSSI=%02d ",wifi_sniffer_packet_type2str(type),pkt->rx_ctrl.channel,pkt->rx_ctrl.rssi);


        
  if (useSD) sdBuffer.addPacket(pkt->payload, packetLength);

  Serial.print("RSSI: ");
  Serial.print(pkt->rx_ctrl.rssi, DEC);

  char addr[] = "00:00:00:00:00:00";
  getMAC(addr, pkt->payload, 10);
  Serial.print(" Peer MAC: ");
  Serial.print(addr);


  uint8_t SSID_length = pkt->payload[25];
  Serial.print(" SSID: ");
  printDataSpan(26, SSID_length, pkt->payload);

}



static void getMAC(char *addr, uint8_t* data, uint16_t offset) {
  sprintf(addr, "%02x:%02x:%02x:%02x:%02x:%02x", data[offset+0], data[offset+1], data[offset+2], data[offset+3], data[offset+4], data[offset+5]);


}

static void printDataSpan(uint16_t start, uint16_t size, uint8_t* data) {
  for(uint16_t i = start; i < DATA_LENGTH && i < start+size; i++) {
    Serial.write(data[i]);
  }
}


char * wifi_sniffer_packet_type2str(wifi_promiscuous_pkt_type_t type)
{
  switch(type) {
  case WIFI_PKT_MGMT: return "MGMT";
  case WIFI_PKT_DATA: return "DATA";
  default:  
  case WIFI_PKT_MISC: return "MISC";
  }
}



void draw() {
#ifdef USE_DISPLAY
  double multiplicator = getMultiplicator();
  int len;
  int rssi;

  if (pkts[MAX_X - 1] > 0) rssi = rssiSum / (int)pkts[MAX_X - 1];
  else rssi = rssiSum;

  display.clear();
  display.drawString(0, 0, (String)ch + " | " + (String)rssi + " | Pkts " + (String)tmpPacketCounter + " [" + deauths + "]" + (useSD ? " | SD" : ""));
  display.drawLine(0, 63 - MAX_Y, MAX_X, 63 - MAX_Y);
  for (int i = 0; i < MAX_X; i++) {
    len = pkts[i] * multiplicator;
    display.drawLine(i, 63, i, 63 - (len > MAX_Y ? MAX_Y : len));
    if (i < MAX_X - 1) pkts[i] = pkts[i + 1];
  }
  display.display();
#endif
}

// callback when data is recv from Master
void OnDataRecv(const uint8_t *mac_addr, const uint8_t *data, int data_len) {
  char macStr[18];
  snprintf(macStr, sizeof(macStr), "%02x:%02x:%02x:%02x:%02x:%02x",
           mac_addr[0], mac_addr[1], mac_addr[2], mac_addr[3], mac_addr[4], mac_addr[5]);
  Serial.print("Last Packet Recv from: "); Serial.println(macStr);
  Serial.print("Last Packet Recv Data: "); Serial.println(*data);
  Serial.println("");
}


/* ===== main program ===== */
void setup() {

  // Serial
  Serial.begin(115200);

 // EspNOW g4lile0

 Serial.println("ESPNow/Basic/Slave Example");
  //Set device in AP mode to begin with
 // WiFi.mode(WIFI_AP);
  // configure device AP mode
//  configDeviceAP();
  // This is the mac address of the Slave in AP Mode
//  Serial.print("AP MAC: "); Serial.println(WiFi.softAPmacAddress());
  // Init ESPNow with a fallback logic
  //InitESPNow();
  // Once ESPNow is successfully Init, we will register for recv CB to
  // get recv packer info.
  //esp_now_register_recv_cb(OnDataRecv);




  // Settings
  preferences.begin("packetmonitor32", false);
  ch = preferences.getUInt("channel", 1);
  preferences.end();




  // System & WiFi
  nvs_flash_init();
  tcpip_adapter_init();
  wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
  ESP_ERROR_CHECK(esp_event_loop_init(event_handler, NULL));
  ESP_ERROR_CHECK(esp_wifi_init(&cfg));
  //ESP_ERROR_CHECK(esp_wifi_set_country(WIFI_COUNTRY_EU));
  ESP_ERROR_CHECK(esp_wifi_set_storage(WIFI_STORAGE_RAM));
  ESP_ERROR_CHECK(esp_wifi_set_mode(WIFI_MODE_NULL));
  ESP_ERROR_CHECK(esp_wifi_start());

  esp_wifi_set_channel(ch, WIFI_SECOND_CHAN_NONE);

  // SD card
  sdBuffer = Buffer();

  if (setupSD())
    sdBuffer.open(&SD_MMC);

  // I/O
  pinMode(BUTTON_PIN, INPUT_PULLUP);

  // display
#ifdef USE_DISPLAY
  pinMode(16,OUTPUT);
  digitalWrite(16, LOW);    // set GPIO16 low to reset OLED
  delay(50); 
  digitalWrite(16, HIGH); // while OLED is running, must set GPIO16 in high
  display.init();
#ifdef FLIP_DISPLAY
  display.flipScreenVertically();
#endif

  /* show start screen */
  display.clear();
  display.setFont(ArialMT_Plain_16);
  display.drawString(6, 6, "PacketMonitor32");
  display.setFont(ArialMT_Plain_10);
  display.drawString(24, 34, "Made with <3 by");
  display.drawString(29, 44, "@Spacehuhn");
  display.display();

  delay(1000);
#endif

  // second core
  xTaskCreatePinnedToCore(
    coreTask,               /* Function to implement the task */
    "coreTask",             /* Name of the task */
    2500,                   /* Stack size in words */
    NULL,                   /* Task input parameter */
    0,                      /* Priority of the task */
    NULL,                   /* Task handle. */
    RUNNING_CORE);          /* Core where the task should run */

  // start Wifi sniffer
  esp_wifi_set_promiscuous_rx_cb(&wifi_promiscuous);
  esp_wifi_set_promiscuous(true);
}

void loop() {
  vTaskDelay(portMAX_DELAY);
}

void coreTask( void * p ) {

  uint32_t currentTime;

  while (true) {

    currentTime = millis();

    /* bit of spaghetti code, have to clean this up later :D */

    // check button
    if (digitalRead(BUTTON_PIN) == LOW) {
      if (buttonEnabled) {
        if (!buttonPressed) {
          buttonPressed = true;
          lastButtonTime = currentTime;
        } else if (currentTime - lastButtonTime >= 2000) {
          if (useSD) {
            useSD = false;
            sdBuffer.close(&SD_MMC);
            draw();
          } else {
            if (setupSD())
              sdBuffer.open(&SD_MMC);
            draw();
          }
          buttonPressed = false;
          buttonEnabled = false;
        }
      }
    } else {
      if (buttonPressed) {
        setChannel(ch + 1);
        draw();
      }
      buttonPressed = false;
      buttonEnabled = true;
    }

    // save buffer to SD
    if (useSD)
      sdBuffer.save(&SD_MMC);

    // draw Display
    if ( currentTime - lastDrawTime > 1000 ) {
      lastDrawTime = currentTime;
      // Serial.printf("\nFree RAM %u %u\n", heap_caps_get_minimum_free_size(MALLOC_CAP_8BIT), heap_caps_get_minimum_free_size(MALLOC_CAP_32BIT));// for debug purposes

      pkts[MAX_X - 1] = tmpPacketCounter;

      draw();

//      Serial.println((String)pkts[MAX_X - 1]);

      tmpPacketCounter = 0;
      deauths = 0;
      rssiSum = 0;
    }

    // Serial input
    if (Serial.available()) {
      ch = Serial.readString().toInt();
      if (ch < 1 || ch > 14) ch = 1;
      setChannel(ch);
    }

  }

}


================================================
FILE: README.md
================================================
# Heimdall-WiFi-Radar
Heimdall WiFi Radar ESP8266 


================================================
FILE: README.txt
================================================
# pHAT Sniffer
Raspberry Pi + ESP8266 pHAT WiFi sniffer

![Screenshot](screenshot.png "Screenshot")

![Device](device.jpg "Device")


================================================
FILE: circles_no_zoom.html
================================================
<!DOCTYPE html>
<meta charset="utf-8">
<style>

circle {
  fill: rgb(31, 119, 180);
  fill-opacity: .25;
  stroke: rgb(31, 119, 180);
  stroke-width: 1px;
}

.leaf circle {
  fill: #ff7f0e;
  fill-opacity: 1;
}

text {
  font: 10px sans-serif;
  text-anchor: middle;
}

</style>
<svg width="960" height="960"></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script>

var circles = {"name": "root", "children": [{"name": "Samsung", "size": 6.0}, {"name": "Unknown", "size": 5.656854249492381}, {"name": "Comtrend", "children": [{"name": "Apple", "size": 4.0}, {"name": "Comtrend", "size": 4.898979485566356}]}, {"name": "MitsumiE", "size": 6.928203230275509}, {"name": "ASUS", "children": [{"name": "Cybertan", "size": 10.770329614269007}, {"name": "MurataMa", "size": 10.770329614269007}, {"name": "Huawei", "size": 10.954451150103322}]}, {"name": "Mitrasta", "size": 5.291502622129181}, {"name": "Apple", "children": [{"name": "Comtrend", "size": 2.8284271247461903}]}, {"name": "Comtrend", "children": [{"name": "Comtrend", "size": 3.4641016151377544}, {"name": "Apple", "size": 4.898979485566356}, {"name": "Unknown", "size": 4.47213595499958}]}, {"name": "Arcadyan", "children": [{"name": "Arcadyan", "size": 3.4641016151377544}]}, {"name": "Mitrasta", "size": 6.0}, {"name": "MitsumiE", "size": 6.6332495807108}, {"name": "Amper", "size": 5.291502622129181}, {"name": "Mitrasta", "size": 4.898979485566356}, {"name": "AskeyCom", "children": [{"name": "AskeyCom", "size": 2.8284271247461903}]}, {"name": "AskeyCom", "children": [{"name": "AskeyCom", "size": 4.898979485566356}, {"name": "Unknown", "size": 6.0}, {"name": "Motorola", "size": 6.324555320336759}, {"name": "AskeyCom", "size": 5.656854249492381}]}, {"name": "Motorola", "size": 5.656854249492381}, {"name": "Unknown", "size": 15.748015748023622}, {"name": "Arcadyan", "children": [{"name": "Arcadyan", "size": 4.0}, {"name": "HonHaiPr", "size": 4.898979485566356}, {"name": "Google", "size": 4.47213595499958}]}, {"name": "Unknown", "children": [{"name": "Samsung", "size": 6.0}]}, {"name": "Lesswire", "size": 8.48528137423857}, {"name": "AskeyCom", "children": [{"name": "AskeyCom", "size": 5.291502622129181}, {"name": "HP", "size": 5.291502622129181}, {"name": "AskeyCom", "size": 4.898979485566356}]}, {"name": "TP-Link", "children": [{"name": "Espressi", "size": 15.0996688705415}, {"name": "Unknown", "size": 15.620499351813308}, {"name": "Intel", "size": 14.966629547095765}, {"name": "Elitegro", "size": 15.620499351813308}, {"name": "XiaomiCo", "size": 15.362291495737216}, {"name": "Intel", "size": 15.0996688705415}]}, {"name": "Mitrasta", "children": [{"name": "Mitrasta"}, {"name": "Huawei", "size": 4.898979485566356}]}, {"name": "TP-Link", "children": [{"name": "Unknown", "size": 8.0}]}, {"name": "Unknown", "children": [{"name": "Apple", "size": 9.797958971132712}]}, {"name": "MitsumiE", "size": 6.6332495807108}, {"name": "CompexPt", "size": 7.745966692414834}, {"name": "Unknown", "size": 6.6332495807108}, {"name": "WistronN", "size": 6.324555320336759}, {"name": "CompexPt", "size": 5.291502622129181}, {"name": "Amper", "size": 4.0}, {"name": "Unknown", "children": [{"name": "Unknown", "size": 5.291502622129181}]}, {"name": "Samsung", "size": 4.47213595499958}, {"name": "Unknown", "size": 4.898979485566356}, {"name": "Ubiquiti", "children": [{"name": "Routerbo", "size": 6.324555320336759}, {"name": "Huawei", "size": 5.291502622129181}, {"name": "Samsung", "size": 5.291502622129181}, {"name": "Samsung", "size": 6.0}, {"name": "Fujitsu", "size": 4.0}, {"name": "Huawei", "size": 6.0}]}, {"name": "Arcadyan", "children": [{"name": "Samsung", "size": 11.135528725660043}, {"name": "XiaomiCo", "size": 5.656854249492381}, {"name": "Apple", "size": 12.806248474865697}, {"name": "Unknown", "size": 11.832159566199232}, {"name": "TP-Link", "size": 12.806248474865697}, {"name": "Apple", "size": 13.114877048604}, {"name": "Samsung", "size": 9.797958971132712}, {"name": "Arcadyan", "size": 12.165525060596439}]}, {"name": "Unknown", "children": [{"name": "Quantenn", "size": 10.954451150103322}, {"name": "Huawei", "size": 10.770329614269007}, {"name": "Unknown", "size": 10.770329614269007}]}, {"name": "GlodioTe", "size": 6.6332495807108}, {"name": "HP", "size": 6.324555320336759}, {"name": "Zte", "size": 4.898979485566356}, {"name": "MitsumiE", "size": 6.0}, {"name": "AskeyCom", "children": [{"name": "Samsung", "size": 5.291502622129181}, {"name": "ASUS", "size": 4.0}, {"name": "Huawei", "size": 4.898979485566356}, {"name": "Synology", "size": 4.898979485566356}, {"name": "AskeyCom", "size": 4.898979485566356}, {"name": "Apple", "size": 6.324555320336759}]}, {"name": "Mitrasta", "size": 4.47213595499958}, {"name": "Unknown", "size": 1}, {"name": "Tecom", "size": 4.47213595499958}, {"name": "Mitrasta", "children": [{"name": "Huawei", "size": 5.291502622129181}, {"name": "Unknown", "size": 3.4641016151377544}, {"name": "Unknown"}, {"name": "Huawei", "size": 5.291502622129181}, {"name": "Unknown", "size": 5.291502622129181}, {"name": "Samsung", "size": 6.0}, {"name": "Samsung", "size": 4.898979485566356}, {"name": "Mitrasta", "size": 4.47213595499958}, {"name": "Zte", "size": 5.656854249492381}]}, {"name": "Amper", "size": 3.4641016151377544}, {"name": "Apple", "size": 10.583005244258363}, {"name": "Lesswire", "size": 7.211102550927978}, {"name": "Arcadyan", "children": [{"name": "Arcadyan", "size": 6.0}, {"name": "HonHaiPr", "size": 4.47213595499958}]}, {"name": "Mitrasta", "children": [{"name": "Apple", "size": 4.47213595499958}, {"name": "Apple", "size": 5.291502622129181}, {"name": "Mitrasta", "size": 4.0}, {"name": "Apple", "size": 5.656854249492381}, {"name": "Samsung", "size": 4.47213595499958}]}, {"name": "Bq", "size": 6.6332495807108}, {"name": "Unknown", "children": [{"name": "Mitrasta", "size": 4.0}]}, {"name": "AskeyCom", "children": [{"name": "AskeyCom", "size": 4.898979485566356}, {"name": "ASUS", "size": 4.898979485566356}]}, {"name": "Unknown", "size": 8.246211251235321}, {"name": "Huawei", "size": 8.0}, {"name": "Unknown", "children": [{"name": "Apple", "size": 5.656854249492381}, {"name": "AirgoNet", "size": 5.656854249492381}, {"name": "Unknown", "size": 5.656854249492381}, {"name": "Apple", "size": 6.0}, {"name": "Unknown", "size": 5.291502622129181}]}, {"name": "Bq", "size": 6.928203230275509}, {"name": "MitsumiE", "size": 6.0}, {"name": "Arcadyan", "children": [{"name": "Arcadyan", "size": 4.47213595499958}]}, {"name": "Zte", "children": [{"name": "Pegatron", "size": 6.928203230275509}]}, {"name": "Netgear", "size": 2.8284271247461903}, {"name": "Unknown", "size": 16.492422502470642}, {"name": "Zte", "children": [{"name": "Bq", "size": 5.656854249492381}]}, {"name": "GarminIn", "size": 6.0}, {"name": "Unknown", "size": 5.291502622129181}, {"name": "Arcadyan", "children": [{"name": "Samsung", "size": 6.0}, {"name": "Arcadyan", "size": 4.47213595499958}, {"name": "Samsung", "size": 5.291502622129181}]}, {"name": "Arcadyan", "children": [{"name": "Arcadyan", "size": 4.47213595499958}, {"name": "Apple", "size": 5.291502622129181}]}, {"name": "Comtrend", "children": [{"name": "Apple", "size": 5.291502622129181}, {"name": "Comtrend", "size": 4.47213595499958}]}, {"name": "Zte", "size": 4.898979485566356}, {"name": "D-Link", "size": 4.898979485566356}, {"name": "Arcadyan", "children": [{"name": "Huawei", "size": 5.291502622129181}, {"name": "Unknown", "size": 4.898979485566356}, {"name": "Arcadyan", "size": 7.211102550927978}, {"name": "Samsung", "size": 3.4641016151377544}, {"name": "Samsung", "size": 4.0}, {"name": "Bq", "size": 6.324555320336759}, {"name": "Nokia", "size": 7.211102550927978}]}, {"name": "Unknown", "size": 3.4641016151377544}, {"name": "D-Link", "size": 7.483314773547883}, {"name": "Motorola", "size": 6.324555320336759}, {"name": "Zte", "children": [{"name": "Unknown", "size": 5.656854249492381}, {"name": "Samsung", "size": 4.47213595499958}, {"name": "Samsung", "size": 5.656854249492381}]}, {"name": "Arcadyan", "children": [{"name": "Arcadyan", "size": 6.324555320336759}]}, {"name": "TP-Link", "children": [{"name": "Apple", "size": 8.48528137423857}, {"name": "Huawei", "size": 9.797958971132712}]}, {"name": "Zte", "children": [{"name": "TP-Link", "size": 16.73320053068151}, {"name": "Zte", "size": 16.492422502470642}, {"name": "Apple", "size": 12.165525060596439}, {"name": "XiaomiCo", "size": 17.320508075688775}, {"name": "BelkinIn", "size": 9.591663046625438}, {"name": "Unknown", "size": 16.492422502470642}, {"name": "RealtekS", "size": 9.797958971132712}]}, {"name": "Arcadyan", "size": 4.0}]};







var svg = d3.select("svg"),
    diameter = +svg.attr("width"),
    g = svg.append("g").attr("transform", "translate(2,2)"),
    format = d3.format(",d");

var pack = d3.pack()
    .size([diameter - 4, diameter - 4]);


  root = d3.hierarchy(circles)
      .sum(function(d) { return d.size; })
      .sort(function(a, b) { return b.value - a.value; });

  var node = g.selectAll(".node")
    .data(pack(root).descendants())
    .enter().append("g")
      .attr("class", function(d) { return d.children ? "node" : "leaf node"; })
      .attr("transform", function(d) { return "translate(" + d.x + "," + d.y + ")"; });

  node.append("title")
      .text(function(d) { return d.data.name + "\n" + format(d.value); });

  node.append("circle")
      .attr("r", function(d) { return d.r; });

  node.filter(function(d) { return !d.children; }).append("text")
      .attr("dy", "0.3em")
      .text(function(d) { return d.data.name.substring(0, d.r / 3); });


</script>


================================================
FILE: circles_zoom.html
================================================
<!DOCTYPE html>
<meta charset="utf-8">
<style>

.node {
  cursor: pointer;
}

.node:hover {
  stroke: #000;
  stroke-width: 1.5px;
}

.node--leaf {
  fill: white;
}

.label {
  font: 11px "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-anchor: middle;
  text-shadow: 0 1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff;
}

.label,
.node--root,
.node--leaf {
  pointer-events: none;
}

</style>
<svg width="960" height="960"></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script>

var circles = {"name": "root", "children": [{"name": "Samsung", "size": 6.0}, {"name": "Unknown", "size": 5.656854249492381}, {"name": "Comtrend", "children": [{"name": "Apple", "size": 4.0}, {"name": "Comtrend", "size": 4.898979485566356}]}, {"name": "MitsumiE", "size": 6.928203230275509}, {"name": "ASUS", "children": [{"name": "Cybertan", "size": 10.770329614269007}, {"name": "MurataMa", "size": 10.770329614269007}, {"name": "Huawei", "size": 10.954451150103322}]}, {"name": "Mitrasta", "size": 5.291502622129181}, {"name": "Apple", "children": [{"name": "Comtrend", "size": 2.8284271247461903}]}, {"name": "Comtrend", "children": [{"name": "Comtrend", "size": 3.4641016151377544}, {"name": "Apple", "size": 4.898979485566356}, {"name": "Unknown", "size": 4.47213595499958}]}, {"name": "Arcadyan", "children": [{"name": "Arcadyan", "size": 3.4641016151377544}]}, {"name": "Mitrasta", "size": 6.0}, {"name": "MitsumiE", "size": 6.6332495807108}, {"name": "Amper", "size": 5.291502622129181}, {"name": "Mitrasta", "size": 4.898979485566356}, {"name": "AskeyCom", "children": [{"name": "AskeyCom", "size": 2.8284271247461903}]}, {"name": "AskeyCom", "children": [{"name": "AskeyCom", "size": 4.898979485566356}, {"name": "Unknown", "size": 6.0}, {"name": "Motorola", "size": 6.324555320336759}, {"name": "AskeyCom", "size": 5.656854249492381}]}, {"name": "Motorola", "size": 5.656854249492381}, {"name": "Unknown", "size": 15.748015748023622}, {"name": "Arcadyan", "children": [{"name": "Arcadyan", "size": 4.0}, {"name": "HonHaiPr", "size": 4.898979485566356}, {"name": "Google", "size": 4.47213595499958}]}, {"name": "Unknown", "children": [{"name": "Samsung", "size": 6.0}]}, {"name": "Lesswire", "size": 8.48528137423857}, {"name": "AskeyCom", "children": [{"name": "AskeyCom", "size": 5.291502622129181}, {"name": "HP", "size": 5.291502622129181}, {"name": "AskeyCom", "size": 4.898979485566356}]}, {"name": "TP-Link", "children": [{"name": "Espressi", "size": 15.0996688705415}, {"name": "Unknown", "size": 15.620499351813308}, {"name": "Intel", "size": 14.966629547095765}, {"name": "Elitegro", "size": 15.620499351813308}, {"name": "XiaomiCo", "size": 15.362291495737216}, {"name": "Intel", "size": 15.0996688705415}]}, {"name": "Mitrasta", "children": [{"name": "Mitrasta"}, {"name": "Huawei", "size": 4.898979485566356}]}, {"name": "TP-Link", "children": [{"name": "Unknown", "size": 8.0}]}, {"name": "Unknown", "children": [{"name": "Apple", "size": 9.797958971132712}]}, {"name": "MitsumiE", "size": 6.6332495807108}, {"name": "CompexPt", "size": 7.745966692414834}, {"name": "Unknown", "size": 6.6332495807108}, {"name": "WistronN", "size": 6.324555320336759}, {"name": "CompexPt", "size": 5.291502622129181}, {"name": "Amper", "size": 4.0}, {"name": "Unknown", "children": [{"name": "Unknown", "size": 5.291502622129181}]}, {"name": "Samsung", "size": 4.47213595499958}, {"name": "Unknown", "size": 4.898979485566356}, {"name": "Ubiquiti", "children": [{"name": "Routerbo", "size": 6.324555320336759}, {"name": "Huawei", "size": 5.291502622129181}, {"name": "Samsung", "size": 5.291502622129181}, {"name": "Samsung", "size": 6.0}, {"name": "Fujitsu", "size": 4.0}, {"name": "Huawei", "size": 6.0}]}, {"name": "Arcadyan", "children": [{"name": "Samsung", "size": 11.135528725660043}, {"name": "XiaomiCo", "size": 5.656854249492381}, {"name": "Apple", "size": 12.806248474865697}, {"name": "Unknown", "size": 11.832159566199232}, {"name": "TP-Link", "size": 12.806248474865697}, {"name": "Apple", "size": 13.114877048604}, {"name": "Samsung", "size": 9.797958971132712}, {"name": "Arcadyan", "size": 12.165525060596439}]}, {"name": "Unknown", "children": [{"name": "Quantenn", "size": 10.954451150103322}, {"name": "Huawei", "size": 10.770329614269007}, {"name": "Unknown", "size": 10.770329614269007}]}, {"name": "GlodioTe", "size": 6.6332495807108}, {"name": "HP", "size": 6.324555320336759}, {"name": "Zte", "size": 4.898979485566356}, {"name": "MitsumiE", "size": 6.0}, {"name": "AskeyCom", "children": [{"name": "Samsung", "size": 5.291502622129181}, {"name": "ASUS", "size": 4.0}, {"name": "Huawei", "size": 4.898979485566356}, {"name": "Synology", "size": 4.898979485566356}, {"name": "AskeyCom", "size": 4.898979485566356}, {"name": "Apple", "size": 6.324555320336759}]}, {"name": "Mitrasta", "size": 4.47213595499958}, {"name": "Unknown", "size": 1}, {"name": "Tecom", "size": 4.47213595499958}, {"name": "Mitrasta", "children": [{"name": "Huawei", "size": 5.291502622129181}, {"name": "Unknown", "size": 3.4641016151377544}, {"name": "Unknown"}, {"name": "Huawei", "size": 5.291502622129181}, {"name": "Unknown", "size": 5.291502622129181}, {"name": "Samsung", "size": 6.0}, {"name": "Samsung", "size": 4.898979485566356}, {"name": "Mitrasta", "size": 4.47213595499958}, {"name": "Zte", "size": 5.656854249492381}]}, {"name": "Amper", "size": 3.4641016151377544}, {"name": "Apple", "size": 10.583005244258363}, {"name": "Lesswire", "size": 7.211102550927978}, {"name": "Arcadyan", "children": [{"name": "Arcadyan", "size": 6.0}, {"name": "HonHaiPr", "size": 4.47213595499958}]}, {"name": "Mitrasta", "children": [{"name": "Apple", "size": 4.47213595499958}, {"name": "Apple", "size": 5.291502622129181}, {"name": "Mitrasta", "size": 4.0}, {"name": "Apple", "size": 5.656854249492381}, {"name": "Samsung", "size": 4.47213595499958}]}, {"name": "Bq", "size": 6.6332495807108}, {"name": "Unknown", "children": [{"name": "Mitrasta", "size": 4.0}]}, {"name": "AskeyCom", "children": [{"name": "AskeyCom", "size": 4.898979485566356}, {"name": "ASUS", "size": 4.898979485566356}]}, {"name": "Unknown", "size": 8.246211251235321}, {"name": "Huawei", "size": 8.0}, {"name": "Unknown", "children": [{"name": "Apple", "size": 5.656854249492381}, {"name": "AirgoNet", "size": 5.656854249492381}, {"name": "Unknown", "size": 5.656854249492381}, {"name": "Apple", "size": 6.0}, {"name": "Unknown", "size": 5.291502622129181}]}, {"name": "Bq", "size": 6.928203230275509}, {"name": "MitsumiE", "size": 6.0}, {"name": "Arcadyan", "children": [{"name": "Arcadyan", "size": 4.47213595499958}]}, {"name": "Zte", "children": [{"name": "Pegatron", "size": 6.928203230275509}]}, {"name": "Netgear", "size": 2.8284271247461903}, {"name": "Unknown", "size": 16.492422502470642}, {"name": "Zte", "children": [{"name": "Bq", "size": 5.656854249492381}]}, {"name": "GarminIn", "size": 6.0}, {"name": "Unknown", "size": 5.291502622129181}, {"name": "Arcadyan", "children": [{"name": "Samsung", "size": 6.0}, {"name": "Arcadyan", "size": 4.47213595499958}, {"name": "Samsung", "size": 5.291502622129181}]}, {"name": "Arcadyan", "children": [{"name": "Arcadyan", "size": 4.47213595499958}, {"name": "Apple", "size": 5.291502622129181}]}, {"name": "Comtrend", "children": [{"name": "Apple", "size": 5.291502622129181}, {"name": "Comtrend", "size": 4.47213595499958}]}, {"name": "Zte", "size": 4.898979485566356}, {"name": "D-Link", "size": 4.898979485566356}, {"name": "Arcadyan", "children": [{"name": "Huawei", "size": 5.291502622129181}, {"name": "Unknown", "size": 4.898979485566356}, {"name": "Arcadyan", "size": 7.211102550927978}, {"name": "Samsung", "size": 3.4641016151377544}, {"name": "Samsung", "size": 4.0}, {"name": "Bq", "size": 6.324555320336759}, {"name": "Nokia", "size": 7.211102550927978}]}, {"name": "Unknown", "size": 3.4641016151377544}, {"name": "D-Link", "size": 7.483314773547883}, {"name": "Motorola", "size": 6.324555320336759}, {"name": "Zte", "children": [{"name": "Unknown", "size": 5.656854249492381}, {"name": "Samsung", "size": 4.47213595499958}, {"name": "Samsung", "size": 5.656854249492381}]}, {"name": "Arcadyan", "children": [{"name": "Arcadyan", "size": 6.324555320336759}]}, {"name": "TP-Link", "children": [{"name": "Apple", "size": 8.48528137423857}, {"name": "Huawei", "size": 9.797958971132712}]}, {"name": "Zte", "children": [{"name": "TP-Link", "size": 16.73320053068151}, {"name": "Zte", "size": 16.492422502470642}, {"name": "Apple", "size": 12.165525060596439}, {"name": "XiaomiCo", "size": 17.320508075688775}, {"name": "BelkinIn", "size": 9.591663046625438}, {"name": "Unknown", "size": 16.492422502470642}, {"name": "RealtekS", "size": 9.797958971132712}]}, {"name": "Arcadyan", "size": 4.0}]};



var svg = d3.select("svg"),
    margin = 20,
    diameter = +svg.attr("width"),
    g = svg.append("g").attr("transform", "translate(" + diameter / 2 + "," + diameter / 2 + ")");

var color = d3.scaleLinear()
    .domain([-1, 5])
    .range(["hsl(152,80%,80%)", "hsl(228,30%,40%)"])
    .interpolate(d3.interpolateHcl);

var pack = d3.pack()
    .size([diameter - margin, diameter - margin])
    .padding(2);


  root = d3.hierarchy(circles)
      .sum(function(d) { return d.size; })
      .sort(function(a, b) { return b.value - a.value; });

  var focus = root,
      nodes = pack(root).descendants(),
      view;

  var circle = g.selectAll("circle")
    .data(nodes)
    .enter().append("circle")
      .attr("class", function(d) { return d.parent ? d.children ? "node" : "node node--leaf" : "node node--root"; })
      .style("fill", function(d) { return d.children ? color(d.depth) : null; })
      .on("click", function(d) { if (focus !== d) zoom(d), d3.event.stopPropagation(); });

  var text = g.selectAll("text")
    .data(nodes)
    .enter().append("text")
      .attr("class", "label")
      .style("fill-opacity", function(d) { return d.parent === root ? 1 : 0; })
      .style("display", function(d) { return d.parent === root ? "inline" : "none"; })
      .text(function(d) { return d.data.name; });

  var node = g.selectAll("circle,text");

  svg
      .style("background", color(-1))
      .on("click", function() { zoom(root); });

  zoomTo([root.x, root.y, root.r * 2 + margin]);

  function zoom(d) {
    var focus0 = focus; focus = d;

    var transition = d3.transition()
        .duration(d3.event.altKey ? 7500 : 750)
        .tween("zoom", function(d) {
          var i = d3.interpolateZoom(view, [focus.x, focus.y, focus.r * 2 + margin]);
          return function(t) { zoomTo(i(t)); };
        });

    transition.selectAll("text")
      .filter(function(d) { return d.parent === focus || this.style.display === "inline"; })
        .style("fill-opacity", function(d) { return d.parent === focus ? 1 : 0; })
        .on("start", function(d) { if (d.parent === focus) this.style.display = "inline"; })
        .on("end", function(d) { if (d.parent !== focus) this.style.display = "none"; });
  }

  function zoomTo(v) {
    var k = diameter / v[2]; view = v;
    node.attr("transform", function(d) { return "translate(" + (d.x - v[0]) * k + "," + (d.y - v[1]) * k + ")"; });
    circle.attr("r", function(d) { return d.r * k; });
  }

</script>


================================================
FILE: data/vendors.tsv
================================================
00:00:00	00:00:00
00:00:01	Superlan
00:00:02	BbnWasIn
00:00:03	Xerox
00:00:04	Xerox
00:00:05	Xerox
00:00:06	Xerox
00:00:07	Xerox
00:00:08	Xerox
00:00:09	Powerpip
00:00:0a	OmronTat
00:00:0b	Matrix
00:00:0c	Cisco
00:00:0d	Fibronic
00:00:0e	Fujitsu
00:00:0f	Next
00:00:10	Hughes
00:00:11	Tektrnix
00:00:12	Informat
00:00:13	Camex
00:00:14	Netronix
00:00:15	Datapoin
00:00:16	DuPontPi
00:00:17	Oracle
00:00:18	WebsterC
00:00:19	AppliedD
00:00:1a	AMD
00:00:1b	NovellNo
00:00:1c	JdrMicro
00:00:1d	Cabletro
00:00:1e	TelsistI
00:00:1f	Cryptall
00:00:20	DIAB
00:00:21	SC&C
00:00:22	VisualTe
00:00:23	AbbAutom
00:00:24	Olicom
00:00:25	Ramtek
00:00:26	Sha-Ken
00:00:27	JapanRad
00:00:28	Prodigy
00:00:29	Imc
00:00:2a	Trw
00:00:2b	CrispAut
00:00:2c	Nrc-Netw
00:00:2d	Chromati
00:00:2e	SocieteE
00:00:2f	Timeplex
00:00:30	VgLabora
00:00:31	QpsxComm
00:00:32	GptReass
00:00:33	EganMach
00:00:34	NetworkR
00:00:35	Spectrag
00:00:36	Atari
00:00:37	OxfordMe
00:00:38	CssLabs
00:00:39	Toshiba
00:00:3a	Chyron
00:00:3b	Hyundai/
00:00:3c	Auspex
00:00:3d	AT&T
00:00:3e	Simpact
00:00:3f	Syntrex
00:00:40	Applicon
00:00:41	Ice
00:00:42	MetierMa
00:00:43	MicroTec
00:00:44	Castelle
00:00:45	FordAero
00:00:46	ISC-BR
00:00:47	NicoletI
00:00:48	Epson
00:00:49	Apricot
00:00:4a	AdcCoden
00:00:4b	APT
00:00:4c	Nec
00:00:4d	Dci
00:00:4e	Ampex
00:00:4f	Logicraf
00:00:50	Radisys
00:00:51	HobElect
00:00:52	OpticalD
00:00:53	Compucor
00:00:54	Schneide
00:00:55	AT&T
00:00:56	DrBStruc
00:00:57	Scitex
00:00:58	RacoreCo
00:00:59	Hellige
00:00:5a	SkSchnei
00:00:5b	Eltec
00:00:5c	Telemati
00:00:5d	Rce
00:00:5e	USDepart
00:00:5f	Sumitomo
00:00:60	KontronE
00:00:61	GatewayC
00:00:62	Hneywell
00:00:63	HP
00:00:64	Yokogawa
00:00:65	NetworkG
00:00:66	Talaris
00:00:67	Soft*Rit
00:00:68	Rosemoun
00:00:69	SGI
00:00:6a	Computer
00:00:6b	MIPS
00:00:6c	Private
00:00:6d	Case
00:00:6e	Artisoft
00:00:6f	MadgeNet
00:00:70	Hcl
00:00:71	Adra
00:00:72	Miniware
00:00:73	Dupont
00:00:74	Ricoh
00:00:75	BellNort
00:00:76	AbekasVi
00:00:77	Interpha
00:00:78	LabtamAu
00:00:79	Networth
00:00:7a	Ardent
00:00:7b	Research
00:00:7c	Ampere
00:00:7d	Cray
00:00:7e	Netframe
00:00:7f	Linotype
00:00:80	CrayComm
00:00:81	Synoptic
00:00:82	LectraSy
00:00:83	TadpoleT
00:00:84	Aquila?A
00:00:85	Canon
00:00:86	GatewayC
00:00:87	Hitachi
00:00:88	BrocadeC
00:00:89	CaymanSy
00:00:8a	Datahous
00:00:8b	Infotron
00:00:8c	AlloyCom
00:00:8d	Cryptek
00:00:8e	Solbourn
00:00:8f	Raytheon
00:00:90	Microcom
00:00:91	Anritsu
00:00:92	UnisysCo
00:00:93	Proteon
00:00:94	AsanteMa
00:00:95	Sony
00:00:96	MarconiE
00:00:97	Epoch
00:00:98	CrossCom
00:00:99	MemorexT
00:00:9a	RcComput
00:00:9b	Informat
00:00:9c	RolmMil-
00:00:9d	LocusCom
00:00:9e	MarliSA
00:00:9f	Amerista
00:00:a0	SanyoEle
00:00:a1	Marquett
00:00:a2	Wellflee
00:00:a3	NAT
00:00:a4	Acorn
00:00:a5	CSC
00:00:a6	NetworkG
00:00:a7	NCD
00:00:a8	StratusC
00:00:a9	NetSys
00:00:aa	XeroxXer
00:00:ab	LogicMod
00:00:ac	ConwareN
00:00:ad	BrukerIn
00:00:ae	Dassault
00:00:af	NuclearD
00:00:b0	RndRadNe
00:00:b1	AlphaMic
00:00:b2	Televide
00:00:b3	Cimlinc
00:00:b4	Edimax
00:00:b5	Databili
00:00:b6	Micro-Ma
00:00:b7	DoveFast
00:00:b8	Seikosha
00:00:b9	Mcdonnel
00:00:ba	Siig
00:00:bb	Tri-Data
00:00:bc	Allen-Br
00:00:bd	Mitsubis
00:00:be	NtiGroup
00:00:bf	Symmetri
00:00:c0	WesternD
00:00:c1	Olicom
00:00:c2	Informat
00:00:c3	HarrisCo
00:00:c4	WatersDi
00:00:c5	Farallon
00:00:c6	HpIntell
00:00:c7	Arix
00:00:c8	Altos
00:00:c9	EmulexTe
00:00:ca	LancityC
00:00:cb	Compu-Sh
00:00:cc	Densan
00:00:cd	Industri
00:00:ce	Megadata
00:00:cf	HayesMic
00:00:d0	Develcon
00:00:d1	Adaptec
00:00:d2	Sbe
00:00:d3	WangLabs
00:00:d4	Puredata
00:00:d5	Microgno
00:00:d6	PunchLin
00:00:d7	Dartmout
00:00:d8	OldNovel
00:00:d9	NipponTe
00:00:da	Atex
00:00:db	BritishT
00:00:dc	HayesMic
00:00:dd	Gould
00:00:de	Unigraph
00:00:df	BellHowe
00:00:e0	Quadram
00:00:e1	Hitachi
00:00:e2	AcerCoun
00:00:e3	Integrat
00:00:e4	Mips?
00:00:e5	Sigmex
00:00:e6	AptorPro
00:00:e7	StarGate
00:00:e8	AcctonTe
00:00:e9	Isicad
00:00:ea	Upnod
00:00:eb	Matsushi
00:00:ec	Micropro
00:00:ed	April
00:00:ee	NetworkD
00:00:ef	AlantecN
00:00:f0	Samsung
00:00:f1	MagnaCom
00:00:f2	SpiderCo
00:00:f3	GandalfD
00:00:f4	AlliedTe
00:00:f5	DiamondS
00:00:f6	Madge
00:00:f7	YouthKee
00:00:f8	Dec
00:00:f9	Quotron
00:00:fa	Microsag
00:00:fb	RechnerZ
00:00:fc	Meiko
00:00:fd	HighLeve
00:00:fe	Annapoli
00:00:ff	CamtecEl
00:01:00	EquipTra
00:01:01	Private
00:01:02	BbnBoltB
00:01:03	3Com
00:01:04	Dvico
00:01:05	Beckhoff
00:01:06	TewsDate
00:01:07	Leiser
00:01:08	AvlabTec
00:01:09	NaganoJa
00:01:0a	CisTechn
00:01:0b	SpaceCyb
00:01:0c	SystemTa
00:01:0d	Teledyne
00:01:0e	Bri-Link
00:01:0f	BrocadeC
00:01:10	GothamNe
00:01:11	Idigm
00:01:12	SharkMul
00:01:13	Olympus
00:01:14	KandaTsu
00:01:15	Extratec
00:01:16	Netspect
00:01:17	Canal+
00:01:18	EzDigita
00:01:19	RtunetAu
00:01:1a	Hoffmann
00:01:1b	UnizoneT
00:01:1c	Universa
00:01:1d	Centilli
00:01:1e	Precidia
00:01:1f	RcNetwor
00:01:20	Oscilloq
00:01:21	Watchgua
00:01:22	TrendCom
00:01:23	DigitalE
00:01:24	Acer
00:01:25	YaesuMus
00:01:26	PacLabs
00:01:27	OpenNetw
00:01:28	Enjoyweb
00:01:29	Dfi
00:01:2a	Telemati
00:01:2b	Telenet
00:01:2c	AravoxTe
00:01:2d	KomodoTe
00:01:2e	PcPartne
00:01:2f	Twinhead
00:01:30	ExtremeN
00:01:31	BoschSec
00:01:32	Dranetz-
00:01:33	KyowaEle
00:01:34	Selectro
00:01:35	Kdc
00:01:36	Cybertan
00:01:37	ItFarm
00:01:38	XaviTech
00:01:39	PointMul
00:01:3a	ShelcadC
00:01:3b	Bna
00:01:3c	Tiw
00:01:3d	Riscstat
00:01:3e	AscomTat
00:01:3f	Neighbor
00:01:40	Sendtek
00:01:41	CablePri
00:01:42	Cisco
00:01:43	IEEE802
00:01:44	Emc
00:01:45	Winsyste
00:01:46	TescoCon
00:01:47	ZhoneTec
00:01:48	X-Traweb
00:01:49	TDTTrans
00:01:4a	Sony
00:01:4b	Ennovate
00:01:4c	Berkeley
00:01:4d	ShinKinE
00:01:4e	WinEnter
00:01:4f	Adtran
00:01:50	Megahert
00:01:51	Ensemble
00:01:52	Chromate
00:01:53	ArchtekT
00:01:54	G3m
00:01:55	PromiseT
00:01:56	Firewire
00:01:57	Syswave
00:01:58	ElectroI
00:01:59	S1
00:01:5a	DigitalV
00:01:5b	ItaltelS
00:01:5c	Cadant
00:01:5d	Oracle
00:01:5e	BestTech
00:01:5f	DigitalD
00:01:60	Elmex
00:01:61	MetaMach
00:01:62	CygnetTe
00:01:63	NdcNatio
00:01:64	Cisco
00:01:65	Airswitc
00:01:66	TcGroup
00:01:67	HiokiEE
00:01:68	W&GWande
00:01:69	Celestix
00:01:6a	Alitec
00:01:6b	Lightchi
00:01:6c	Foxconn
00:01:6d	Carrierc
00:01:6e	Conklin
00:01:6f	Inkel
00:01:70	EseEmbed
00:01:71	AlliedDa
00:01:72	Technola
00:01:73	Amcc
00:01:74	Cyberopt
00:01:75	RadiantC
00:01:76	OrientSi
00:01:77	Edsl
00:01:78	Margi
00:01:79	Wireless
00:01:7a	ChengduM
00:01:7b	Heidelbe
00:01:7c	Ag-E
00:01:7d	Thermoqu
00:01:7e	AdtekSys
00:01:7f	Experien
00:01:80	Aopen
00:01:81	NortelNe
00:01:82	DicaTech
00:01:83	AniteTel
00:01:84	SiebMeye
00:01:85	HitachiA
00:01:86	UweDisch
00:01:87	I2se
00:01:88	LxcoTech
00:01:89	Refracti
00:01:8a	RoiCompu
00:01:8b	Netlinks
00:01:8c	MegaVisi
00:01:8d	AudesiTe
00:01:8e	Logitec
00:01:8f	Kenetec
00:01:90	Smk-M
00:01:91	SyredDat
00:01:92	TexasDig
00:01:93	HanbyulT
00:01:94	CapitalE
00:01:95	SenaTech
00:01:96	Cisco
00:01:97	Cisco
00:01:98	DarimVis
00:01:99	HeiseiEl
00:01:9a	Leunig
00:01:9b	KyotoMic
00:01:9c	JdsUniph
00:01:9d	E-Contro
00:01:9e	EssTechn
00:01:9f	Readynet
00:01:a0	Infinili
00:01:a1	Mag-Tek
00:01:a2	Logical
00:01:a3	GenesysL
00:01:a4	Microlin
00:01:a5	Nextcomm
00:01:a6	Scientif
00:01:a7	UnexTech
00:01:a8	Welltech
00:01:a9	Bmw
00:01:aa	AirspanC
00:01:ab	MainStre
00:01:ac	SitaraNe
00:01:ad	CoachMas
00:01:ae	TrexEnte
00:01:af	ArtesynE
00:01:b0	FulltekT
00:01:b1	GeneralB
00:01:b2	DigitalP
00:01:b3	Precisio
00:01:b4	Wayport
00:01:b5	TurinNet
00:01:b6	SaejinT&
00:01:b7	Centos
00:01:b8	Netsensi
00:01:b9	SkfCondi
00:01:ba	Ic-Net
00:01:bb	Frequent
00:01:bc	Brains
00:01:bd	Peterson
00:01:be	Gigalink
00:01:bf	Teleforc
00:01:c0	Compulab
00:01:c1	VitesseS
00:01:c2	ArkResea
00:01:c3	Acromag
00:01:c4	Neowave
00:01:c5	SimplerN
00:01:c6	QuarryTe
00:01:c7	Cisco
00:01:c8	ThomasCo
00:01:c9	Cisco
00:01:ca	GeocastN
00:01:cb	Evr
00:01:cc	JapanTot
00:01:cd	Artem
00:01:ce	CustomMi
00:01:cf	AlphaDat
00:01:d0	Vitalpoi
00:01:d1	ConetCom
00:01:d2	Inxtron
00:01:d3	Paxcomm
00:01:d4	LeisureT
00:01:d5	HaedongI
00:01:d6	Manrolan
00:01:d7	F5Networ
00:01:d8	Teltroni
00:01:d9	Sigma
00:01:da	Wincomm
00:01:db	FreecomT
00:01:dc	Activete
00:01:dd	AvailNet
00:01:de	Trango
00:01:df	IsdnComm
00:01:e0	Fast
00:01:e1	KinpoEle
00:01:e2	AndoElec
00:01:e3	Siemens
00:01:e4	Sitera
00:01:e5	Supernet
00:01:e6	HP
00:01:e7	HP
00:01:e8	Force10N
00:01:e9	LittonMa
00:01:ea	Cirilium
00:01:eb	C-Com
00:01:ec	Ericsson
00:01:ed	Seta
00:01:ee	ComtrolE
00:01:ef	CamtelTe
00:01:f0	Tridium
00:01:f1	Innovati
00:01:f2	MarkOfUn
00:01:f3	Qps
00:01:f4	Enterasy
00:01:f5	ErimSA
00:01:f6	Associat
00:01:f7	ImageDis
00:01:f8	TexioTec
00:01:f9	Teraglob
00:01:fa	Compaq
00:01:fb	DotopTec
00:01:fc	Keyence
00:01:fd	DigitalV
00:01:fe	DigitalE
00:01:ff	DataDire
00:02:00	NetSys
00:02:01	IfmElect
00:02:02	AminoCom
00:02:03	Woonsang
00:02:04	Novell
00:02:05	Hamilton
00:02:06	TelitalR
00:02:07	Visiongl
00:02:08	UnifyNet
00:02:09	Shenzhen
00:02:0a	Gefran
00:02:0b	NativeNe
00:02:0c	Metro-Op
00:02:0d	Micronpc
00:02:0e	EciTelec
00:02:0f	Aatr
00:02:10	Fenecom
00:02:11	NatureWo
00:02:12	Sierraco
00:02:13	SDEL
00:02:14	Dtvro
00:02:15	CotasCom
00:02:16	EsiExten
00:02:17	Cisco
00:02:18	Advanced
00:02:19	ParalonT
00:02:1a	ZumaNetw
00:02:1b	Kollmorg
00:02:1c	NetworkE
00:02:1d	DataGene
00:02:1e	SimtelSR
00:02:1f	Aculab
00:02:20	CanonFin
00:02:21	DspAppli
00:02:22	Chromisy
00:02:23	Clicktv
00:02:24	C-Cor
00:02:25	OneStop
00:02:26	Xesystem
00:02:27	EsdElect
00:02:28	Necsom
00:02:29	Adtec
00:02:2a	AsoundEl
00:02:2b	Saxa
00:02:2c	AbbBomem
00:02:2d	Agere
00:02:2e	TeacR&D
00:02:2f	P-Cube
00:02:30	Intersof
00:02:31	Axis
00:02:32	Avision
00:02:33	MantraCo
00:02:34	Imperial
00:02:35	ParagonN
00:02:36	Init
00:02:37	CosmoRes
00:02:38	SeromeTe
00:02:39	Visicom
00:02:3a	ZskStick
00:02:3b	Ericsson
00:02:3c	Creative
00:02:3d	Cisco
00:02:3e	SeltaTel
00:02:3f	CompalEl
00:02:40	Seedek
00:02:41	AmerCom
00:02:42	Videofra
00:02:43	Raysis
00:02:44	SurecomT
00:02:45	Lampus
00:02:46	All-WinT
00:02:47	GreatDra
00:02:48	Pilz
00:02:49	AvivInfo
00:02:4a	Cisco
00:02:4b	Cisco
00:02:4c	Sibyte
00:02:4d	Mannesma
00:02:4e	Datacard
00:02:4f	IpmDatac
00:02:50	GeyserNe
00:02:51	SomaNetw
00:02:52	Carrier
00:02:53	Televide
00:02:54	Worldgat
00:02:55	IBM
00:02:56	AlphaPro
00:02:57	Microcom
00:02:58	FlyingPa
00:02:59	TsannKue
00:02:5a	CatenaNe
00:02:5b	Cambridg
00:02:5c	SciKunsh
00:02:5d	CalixNet
00:02:5e	HighTech
00:02:5f	NortelNe
00:02:60	Accordio
00:02:61	Tilgin
00:02:62	SoyoGrou
00:02:63	UpsManuf
00:02:64	Audioram
00:02:65	Virditec
00:02:66	Thermalo
00:02:67	NodeRunn
00:02:68	HarrisGo
00:02:69	Nadatel
00:02:6a	CocessTe
00:02:6b	BcmCompu
00:02:6c	Philips
00:02:6d	AdeptTel
00:02:6e	NegenAcc
00:02:6f	SenaoInt
00:02:70	Crewave
00:02:71	ZhoneTec
00:02:72	Cc&CTech
00:02:73	Coriolis
00:02:74	TommyTec
00:02:75	SmartTec
00:02:76	PrimaxEl
00:02:77	CashSyst
00:02:78	Samsung
00:02:79	ControlA
00:02:7a	IoiTechn
00:02:7b	AmplifyN
00:02:7c	Trilithi
00:02:7d	Cisco
00:02:7e	Cisco
00:02:7f	Ask-Tech
00:02:80	MuNet
00:02:81	Madge
00:02:82	Viaclix
00:02:83	Spectrum
00:02:84	ArevaT&D
00:02:85	Riversto
00:02:86	OccamNet
00:02:87	Adapcom
00:02:88	GlobalVi
00:02:89	DneTechn
00:02:8a	AmbitMic
00:02:8b	VdslOy
00:02:8c	Micrel-S
00:02:8d	MovitaTe
00:02:8e	Rapid5Ne
00:02:8f	Globetek
00:02:90	Woorigis
00:02:91	OpenNetw
00:02:92	LogicInn
00:02:93	SolidDat
00:02:94	TokyoSok
00:02:95	IpAccess
00:02:96	Lectron
00:02:97	C-CorNet
00:02:98	Broadfra
00:02:99	Apex
00:02:9a	StorageA
00:02:9b	KreatelC
00:02:9c	3Com
00:02:9d	Merix
00:02:9e	Informat
00:02:9f	L-3Commu
00:02:a0	Flatstac
00:02:a1	WorldWid
00:02:a2	Hilscher
00:02:a3	AbbSwitz
00:02:a4	AddpacTe
00:02:a5	HP
00:02:a6	Effinet
00:02:a7	VivaceNe
00:02:a8	AirLinkT
00:02:a9	RacomSRO
00:02:aa	Plcom
00:02:ab	CtcUnion
00:02:ac	3parData
00:02:ad	Hoya
00:02:ae	ScannexE
00:02:af	Telecruz
00:02:b0	HokubuCo
00:02:b1	Anritsu
00:02:b2	Cablevis
00:02:b3	Intel
00:02:b4	Daphne
00:02:b5	Avnet
00:02:b6	Acrosser
00:02:b7	Watanabe
00:02:b8	WhiKonsu
00:02:b9	Cisco
00:02:ba	Cisco
00:02:bb	Continuo
00:02:bc	Lvl7
00:02:bd	Bionet
00:02:be	TotsuEng
00:02:bf	Dotrocke
00:02:c0	BencentT
00:02:c1	Innovati
00:02:c2	NetVisio
00:02:c3	Arelnet
00:02:c4	VectorIn
00:02:c5	EvertzMi
00:02:c6	DataTrac
00:02:c7	AlpsElec
00:02:c8	Technoco
00:02:c9	Mellanox
00:02:ca	Endpoint
00:02:cb	Tristate
00:02:cc	MCCI
00:02:cd	Teledrea
00:02:ce	Foxjet
00:02:cf	ZygateCo
00:02:d0	Comdial
00:02:d1	Vivotek
00:02:d2	Workstat
00:02:d3	Netbotz
00:02:d4	PdaPerip
00:02:d5	Acr
00:02:d6	Nice
00:02:d7	Empeg
00:02:d8	BrecisCo
00:02:d9	Reliable
00:02:da	ExioComm
00:02:db	Netsec
00:02:dc	Fujitsu
00:02:dd	BromaxCo
00:02:de	Astrodes
00:02:df	NetCom
00:02:e0	Etas
00:02:e1	Integrat
00:02:e2	NdcInfar
00:02:e3	Lite-OnC
00:02:e4	JcHyun
00:02:e5	Timeware
00:02:e6	GouldIns
00:02:e7	Cab
00:02:e8	ED&A
00:02:e9	CsSystem
00:02:ea	FocusEnh
00:02:eb	PicoComm
00:02:ec	Maschoff
00:02:ed	DxoTelec
00:02:ee	NokiaDan
00:02:ef	CccNetwo
00:02:f0	AmeOptim
00:02:f1	Pinetron
00:02:f2	Edevice
00:02:f3	MediaSer
00:02:f4	Pctel
00:02:f5	ViveSyne
00:02:f6	EquipeCo
00:02:f7	Arm
00:02:f8	SeakrEng
00:02:f9	MimosBer
00:02:fa	DxAntenn
00:02:fb	Baumulle
00:02:fc	Cisco
00:02:fd	Cisco
00:02:fe	Viditec
00:02:ff	HandanBr
00:03:00	Barracud
00:03:01	Exfo
00:03:02	CharlesI
00:03:03	JamaElec
00:03:04	PacificB
00:03:05	MscVertr
00:03:06	FusionIn
00:03:07	SecureWo
00:03:08	AmCommun
00:03:09	TexcelTe
00:03:0a	ArgusTec
00:03:0b	HunterTe
00:03:0c	Telesoft
00:03:0d	UniwillC
00:03:0e	CoreComm
00:03:0f	DigitalC
00:03:10	E-Global
00:03:11	MicroTec
00:03:12	Tr-Syste
00:03:13	AccessMe
00:03:14	Teleware
00:03:15	Cidco
00:03:16	NobellCo
00:03:17	Merlin
00:03:18	Cyras
00:03:19	Infineon
00:03:1a	BeijingB
00:03:1b	Cellvisi
00:03:1c	SvenskaH
00:03:1d	TaiwanCo
00:03:1e	Optranet
00:03:1f	Condev
00:03:20	Xpeed
00:03:21	RecoRese
00:03:22	Idis
00:03:23	CornetTe
00:03:24	SanyoCon
00:03:25	ArimaCom
00:03:26	IwasakiI
00:03:27	ActL
00:03:28	MaceGrou
00:03:29	F3
00:03:2a	UnidataC
00:03:2b	GaiDaten
00:03:2c	AbbSwitz
00:03:2d	IbaseTec
00:03:2e	ScopeInf
00:03:2f	GlobalSu
00:03:30	Imagenic
00:03:31	Cisco
00:03:32	Cisco
00:03:33	Digitel
00:03:34	NewportE
00:03:35	MiraeTec
00:03:36	ZetesTec
00:03:37	Vaone
00:03:38	OakTechn
00:03:39	Eurologi
00:03:3a	SiliconW
00:03:3b	TamiTech
00:03:3c	Daiden
00:03:3d	IlshinLa
00:03:3e	Tateyama
00:03:3f	BigbandN
00:03:40	FlowareW
00:03:41	AxonDigi
00:03:42	NortelNe
00:03:43	MartinPr
00:03:44	Tietech
00:03:45	RoutrekN
00:03:46	HitachiK
00:03:47	Intel
00:03:48	NorscanI
00:03:49	Vidicode
00:03:4a	Rias
00:03:4b	NortelNe
00:03:4c	Shanghai
00:03:4d	ChiaroNe
00:03:4e	PosData
00:03:4f	Sur-Gard
00:03:50	Bticino
00:03:51	Diebold
00:03:52	Colubris
00:03:53	Mitac
00:03:54	FiberLog
00:03:55	Terabeam
00:03:56	WincorNi
00:03:57	Intervoi
00:03:58	HanyangD
00:03:59	Digitals
00:03:5a	Photron
00:03:5b	Bridgewa
00:03:5c	SaintSon
00:03:5d	BosungHi
00:03:5e	Metropol
00:03:5f	Prüftech
00:03:60	PacInter
00:03:61	Widcomm
00:03:62	VodtelCo
00:03:63	Miraesys
00:03:64	ScenixSe
00:03:65	KiraInfo
00:03:66	AsmPacif
00:03:67	JasmineN
00:03:68	Embedone
00:03:69	NipponAn
00:03:6a	Mainnet
00:03:6b	Cisco
00:03:6c	Cisco
00:03:6d	Runtop
00:03:6e	NiconPty
00:03:6f	Telsey
00:03:70	Nxtv
00:03:71	AcomzNet
00:03:72	Ulan
00:03:73	AselsanA
00:03:74	ControlM
00:03:75	Netmedia
00:03:76	Graphtec
00:03:77	GigabitW
00:03:78	Humax
00:03:79	Proscend
00:03:7a	TaiyoYud
00:03:7b	IdecIzum
00:03:7c	CoaxMedi
00:03:7d	Stellcom
00:03:7e	PortechC
00:03:7f	AtherosC
00:03:80	SshCommu
00:03:81	Ingenico
00:03:82	A-One
00:03:83	MeteraNe
00:03:84	Aeta
00:03:85	ActelisN
00:03:86	HoNet
00:03:87	BlazeNet
00:03:88	Fastfame
00:03:89	Plantron
00:03:8a	AmericaO
00:03:8b	Plus-One
00:03:8c	TotalImp
00:03:8d	PcsReven
00:03:8e	Atoga
00:03:8f	Weinsche
00:03:90	DigitalV
00:03:91	Advanced
00:03:92	HyundaiT
00:03:93	Apple
00:03:94	ConnectO
00:03:95	Californ
00:03:96	EzCast
00:03:97	Watchfro
00:03:98	Wisi
00:03:99	DongjuIn
00:03:9a	Siconnec
00:03:9b	NetchipT
00:03:9c	Optimigh
00:03:9d	Qisda
00:03:9e	TeraSyst
00:03:9f	Cisco
00:03:a0	Cisco
00:03:a1	HiperInf
00:03:a2	Catapult
00:03:a3	Mavix
00:03:a4	Imation
00:03:a5	Medea
00:03:a6	TraxitTe
00:03:a7	UnixtarT
00:03:a8	IdotComp
00:03:a9	AxcentMe
00:03:aa	Watlow
00:03:ab	BridgeIn
00:03:ac	FroniusS
00:03:ad	EmersonE
00:03:ae	AlliedAd
00:03:af	ParageaC
00:03:b0	XsenseTe
00:03:b1	Hospira
00:03:b2	Radware
00:03:b3	IaLink
00:03:b4	Macrotek
00:03:b5	EntraTec
00:03:b6	Qsi
00:03:b7	Zaccess
00:03:b8	NetkitSo
00:03:b9	HualongT
00:03:ba	Oracle
00:03:bb	SignalCo
00:03:bc	Cot
00:03:bd	Omniclus
00:03:be	Netility
00:03:bf	Centerpo
00:03:c0	Rftnc
00:03:c1	PacketDy
00:03:c2	Solphone
00:03:c3	Micronik
00:03:c4	TomraAsa
00:03:c5	Mobotix
00:03:c6	MorningS
00:03:c7	HopfElek
00:03:c8	CmlEmerg
00:03:c9	Tecom
00:03:ca	Mts
00:03:cb	NipponDe
00:03:cc	Momentum
00:03:cd	Cloverte
00:03:ce	EtenTech
00:03:cf	Muxcom
00:03:d0	Koankeis
00:03:d1	Takaya
00:03:d2	Crossbea
00:03:d3	Internet
00:03:d4	Alloptic
00:03:d5	Advanced
00:03:d6	Radvisio
00:03:d7	NextnetW
00:03:d8	ImpathNe
00:03:d9	Secheron
00:03:da	Takamisa
00:03:db	ApogeeEl
00:03:dc	LexarMed
00:03:dd	ComarkIn
00:03:de	OtcWirel
00:03:df	Desana
00:03:e0	ArrisGro
00:03:e1	WinmateC
00:03:e2	Comspace
00:03:e3	Cisco
00:03:e4	Cisco
00:03:e5	Hermsted
00:03:e6	Entone
00:03:e7	Logostek
00:03:e8	Waveleng
00:03:e9	AkaraCan
00:03:ea	MegaSyst
00:03:eb	Atrica
00:03:ec	IcgResea
00:03:ed	Shinkawa
00:03:ee	Mknet
00:03:ef	Oneline
00:03:f0	RedfernB
00:03:f1	CicadaSe
00:03:f2	SenecaNe
00:03:f3	DazzleMu
00:03:f4	Netburne
00:03:f5	Chip2chi
00:03:f6	AllegroN
00:03:f7	Plast-Co
00:03:f8	Sancastl
00:03:f9	Pleiades
00:03:fa	TimetraN
00:03:fb	Enegate
00:03:fc	Intertex
00:03:fd	Cisco
00:03:fe	Cisco
00:03:ff	Microsoft
00:04:00	LexmarkP
00:04:01	OsakiEle
00:04:02	NexsanTe
00:04:03	Nexsi
00:04:04	MakinoMi
00:04:05	AcnTechn
00:04:06	FaMetabo
00:04:07	TopconPo
00:04:08	SankoEle
00:04:09	CratosNe
00:04:0a	Sage
00:04:0b	3comEuro
00:04:0c	KannoWor
00:04:0d	Avaya
00:04:0e	Avm
00:04:0f	ASUS
00:04:10	Spinnake
00:04:11	InkraNet
00:04:12	Wavesmit
00:04:13	SnomTech
00:04:14	UmezawaM
00:04:15	Rasteme
00:04:16	ParksCom
00:04:17	Elau
00:04:18	Teltroni
00:04:19	Fibercyc
00:04:1a	InesTest
00:04:1b	Bridgewo
00:04:1c	Ipdialog
00:04:1d	CoregaOf
00:04:1e	ShikokuI
00:04:1f	Sony
00:04:20	SlimDevi
00:04:21	OcularNe
00:04:22	StudioTe
00:04:23	Intel
00:04:24	TmcSRL
00:04:25	Atmel
00:04:26	Autosys
00:04:27	Cisco
00:04:28	Cisco
00:04:29	Pixord
00:04:2a	Wireless
00:04:2b	ItAccess
00:04:2c	Minet
00:04:2d	Sarian
00:04:2e	NetousTe
00:04:2f	Internat
00:04:30	Netgem
00:04:31	Globalst
00:04:32	VoyetraT
00:04:33	Cyberboa
00:04:34	Accelent
00:04:35	InfinetL
00:04:36	ElansatT
00:04:37	PowinInf
00:04:38	NortelNe
00:04:39	RoscoEnt
00:04:3a	Intellig
00:04:3b	LavaComp
00:04:3c	Sonos
00:04:3d	Indel
00:04:3e	Telencom
00:04:3f	EsteemWi
00:04:40	Cyberpix
00:04:41	HalfDome
00:04:42	Nact
00:04:43	AgilentT
00:04:44	WesternM
00:04:45	LmsSkala
00:04:46	Cyzentec
00:04:47	Acrowave
00:04:48	Polaroid
00:04:49	Mapletre
00:04:4a	IpolicyN
00:04:4b	Nvidia
00:04:4c	Jenoptik
00:04:4d	Cisco
00:04:4e	Cisco
00:04:4f	Schubert
00:04:50	DmdCompu
00:04:51	Medrad
00:04:52	Rocketlo
00:04:53	Yottayot
00:04:54	Quadriga
00:04:55	AntaraNe
00:04:56	CambiumN
00:04:57	Universa
00:04:58	FusionX
00:04:59	Veristar
00:04:5a	LinksysG
00:04:5b	TechsanE
00:04:5c	Mobiwave
00:04:5d	BekaElek
00:04:5e	Polytrax
00:04:5f	AvalueTe
00:04:60	KnilinkT
00:04:61	EpoxComp
00:04:62	DakosDat
00:04:63	BoschSec
00:04:64	Pulse-Li
00:04:65	ISTIsdn-
00:04:66	Armitel
00:04:67	WuhanRes
00:04:68	Vivity
00:04:69	Innocom
00:04:6a	NaviniNe
00:04:6b	PalmWire
00:04:6c	CyberTec
00:04:6d	Cisco
00:04:6e	Cisco
00:04:6f	DigitelI
00:04:70	Ipunplug
00:04:71	Iprad
00:04:72	Telelynx
00:04:73	Photonex
00:04:74	Legrand
00:04:75	3Com
00:04:76	3Com
00:04:77	Scalant
00:04:78	GStarTec
00:04:79	Radius
00:04:7a	Axxessit
00:04:7b	Schlumbe
00:04:7c	Skidata
00:04:7d	Pelco
00:04:7e	SiquraBV
00:04:7f	ChrMayr
00:04:80	BrocadeC
00:04:81	Econolit
00:04:82	Medialog
00:04:83	DeltronT
00:04:84	Amann
00:04:85	Picoligh
00:04:86	IttcUniv
00:04:87	CogencyS
00:04:88	Eurother
00:04:89	YafoNetw
00:04:8a	TemiaVer
00:04:8b	Poscon
00:04:8c	NaynaNet
00:04:8d	TeoTechn
00:04:8e	OhmTechL
00:04:8f	Td
00:04:90	OpticalA
00:04:91	Technovi
00:04:92	HiveInte
00:04:93	Tsinghua
00:04:94	Breezeco
00:04:95	TejasNet
00:04:96	ExtremeN
00:04:97	Macrosys
00:04:98	MahiNetw
00:04:99	Chino
00:04:9a	Cisco
00:04:9b	Cisco
00:04:9c	Surgient
00:04:9d	IpanemaT
00:04:9e	Wirelink
00:04:9f	Freescal
00:04:a0	VerityIn
00:04:a1	PathwayC
00:04:a2	LSIJapan
00:04:a3	Microchi
00:04:a4	Netenabl
00:04:a5	BarcoPro
00:04:a6	SafTehni
00:04:a7	Fabiatec
00:04:a8	Broadmax
00:04:a9	Sandstre
00:04:aa	Jetstrea
00:04:ab	Comverse
00:04:ac	IBM
00:04:ad	MalibuNe
00:04:ae	Sullair
00:04:af	DigitalF
00:04:b0	Elesign
00:04:b1	SignalTe
00:04:b2	EssegiSr
00:04:b3	Videotek
00:04:b4	Ciac
00:04:b5	Equitrac
00:04:b6	StratexN
00:04:b7	AmbIT
00:04:b8	Kumahira
00:04:b9	SISoubou
00:04:ba	KddMedia
00:04:bb	Bardac
00:04:bc	Giantec
00:04:bd	ArrisGro
00:04:be	Optxcon
00:04:bf	Versalog
00:04:c0	Cisco
00:04:c1	Cisco
00:04:c2	Magnipix
00:04:c3	CastorIn
00:04:c4	AllenHea
00:04:c5	AseTechn
00:04:c6	YamahaMo
00:04:c7	Netmount
00:04:c8	LibaMasc
00:04:c9	MicroEle
00:04:ca	Freems
00:04:cb	TdsoftCo
00:04:cc	PeekTraf
00:04:cd	Extenway
00:04:ce	PatriaAi
00:04:cf	SeagateT
00:04:d0	Softlink
00:04:d1	DrewTech
00:04:d2	AdconTel
00:04:d3	Toyokeik
00:04:d4	ProviewE
00:04:d5	HitachiI
00:04:d6	TakagiIn
00:04:d7	OmitecIn
00:04:d8	Ipwirele
00:04:d9	TitanEle
00:04:da	RelaxTec
00:04:db	TellusGr
00:04:dc	NortelNe
00:04:dd	Cisco
00:04:de	Cisco
00:04:df	TeracomT
00:04:e0	ProcketN
00:04:e1	Infinior
00:04:e2	SmcNetwo
00:04:e3	AcctonTe
00:04:e4	Daeryung
00:04:e5	Glonet
00:04:e6	BanyanNe
00:04:e7	Lightpoi
00:04:e8	Ier
00:04:e9	Infinisw
00:04:ea	HP
00:04:eb	PaxonetC
00:04:ec	MemoboxS
00:04:ed	BillionE
00:04:ee	LincolnE
00:04:ef	Polestar
00:04:f0	Internat
00:04:f1	Wherenet
00:04:f2	Polycom
00:04:f3	FsForth-
00:04:f4	Infinite
00:04:f5	Snowshor
00:04:f6	Amphus
00:04:f7	OmegaBan
00:04:f8	Qualicab
00:04:f9	XteraCom
00:04:fa	NbsTechn
00:04:fb	Commtech
00:04:fc	StratusC
00:04:fd	JapanCon
00:04:fe	PelagoNe
00:04:ff	Acronet
00:05:00	Cisco
00:05:01	Cisco
00:05:02	ApplePci
00:05:03	Iconag
00:05:04	NarayInf
00:05:05	Integrat
00:05:06	ReddoNet
00:05:07	FineAppl
00:05:08	Inetcam
00:05:09	AvocNish
00:05:0a	Ics
00:05:0b	Sicom
00:05:0c	NetworkP
00:05:0d	Midstrea
00:05:0e	3ware
00:05:0f	TanakaS/
00:05:10	Infinite
00:05:11	Compleme
00:05:12	ZebraTec
00:05:13	VtlinxMu
00:05:14	Kdt
00:05:15	Nuark
00:05:16	SmartMod
00:05:17	Shellcom
00:05:18	Jupiters
00:05:19	SiemensB
00:05:1a	3comEuro
00:05:1b	MagicCon
00:05:1c	XnetTech
00:05:1d	Airocon
00:05:1e	BrocadeC
00:05:1f	TaijinMe
00:05:20	Smartron
00:05:21	ControlM
00:05:22	Lea*D
00:05:23	AvlList
00:05:24	BtlSyste
00:05:25	PuretekI
00:05:26	Ipas
00:05:27	SjTek
00:05:28	NewFocus
00:05:29	Shanghai
00:05:2a	IkegamiT
00:05:2b	Horiba
00:05:2c	SupremeM
00:05:2d	ZoltrixI
00:05:2e	CintaNet
00:05:2f	LevitonN
00:05:30	Andiamo
00:05:31	Cisco
00:05:32	Cisco
00:05:33	BrocadeC
00:05:34	Northsta
00:05:35	ChipPc
00:05:36	DanamCom
00:05:37	NetsTech
00:05:38	Merilus
00:05:39	ABrandNe
00:05:3a	Willowgl
00:05:3b	HarbourN
00:05:3c	Xircom
00:05:3d	Agere
00:05:3e	KidSyste
00:05:3f	Visionte
00:05:40	Fast
00:05:41	Advanced
00:05:42	Otari
00:05:43	IqWirele
00:05:44	ValleyTe
00:05:45	Internet
00:05:46	KddiNetw
00:05:47	StarentN
00:05:48	Disco
00:05:49	SaliraOp
00:05:4a	ArioData
00:05:4b	EatonAut
00:05:4c	RfInnova
00:05:4d	BransTec
00:05:4e	Philips
00:05:4f	Private
00:05:50	VcommsCo
00:05:51	FSElektr
00:05:52	XycotecC
00:05:53	Dvc
00:05:54	Rangesta
00:05:55	JapanCas
00:05:56	360
00:05:57	AgileTv
00:05:58	Synchron
00:05:59	Intracom
00:05:5a	PowerDsi
00:05:5b	CharlesI
00:05:5c	Kowa
00:05:5d	D-Link
00:05:5e	Cisco
00:05:5f	Cisco
00:05:60	LeaderCo
00:05:61	NacImage
00:05:62	DigitalV
00:05:63	J-Works
00:05:64	Tsinghua
00:05:65	TailynCo
00:05:66	SecuiCom
00:05:67	Etymonic
00:05:68	Piltofis
00:05:69	Vmware
00:05:6a	HeuftSys
00:05:6b	CPTechno
00:05:6c	HungChan
00:05:6d	Pacific
00:05:6e	National
00:05:6f	Innomedi
00:05:70	Baydel
00:05:71	SeiwaEle
00:05:72	Deonet
00:05:73	Cisco
00:05:74	Cisco
00:05:75	Cds-Elec
00:05:76	NsmTechn
00:05:77	SmInform
00:05:78	Private
00:05:79	Universa
00:05:7a	Overture
00:05:7b	ChungNam
00:05:7c	RcoSecur
00:05:7d	SunCommu
00:05:7e	Eckelman
00:05:7f	AcqisTec
00:05:80	Fibrolan
00:05:81	Snell
00:05:82	Clearcub
00:05:83	Imagecom
00:05:84	Absolute
00:05:85	JuniperN
00:05:86	LucentTe
00:05:87	Locus
00:05:88	Sensoria
00:05:89	National
00:05:8a	Netcom
00:05:8b	Ipmental
00:05:8c	Opentech
00:05:8d	LynxPhot
00:05:8e	Flextron
00:05:8f	Clcsoft
00:05:90	Swissvoi
00:05:91	ActiveSi
00:05:92	Pultek
00:05:93	GrammarE
00:05:94	HmsIndus
00:05:95	Alesis
00:05:96	Genotech
00:05:97	EagleTra
00:05:98	CronosSR
00:05:99	DrsTestA
00:05:9a	Powercom
00:05:9b	Cisco
00:05:9c	Kleinkne
00:05:9d	DanielCo
00:05:9e	Zinwell
00:05:9f	YottaNet
00:05:a0	Mobiline
00:05:a1	Zenocom
00:05:a2	CeloxNet
00:05:a3	Qei
00:05:a4	LucidVoi
00:05:a5	Kott
00:05:a6	ExtronEl
00:05:a7	Hyperchi
00:05:a8	Powercom
00:05:a9	Princeto
00:05:aa	MooreInd
00:05:ab	CyberFon
00:05:ac	Northern
00:05:ad	TopspinC
00:05:ae	Mediapor
00:05:af	Innoscan
00:05:b0	KoreaCom
00:05:b1	AsbTechn
00:05:b2	Medison
00:05:b3	Asahi-En
00:05:b4	Aceex
00:05:b5	Broadcom
00:05:b6	InsysMic
00:05:b7	ArborTec
00:05:b8	Electron
00:05:b9	Airvana
00:05:ba	AreaNetw
00:05:bb	Myspace
00:05:bc	Resource
00:05:bd	RoaxBv
00:05:be	Kongsber
00:05:bf	JustezyT
00:05:c0	DigitalN
00:05:c1	A-KyungM
00:05:c2	Soronti
00:05:c3	PacificI
00:05:c4	Telect
00:05:c5	FlagaHf
00:05:c6	TrizComm
00:05:c7	I/F-Com
00:05:c8	Verytech
00:05:c9	LG
00:05:ca	HitronTe
00:05:cb	RoisTech
00:05:cc	SumtelCo
00:05:cd	D&MHoldi
00:05:ce	ProlinkM
00:05:cf	ThunderR
00:05:d0	Solinet
00:05:d1	Metavect
00:05:d2	DapTechn
00:05:d3	Eproduct
00:05:d4	Futuresm
00:05:d5	Speedcom
00:05:d6	L-3Linka
00:05:d7	VistaIma
00:05:d8	Arescom
00:05:d9	TechnoVa
00:05:da	ApexAuto
00:05:db	PsiNente
00:05:dc	Cisco
00:05:dd	Cisco
00:05:de	GiFoneKo
00:05:df	Electron
00:05:e0	Empirix
00:05:e1	TrellisP
00:05:e2	CreativN
00:05:e3	Lightsan
00:05:e4	RedLionC
00:05:e5	Renishaw
00:05:e6	Egenera
00:05:e7	NetrakeA
00:05:e8	Turbowav
00:05:e9	UnicessN
00:05:ea	Rednix
00:05:eb	BlueRidg
00:05:ec	Mosaic
00:05:ed	Techniku
00:05:ee	Vanderbi
00:05:ef	AdoirDig
00:05:f0	Satec
00:05:f1	Vrcom
00:05:f2	PowerR
00:05:f3	Webyn
00:05:f4	SystemBa
00:05:f5	Geospace
00:05:f6	YoungCha
00:05:f7	AnalogDe
00:05:f8	RealTime
00:05:f9	Toa
00:05:fa	Ipoptica
00:05:fb	Sharegat
00:05:fc	SchenckP
00:05:fd	Packetli
00:05:fe	Traficon
00:05:ff	SnsSolut
00:06:00	ToshibaT
00:06:01	Otanikei
00:06:02	Cirkitec
00:06:03	BakerHug
00:06:04	@TrackCo
00:06:05	InncomIn
00:06:06	Rapidwan
00:06:07	OmniDire
00:06:08	At-SkySa
00:06:09	Crosspor
00:06:0a	Blue2spa
00:06:0b	ArtesynE
00:06:0c	MelcoInd
00:06:0d	HP
00:06:0e	Igys
00:06:0f	NaradNet
00:06:10	AbeonaNe
00:06:11	ZeusWire
00:06:12	Accusys
00:06:13	Kawasaki
00:06:14	PrismHol
00:06:15	KimotoEl
00:06:16	TelNet
00:06:17	Redswitc
00:06:18	Digipowe
00:06:19	Connecti
00:06:1a	Zetari
00:06:1b	Notebook
00:06:1c	HoshinoM
00:06:1d	MipTelec
00:06:1e	Maxan
00:06:1f	VisionCo
00:06:20	SerialSy
00:06:21	Hinox
00:06:22	ChungFuC
00:06:23	MgeUpsFr
00:06:24	GentnerC
00:06:25	LinksysG
00:06:26	Mwe
00:06:27	UniwideT
00:06:28	Cisco
00:06:29	IBM
00:06:2a	Cisco
00:06:2b	Intraser
00:06:2c	BivioNet
00:06:2d	Touchsta
00:06:2e	AristosL
00:06:2f	Pivotech
00:06:30	AdtranzS
00:06:31	Calix
00:06:32	MescoEng
00:06:33	CrossMat
00:06:34	GteAirfo
00:06:35	Packetai
00:06:36	JedaiBro
00:06:37	Toptrend
00:06:38	SungjinC
00:06:39	Newtec
00:06:3a	DuraMicr
00:06:3b	Arcturus
00:06:3c	Intrinsy
00:06:3d	Microwav
00:06:3e	Opthos
00:06:3f	EverexCo
00:06:40	WhiteRoc
00:06:41	Itcn
00:06:42	Genetel
00:06:43	SonoComp
00:06:44	Neix
00:06:45	MeiseiEl
00:06:46	Shenzhen
00:06:47	EtraliSA
00:06:48	Seedswar
00:06:49	3mDeutsc
00:06:4a	Honeywel
00:06:4b	Alexon
00:06:4c	InvictaN
00:06:4d	Sencore
00:06:4e	BroadNet
00:06:4f	Pro-Nets
00:06:50	TiburonN
00:06:51	AspenNet
00:06:52	Cisco
00:06:53	Cisco
00:06:54	Winpresa
00:06:55	Yipee
00:06:56	Tactel
00:06:57	MarketCe
00:06:58	HelmutFi
00:06:59	EalApeld
00:06:5a	Strix
00:06:5b	Dell
00:06:5c	Malachit
00:06:5d	Heidelbe
00:06:5e	Photuris
00:06:5f	EciTelec
00:06:60	Nadex
00:06:61	NiaHomeT
00:06:62	MbmTechn
00:06:63	HumanTec
00:06:64	Fostex
00:06:65	SunnyGik
00:06:66	RovingNe
00:06:67	TrippLit
00:06:68	ViconInd
00:06:69	Datasoun
00:06:6a	Infinico
00:06:6b	Sysmex
00:06:6c	Robinson
00:06:6d	Compupri
00:06:6e	DeltaEle
00:06:6f	KoreaDat
00:06:70	Upponett
00:06:71	Softing
00:06:72	Netezza
00:06:73	TkhSecur
00:06:74	Spectrum
00:06:75	Banderac
00:06:76	NovraTec
00:06:77	Sick
00:06:78	D&MHoldi
00:06:79	Konami
00:06:7a	Jmp
00:06:7b	ToplinkC
00:06:7c	Cisco
00:06:7d	Takasago
00:06:7e	Wincom
00:06:7f	Digeo
00:06:80	CardAcce
00:06:81	GoepelEl
00:06:82	Convedia
00:06:83	BravaraC
00:06:84	Biacore
00:06:85	Netnearu
00:06:86	Zardcom
00:06:87	Omnitron
00:06:88	TelwaysC
00:06:89	YlezTech
00:06:8a	Neuronne
00:06:8b	Airrunne
00:06:8c	3Com
00:06:8d	Sepaton
00:06:8e	Hid
00:06:8f	Telemoni
00:06:90	EuracomC
00:06:91	PtInovac
00:06:92	Intruver
00:06:93	FlexusCo
00:06:94	Mobillia
00:06:95	EnsureTe
00:06:96	AdventNe
00:06:97	RDCenter
00:06:98	Egnite
00:06:99	VidaDesi
00:06:9a	ETel
00:06:9b	AvtAudio
00:06:9c	Transmod
00:06:9d	Petards
00:06:9e	Uniqa
00:06:9f	KuokoaNe
00:06:a0	MxImagin
00:06:a1	CelsianT
00:06:a2	Microtun
00:06:a3	Bitran
00:06:a4	Innowell
00:06:a5	Pinon
00:06:a6	Artistic
00:06:a7	Primario
00:06:a8	KcTechno
00:06:a9	Universa
00:06:aa	VtMiltop
00:06:ab	W-Link
00:06:ac	Intersof
00:06:ad	KbElectr
00:06:ae	Himachal
00:06:af	XaltedNe
00:06:b0	ComtechE
00:06:b1	Sonicwal
00:06:b2	Linxtek
00:06:b3	Diagraph
00:06:b4	VorneInd
00:06:b5	SourcePh
00:06:b6	Nir-OrIs
00:06:b7	Telem
00:06:b8	Bandspee
00:06:b9	A5tek
00:06:ba	Westwave
00:06:bb	AtiTechn
00:06:bc	Macrolin
00:06:bd	Bntechno
00:06:be	BaumerOp
00:06:bf	AccellaT
00:06:c0	UnitedIn
00:06:c1	Cisco
00:06:c2	Smartmat
00:06:c3	Schindle
00:06:c4	Piolink
00:06:c5	InnoviTe
00:06:c6	Lesswire
00:06:c7	RfnetTec
00:06:c8	Sumitomo
00:06:c9	Technica
00:06:ca	American
00:06:cb	JotronEl
00:06:cc	JmiElect
00:06:cd	LeafImag
00:06:ce	Dateno
00:06:cf	ThalesAv
00:06:d0	ElgarEle
00:06:d1	TahoeNet
00:06:d2	TundraSe
00:06:d3	AlphaTel
00:06:d4	Interact
00:06:d5	Diamond
00:06:d6	Cisco
00:06:d7	Cisco
00:06:d8	MapleOpt
00:06:d9	Ipm-NetS
00:06:da	ItranCom
00:06:db	Ichips
00:06:dc	SyabasTe
00:06:dd	AtTLabor
00:06:de	FlashTec
00:06:df	Aidonic
00:06:e0	Mat
00:06:e1	TechnoTr
00:06:e2	CeemaxTe
00:06:e3	Quantita
00:06:e4	CitelTec
00:06:e5	FujianNe
00:06:e6	Dongyang
00:06:e7	BitBlitz
00:06:e8	OpticalN
00:06:e9	Intime
00:06:ea	Elzet80M
00:06:eb	GlobalDa
00:06:ec	Harris
00:06:ed	InaraNet
00:06:ee	Shenyang
00:06:ef	Maxxan
00:06:f0	Digeo
00:06:f1	Optillio
00:06:f2	PlatysCo
00:06:f3	Acceligh
00:06:f4	PrimeEle
00:06:f5	AlpsElec
00:06:f6	Cisco
00:06:f7	AlpsElec
00:06:f8	Boeing
00:06:f9	MitsuiZo
00:06:fa	IpSquare
00:06:fb	HitachiP
00:06:fc	Fnet
00:06:fd	ComjetIn
00:06:fe	Ambrado
00:06:ff	Sheba
00:07:00	Zettamed
00:07:01	Cisco
00:07:02	VarianMe
00:07:03	CseeTran
00:07:04	AlpsElec
00:07:05	EndressH
00:07:06	Sanritz
00:07:07	Interali
00:07:08	Bitrage
00:07:09	Westerst
00:07:0a	UnicomAu
00:07:0b	Novabase
00:07:0c	Sva-Intr
00:07:0d	Cisco
00:07:0e	Cisco
00:07:0f	Fujant
00:07:10	Adax
00:07:11	Acterna
00:07:12	JalInfor
00:07:13	IpOne
00:07:14	Brightco
00:07:15	GeneralR
00:07:16	JSMarine
00:07:17	WielandE
00:07:18	Icantek
00:07:19	Mobiis
00:07:1a	Finedigi
00:07:1b	CdviAmer
00:07:1c	At&T
00:07:1d	SatelsaS
00:07:1e	Tri-MEng
00:07:1f	European
00:07:20	Trutzsch
00:07:21	FormacEl
00:07:22	Nielsen
00:07:23	ElconSys
00:07:24	Telemax
00:07:25	Bematech
00:07:26	Shenzhen
00:07:27	ZiHk
00:07:28	NeoTelec
00:07:29	KistlerI
00:07:2a	Innovanc
00:07:2b	JungMyun
00:07:2c	Fabricom
00:07:2d	Cnsystem
00:07:2e	NorthNod
00:07:2f	Intransa
00:07:30	Hutchiso
00:07:31	Ophir-Sp
00:07:32	AaeonTec
00:07:33	Dancontr
00:07:34	Onstor
00:07:35	FlarionT
00:07:36	DataVide
00:07:37	Soriya
00:07:38	YoungTec
00:07:39	ScottyGr
00:07:3a	Inventel
00:07:3b	Tenovis
00:07:3c	TelecomD
00:07:3d	NanjingP
00:07:3e	ChinaGre
00:07:3f	WoojyunS
00:07:40	Buffalo
00:07:41	SierraAu
00:07:42	Ormazaba
00:07:43	ChelsioC
00:07:44	Unico
00:07:45	RadlanCo
00:07:46	Turck
00:07:47	Mecalc
00:07:48	ImagingS
00:07:49	Cenix
00:07:4a	CarlVale
00:07:4b	Daihen
00:07:4c	Beicom
00:07:4d	ZebraTec
00:07:4e	Ipfront
00:07:4f	Cisco
00:07:50	Cisco
00:07:51	M-U-T
00:07:52	RhythmWa
00:07:53	BeijingQ
00:07:54	XyterraC
00:07:55	Lafon
00:07:56	JuyoungT
00:07:57	TopcallI
00:07:58	Dragonwa
00:07:59	BorisMan
00:07:5a	AirProdu
00:07:5b	GibsonGu
00:07:5c	EastmanK
00:07:5d	Cellerit
00:07:5e	AmetekPo
00:07:5f	VcsVideo
00:07:60	TomisInf
00:07:61	29530
00:07:62	GroupSen
00:07:63	Sunniwel
00:07:64	Youngwoo
00:07:65	JadeQuan
00:07:66	ChouChin
00:07:67	YuxingEl
00:07:68	Danfoss
00:07:69	Italiana
00:07:6a	Nexteye
00:07:6b	Stralfor
00:07:6c	Daehanet
00:07:6d	Flexligh
00:07:6e	Sinetica
00:07:6f	Synoptic
00:07:70	Ubiquoss
00:07:71	Embedded
00:07:72	Alcatel-
00:07:73	AscomPow
00:07:74	Guangzho
00:07:75	ValenceS
00:07:76	FederalA
00:07:77	Motah
00:07:78	Gerstel
00:07:79	SungilTe
00:07:7a	Infoware
00:07:7b	Millimet
00:07:7c	Westermo
00:07:7d	Cisco
00:07:7e	Elrest
00:07:7f	JCommuni
00:07:80	Bluegiga
00:07:81	Itron
00:07:82	Oracle
00:07:83	SyncomNe
00:07:84	Cisco
00:07:85	Cisco
00:07:86	Wireless
00:07:87	IdeaSyst
00:07:88	Clipcomm
00:07:89	Dongwon
00:07:8a	MentorDa
00:07:8b	WegenerC
00:07:8c	Elektron
00:07:8d	Netengin
00:07:8e	GarzFric
00:07:8f	EmkayInn
00:07:90	Tri-MTec
00:07:91	Internat
00:07:92	SütronEl
00:07:93	ShinSate
00:07:94	SimpleDe
00:07:95	Elitegro
00:07:96	Lsi
00:07:97	Netpower
00:07:98	SeleaSrl
00:07:99	TippingPoint
00:07:9a	Verint
00:07:9b	AuroraNe
00:07:9c	GoldenEl
00:07:9d	Musashi
00:07:9e	Ilinx
00:07:9f	ActionDi
00:07:a0	E-Watch
00:07:a1	ViasysHe
00:07:a2	Opteon
00:07:a3	OsitisSo
00:07:a4	GnNetcom
00:07:a5	YDK
00:07:a6	LevitonM
00:07:a7	A-Z
00:07:a8	HaierGro
00:07:a9	Novasoni
00:07:aa	QuantumD
00:07:ab	Samsung
00:07:ac	Eolring
00:07:ad	Pentacon
00:07:ae	Britestr
00:07:af	RedLionC
00:07:b0	OfficeDe
00:07:b1	EquatorT
00:07:b2	Transacc
00:07:b3	Cisco
00:07:b4	Cisco
00:07:b5	AnyOneWi
00:07:b6	TelecomT
00:07:b7	SamuraiI
00:07:b8	Corvalen
00:07:b9	Ginganet
00:07:ba	Utstarco
00:07:bb	Candera
00:07:bc	Identix
00:07:bd	Radionet
00:07:be	Datalogi
00:07:bf	Armillai
00:07:c0	Netzerve
00:07:c1	Overture
00:07:c2	NetsysTe
00:07:c3	Thomson
00:07:c4	Jean
00:07:c5	Gcom
00:07:c6	VdsVossk
00:07:c7	Synectic
00:07:c8	Brain21
00:07:c9	TechnolS
00:07:ca	CreatixP
00:07:cb	FreeboxS
00:07:cc	KabaBenz
00:07:cd	KumohEle
00:07:ce	Cabletim
00:07:cf	Anoto
00:07:d0	AutomatE
00:07:d1	Spectrum
00:07:d2	LogopakS
00:07:d3	Spgprint
00:07:d4	Zhejiang
00:07:d5	3eTechno
00:07:d6	Commil
00:07:d7	CaporisN
00:07:d8	HitronTe
00:07:d9	Spliceco
00:07:da	NeuroTel
00:07:db	KiranaNe
00:07:dc	Atek
00:07:dd	CradleTe
00:07:de	Ecopilt
00:07:df	Vbrick
00:07:e0	Palm
00:07:e1	WisCommu
00:07:e2	Bitworks
00:07:e3	NavcomTe
00:07:e4	Softradi
00:07:e5	Coup
00:07:e6	Edgeflow
00:07:e7	Freewave
00:07:e8	Edgewave
00:07:e9	Intel
00:07:ea	Massana
00:07:eb	Cisco
00:07:ec	Cisco
00:07:ed	Altera
00:07:ee	TelcoInf
00:07:ef	Lockheed
00:07:f0	Logisync
00:07:f1	Teraburs
00:07:f2	Ioa
00:07:f3	Thinkeng
00:07:f4	Eletex
00:07:f5	Bridgeco
00:07:f6	QqestSof
00:07:f7	Galtroni
00:07:f8	Itdevice
00:07:f9	Sensapho
00:07:fa	Itt
00:07:fb	GigaStre
00:07:fc	Adept
00:07:fd	Lanergy
00:07:fe	Rigaku
00:07:ff	GluonNet
00:08:00	Multitec
00:08:01	Highspee
00:08:02	HP
00:08:03	CosTron
00:08:04	Ica
00:08:05	Techno-H
00:08:06	Raonet
00:08:07	AccessDe
00:08:08	PptVisio
00:08:09	Systemon
00:08:0a	Espera-W
00:08:0b	BirkaBpa
00:08:0c	VdaElett
00:08:0d	Toshiba
00:08:0e	ArrisGro
00:08:0f	Proximio
00:08:10	KeyTechn
00:08:11	Voix
00:08:12	Gm-2
00:08:13	Diskbank
00:08:14	TilTechn
00:08:15	Cats
00:08:16	BluelonA
00:08:17	Emergeco
00:08:18	Pixelwor
00:08:19	Banksys
00:08:1a	SanradIn
00:08:1b	Windigo
00:08:1c	@PosCom
00:08:1d	Ipsil
00:08:1e	Repeatit
00:08:1f	PouYuenT
00:08:20	Cisco
00:08:21	Cisco
00:08:22	InproCom
00:08:23	Texa
00:08:24	NuanceDo
00:08:25	AcmePack
00:08:26	Colorado
00:08:27	AdbBroad
00:08:28	KoeiEngi
00:08:29	AvalNaga
00:08:2a	Powerwal
00:08:2b	Wooksung
00:08:2c	Homag
00:08:2d	IndusTeq
00:08:2e	Multiton
00:08:2f	Cisco
00:08:30	Cisco
00:08:31	Cisco
00:08:32	Cisco
00:08:4e	Divergen
00:08:4f	Qualstar
00:08:50	ArizonaI
00:08:51	Canadian
00:08:52	Technica
00:08:53	Schleich
00:08:54	Netronix
00:08:55	Fermilab
00:08:56	Gamatron
00:08:57	PolarisN
00:08:58	Novatech
00:08:59	Shenzhen
00:08:5a	Intigate
00:08:5b	HanbitEl
00:08:5c	Shanghai
00:08:5d	Aastra
00:08:5e	Pco
00:08:5f	PicanolN
00:08:60	Lodgenet
00:08:61	Softener
00:08:62	NecElumi
00:08:63	Entrisph
00:08:64	FasySPA
00:08:65	Jascom
00:08:66	DsxAcces
00:08:67	UptimeDe
00:08:68	Puroptix
00:08:69	Command-
00:08:6a	Securito
00:08:6b	Mipsys
00:08:6c	PlasmonL
00:08:6d	Missouri
00:08:6e	Hyglo
00:08:6f	Resource
00:08:70	Rasvia
00:08:71	Northdat
00:08:72	Sorenson
00:08:73	Daptechn
00:08:74	Dell
00:08:75	AcorpEle
00:08:76	Sdsystem
00:08:77	Liebert-
00:08:78	Benchmar
00:08:79	Cem
00:08:7a	Wipotec
00:08:7b	RtxTelec
00:08:7c	Cisco
00:08:7d	Cisco
00:08:7e	BonElect
00:08:7f	SpaunEle
00:08:80	Broadtel
00:08:81	DigitalH
00:08:82	Sigma
00:08:83	HP
00:08:84	IndexBra
00:08:85	EmsDrTho
00:08:86	HansungT
00:08:87	Maschine
00:08:88	OullimIn
00:08:89	Echostar
00:08:8a	Minds@Wo
00:08:8b	TropicNe
00:08:8c	QuantaNe
00:08:8d	Sigma-Li
00:08:8e	NihonCom
00:08:8f	Advanced
00:08:90	Avilinks
00:08:91	Lyan
00:08:92	EmSoluti
00:08:93	LeInform
00:08:94	Innovisi
00:08:95	DircTech
00:08:96	Printron
00:08:97	QuakeTec
00:08:98	GigabitO
00:08:99	Netbind
00:08:9a	AlcatelM
00:08:9b	IcpElect
00:08:9c	ElecsInd
00:08:9d	Uhd-Elek
00:08:9e	BeijingE
00:08:9f	EfmNetwo
00:08:a0	StotzFei
00:08:a1	CnetTech
00:08:a2	AdiEngin
00:08:a3	Cisco
00:08:a4	Cisco
00:08:a5	Peninsul
00:08:a6	Multiwar
00:08:a7	Ilogic
00:08:a8	Systec
00:08:a9	Sangsang
00:08:aa	Karam
00:08:ab	Enerlinx
00:08:ac	Eltromat
00:08:ad	Toyo-Lin
00:08:ae	Packetfr
00:08:af	Novatec
00:08:b0	BktelCom
00:08:b1	Proquent
00:08:b2	Shenzhen
00:08:b3	Fastwel
00:08:b4	Syspol
00:08:b5	TaiGuenE
00:08:b6	Routefre
00:08:b7	Hit
00:08:b8	EFJohnso
00:08:b9	Kaonmedi
00:08:ba	Erskine
00:08:bb	Netexcel
00:08:bc	Ilevo
00:08:bd	Tepg-Us
00:08:be	XenpakMs
00:08:bf	AptusEle
00:08:c0	Asa
00:08:c1	AvistarC
00:08:c2	Cisco
00:08:c3	Contex
00:08:c4	Hikari
00:08:c5	Liontech
00:08:c6	Philips
00:08:c7	Compaq
00:08:c8	Sonetico
00:08:c9	Technisa
00:08:ca	TwinhanT
00:08:cb	ZetaBroa
00:08:cc	Remotec
00:08:cd	With-Net
00:08:ce	Ipmobile
00:08:cf	NipponKo
00:08:d0	MusashiE
00:08:d1	Karel
00:08:d2	ZoomNetw
00:08:d3	Hercules
00:08:d4	Ineoques
00:08:d5	Vanguard
00:08:d6	Hassnet
00:08:d7	How
00:08:d8	DowkeyMi
00:08:d9	Mitadens
00:08:da	Sofaware
00:08:db	Corrigen
00:08:dc	Wiznet
00:08:dd	TelenaCo
00:08:de	3up
00:08:df	Alistel
00:08:e0	AtoTechn
00:08:e1	Barix
00:08:e2	Cisco
00:08:e3	Cisco
00:08:e4	Envenerg
00:08:e5	Idk
00:08:e6	Littlefe
00:08:e7	ShiContr
00:08:e8	ExcelMas
00:08:e9	Nextgig
00:08:ea	MotionCo
00:08:eb	Romwin
00:08:ec	OpticalZ
00:08:ed	St&TInst
00:08:ee	LogicPro
00:08:ef	DibalSA
00:08:f0	NextGene
00:08:f1	Voltaire
00:08:f2	C&STechn
00:08:f3	Wany
00:08:f4	Bluetake
00:08:f5	Yestechn
00:08:f6	Sumitomo
00:08:f7	HitachiS
00:08:f8	UtcCcs
00:08:f9	ArtesynE
00:08:fa	KarlEBri
00:08:fb	Sonosite
00:08:fc	Gigaphot
00:08:fd	Bluekore
00:08:fe	UnikC&C
00:08:ff	TrilogyC
00:09:00	Tmt
00:09:01	Shenzhen
00:09:02	RedlineC
00:09:03	Panasas
00:09:04	MondialE
00:09:05	ItecTech
00:09:06	EsteemNe
00:09:07	Chrysali
00:09:08	VtechTec
00:09:09	TelenorC
00:09:0a	SnedfarT
00:09:0b	MtlInstr
00:09:0c	Mayekawa
00:09:0d	LeaderEl
00:09:0e	HelixTec
00:09:0f	Fortinet
00:09:10	SimpleAc
00:09:11	Cisco
00:09:12	Cisco
00:09:13	Systemk
00:09:14	Computro
00:09:15	Cas
00:09:16	ListmanH
00:09:17	WemTechn
00:09:18	Samsung
00:09:19	MdsGatew
00:09:1a	MacatOpt
00:09:1b	DigitalG
00:09:1c	Cachevis
00:09:1d	ProteamC
00:09:1e	Firstech
00:09:1f	A&D
00:09:20	EpoxComp
00:09:21	Planmeca
00:09:22	TstBiome
00:09:23	HeamanSy
00:09:24	Telebau
00:09:25	VsnSyste
00:09:26	YodaComm
00:09:27	Toyokeik
00:09:28	Telecore
00:09:29	SanyoInd
00:09:2a	Mytecs
00:09:2b	IqstorNe
00:09:2c	Hitpoint
00:09:2d	HTC
00:09:2e	B&TechSy
00:09:2f	AkomTech
00:09:30	Aeroconc
00:09:31	FutureIn
00:09:32	Omnilux
00:09:33	Ophit
00:09:34	Dream-Mu
00:09:35	Sandvine
00:09:36	Ipetroni
00:09:37	Inventec
00:09:38	AllotCom
00:09:39	Shibasok
00:09:3a	Molex
00:09:3b	HyundaiN
00:09:3c	JacquesT
00:09:3d	Newisys
00:09:3e	C&ITechn
00:09:3f	Double-W
00:09:40	Agfeo
00:09:41	AlliedTe
00:09:42	Wireless
00:09:43	Cisco
00:09:44	Cisco
00:09:45	Palmmicr
00:09:46	ClusterL
00:09:47	Aztek
00:09:48	VistaCon
00:09:49	GlyphTec
00:09:4a	HomenetC
00:09:4b	Fillfact
00:09:4c	Communic
00:09:4d	Braintre
00:09:4e	BartechI
00:09:4f	Elmegt
00:09:50	Independ
00:09:51	ApogeeIm
00:09:52	Auerswal
00:09:53	LinkageS
00:09:54	AmitSpol
00:09:55	YoungGen
00:09:56	NetworkG
00:09:57	Supercal
00:09:58	Intelnet
00:09:59	Sitecsof
00:09:5a	Racewood
00:09:5b	Netgear
00:09:5c	Philips
00:09:5d	Dialogue
00:09:5e	Masstech
00:09:5f	Telebyte
00:09:60	Yozan
00:09:61	Switchge
00:09:62	SonitorT
00:09:63	Dominion
00:09:64	Hi-Techn
00:09:65	HyunjuCo
00:09:66	ThalesNa
00:09:67	Tachyon
00:09:68	Technove
00:09:69	MeretOpt
00:09:6a	Cloverle
00:09:6b	IBM
00:09:6c	ImediaSe
00:09:6d	Powernet
00:09:6e	GiantEle
00:09:6f	BeijingZ
00:09:70	Vibratio
00:09:71	TimeMana
00:09:72	Secureba
00:09:73	LentenTe
00:09:74	InnopiaT
00:09:75	FsonaCom
00:09:76	Datasoft
00:09:77	BrunnerE
00:09:78	AijiSyst
00:09:79	Advanced
00:09:7a	LouisDes
00:09:7b	Cisco
00:09:7c	Cisco
00:09:7d	SecwellN
00:09:7e	ImiTechn
00:09:7f	Vsecure2
00:09:80	PowerZen
00:09:81	NewportN
00:09:82	LoeweOpt
00:09:83	Globalto
00:09:84	MycasaNe
00:09:85	AutoTele
00:09:86	Metalink
00:09:87	NishiNip
00:09:88	NudianEl
00:09:89	Vividlog
00:09:8a	Equallog
00:09:8b	Entropic
00:09:8c	OptionWi
00:09:8d	Velocity
00:09:8e	Ipcas
00:09:8f	Cetacean
00:09:90	AcksysCo
00:09:91	GeFanucA
00:09:92	Interepo
00:09:93	Visteon
00:09:94	CronyxEn
00:09:95	CastleTe
00:09:96	Rdi
00:09:97	NortelNe
00:09:98	Capinfo
00:09:99	CpGeorge
00:09:9a	Elmo
00:09:9b	WesternT
00:09:9c	NavalRes
00:09:9d	Haliplex
00:09:9e	Testech
00:09:9f	Videx
00:09:a0	Microtec
00:09:a1	Telewise
00:09:a2	Interfac
00:09:a3	LeadflyT
00:09:a4	Hartec
00:09:a5	HansungE
00:09:a6	IgnisOpt
00:09:a7	BangOluf
00:09:a8	Eastmode
00:09:a9	IkanosCo
00:09:aa	DataComm
00:09:ab	Netcontr
00:09:ac	Lanvoice
00:09:ad	HyundaiS
00:09:ae	OkanoEle
00:09:af	E-Generi
00:09:b0	Onkyo
00:09:b1	Kanemats
00:09:b2	L&F
00:09:b3	Mcm
00:09:b4	KisanTel
00:09:b5	3jTech
00:09:b6	Cisco
00:09:b7	Cisco
00:09:b8	Entise
00:09:b9	ActionIm
00:09:ba	MakuInfo
00:09:bb	Mathstar
00:09:bc	DigitalS
00:09:bd	EpygiTec
00:09:be	Mamiya-O
00:09:bf	Nintendo
00:09:c0	6wind
00:09:c1	Proces-D
00:09:c2	Onity
00:09:c3	Netas
00:09:c4	Medicore
00:09:c5	KingeneT
00:09:c6	Visionic
00:09:c7	Movistec
00:09:c8	Sinagawa
00:09:c9	Bluewinc
00:09:ca	Imaxnetw
00:09:cb	Hbrain
00:09:cc	Moog
00:09:cd	HudsonSo
00:09:ce	Spacebri
00:09:cf	Iad
00:09:d0	SolacomT
00:09:d1	SeranoaN
00:09:d2	MaiLogic
00:09:d3	WesternD
00:09:d4	Transtec
00:09:d5	SignalCo
00:09:d6	KncOne
00:09:d7	DcSecuri
00:09:d8	FältComm
00:09:d9	Neoscale
00:09:da	ControlM
00:09:db	Espace
00:09:dc	GalaxisT
00:09:dd	MavinTec
00:09:de	SamjinIn
00:09:df	VestelKo
00:09:e0	XemicsSA
00:09:e1	GemtekTe
00:09:e2	SinbonEl
00:09:e3	AngelIgl
00:09:e4	KTechInf
00:09:e5	Hottinge
00:09:e6	CyberSwi
00:09:e7	AdcTecho
00:09:e8	Cisco
00:09:e9	Cisco
00:09:ea	Yem
00:09:eb	Humandat
00:09:ec	Daktroni
00:09:ed	Cipherop
00:09:ee	MeikyoEl
00:09:ef	VoceraCo
00:09:f0	ShimizuT
00:09:f1	YamakiEl
00:09:f2	CohuElec
00:09:f3	WellComm
00:09:f4	AlconLab
00:09:f5	EmersonN
00:09:f6	Shenzhen
00:09:f7	SedADivi
00:09:f8	UnimoTec
00:09:f9	ArtJapan
00:09:fb	Philips
00:09:fc	Ipflex
00:09:fd	Ubinetic
00:09:fe	DaisyTec
00:09:ff	XNet2000
00:0a:00	Mediatek
00:0a:01	Sohoware
00:0a:02	Annso
00:0a:03	EndesaSe
00:0a:04	3Com
00:0a:05	Widax
00:0a:06	TeledexL
00:0a:07	Webwayon
00:0a:08	AlpineEl
00:0a:09	TaracomI
00:0a:0a	Sunix
00:0a:0b	Sealevel
00:0a:0c	Scientif
00:0a:0d	FciDeuts
00:0a:0e	InvivoRe
00:0a:0f	IlryungT
00:0a:10	FastMedi
00:0a:11	ExpetTec
00:0a:12	AzylexTe
00:0a:13	Honeywel
00:0a:14	TecoAS
00:0a:15	SiliconD
00:0a:16	LassenRe
00:0a:17	NestarCo
00:0a:18	Vichel
00:0a:19	ValerePo
00:0a:1a	Imerge
00:0a:1b	StreamLa
00:0a:1c	BridgeIn
00:0a:1d	OpticalC
00:0a:1e	Red-MPro
00:0a:1f	ArtWareT
00:0a:20	SvaNetwo
00:0a:21	IntegraT
00:0a:22	Amperion
00:0a:23	ParamaNe
00:0a:24	OctaveCo
00:0a:25	CeragonN
00:0a:26	CeiaSPA
00:0a:27	Apple
00:0a:28	Motorola
00:0a:29	PanDacom
00:0a:2a	Qsi
00:0a:2b	Etherstu
00:0a:2c	ActiveTc
00:0a:2d	CabotCom
00:0a:2e	MapleNet
00:0a:2f	Artnix
00:0a:30	Visteon
00:0a:31	HcvConsu
00:0a:32	Xsido
00:0a:33	Emulex
00:0a:34	Identica
00:0a:35	Xilinx
00:0a:36	SynelecT
00:0a:37	ProceraN
00:0a:38	ApaniNet
00:0a:39	LopaInfo
00:0a:3a	J-ThreeI
00:0a:3b	GctSemic
00:0a:3c	Enerpoin
00:0a:3d	EloSiste
00:0a:3e	EadsTele
00:0a:3f	DataEast
00:0a:40	CrownAud
00:0a:41	Cisco
00:0a:42	Cisco
00:0a:43	Chunghwa
00:0a:44	AveryDen
00:0a:45	Audio-Te
00:0a:46	AroWeldi
00:0a:47	AlliedVi
00:0a:48	Albatron
00:0a:49	F5Networ
00:0a:4a	Targa
00:0a:4b	Datapowe
00:0a:4c	Molecula
00:0a:4d	Noritz
00:0a:4e	UnitekEl
00:0a:4f	BrainBox
00:0a:50	Remotek
00:0a:51	Gyrosign
00:0a:52	Asiarf
00:0a:53	Intronic
00:0a:54	LagunaHi
00:0a:55	Markem
00:0a:56	HitachiM
00:0a:57	HP
00:0a:58	FreyerSi
00:0a:59	HwServer
00:0a:5a	Greennet
00:0a:5b	Power-On
00:0a:5c	CarelSPA
00:0a:5d	Fingerte
00:0a:5e	3Com
00:0a:5f	Almedio
00:0a:60	Autostar
00:0a:61	Cellinx
00:0a:62	CrinisNe
00:0a:63	Dhd
00:0a:64	EracomTe
00:0a:65	Gentechm
00:0a:66	Mitsubis
00:0a:67	Ongcorp
00:0a:68	Solarfla
00:0a:69	SunnyBel
00:0a:6a	SvmMicro
00:0a:6b	TadiranT
00:0a:6c	Walchem
00:0a:6d	EksElekt
00:0a:6e	Harmonic
00:0a:6f	ZyflexTe
00:0a:70	MplsForu
00:0a:71	AvrioTec
00:0a:72	Stec
00:0a:73	Scientif
00:0a:74	Manticom
00:0a:75	Caterpil
00:0a:76	BeidaJad
00:0a:77	Bluewire
00:0a:78	Olitec
00:0a:79	CoregaKK
00:0a:7a	Kyoritsu
00:0a:7b	Corneliu
00:0a:7c	Tecton
00:0a:7d	Valo
00:0a:7e	Advantag
00:0a:7f	TeradonI
00:0a:80	Telkonet
00:0a:81	TeimaAud
00:0a:82	TatsutaS
00:0a:83	SaltoSL
00:0a:84	RainsunE
00:0a:85	PlatC2
00:0a:86	Lenze
00:0a:87	Integrat
00:0a:88	Incypher
00:0a:89	Creval
00:0a:8a	Cisco
00:0a:8b	Cisco
00:0a:8c	Guardwar
00:0a:8d	Eurother
00:0a:8e	Invacom
00:0a:8f	AskaInte
00:0a:90	BaysideI
00:0a:91	Hemocue
00:0a:92	Presonus
00:0a:93	W2Networ
00:0a:94	Shanghai
00:0a:95	Apple
00:0a:96	MewtelTe
00:0a:97	Sonicblu
00:0a:98	M+FGwinn
00:0a:99	CalampWi
00:0a:9a	AiptekIn
00:0a:9b	TbGroup
00:0a:9c	ServerTe
00:0a:9d	KingYoun
00:0a:9e	Broadweb
00:0a:9f	Pannaway
00:0a:a0	CedarPoi
00:0a:a1	VVS
00:0a:a2	Systek
00:0a:a3	Shimafuj
00:0a:a4	Shanghai
00:0a:a5	MaxlinkI
00:0a:a6	Hochiki
00:0a:a7	FeiElect
00:0a:a8	EpipePty
00:0a:a9	BrooksAu
00:0a:aa	AltigenC
00:0a:ab	ToyotaTe
00:0a:ac	Terratec
00:0a:ad	Stargame
00:0a:ae	Rosemoun
00:0a:af	Pipal
00:0a:b0	LoytecEl
00:0a:b1	Genetec
00:0a:b2	FresnelW
00:0a:b3	FaGira
00:0a:b4	EticTele
00:0a:b5	DigitalE
00:0a:b6	Compunet
00:0a:b7	Cisco
00:0a:b8	Cisco
00:0a:b9	AsteraTe
00:0a:ba	ArconTec
00:0a:bb	TaiwanSe
00:0a:bc	Seabridg
00:0a:bd	Rupprech
00:0a:be	OpnetTec
00:0a:bf	HirotaSs
00:0a:c0	FuyohVid
00:0a:c1	Futurete
00:0a:c2	WuhanFib
00:0a:c3	EmTechni
00:0a:c4	DaewooTe
00:0a:c5	ColorKin
00:0a:c6	Overture
00:0a:c7	Unicatio
00:0a:c8	ZpsysPla
00:0a:c9	Zambeel
00:0a:ca	Yokoyama
00:0a:cb	XpakMsaG
00:0a:cc	WinnowNe
00:0a:cd	SunrichT
00:0a:ce	Radiante
00:0a:cf	Provideo
00:0a:d0	NiigataD
00:0a:d1	Mws
00:0a:d2	Jepico
00:0a:d3	Initech
00:0a:d4	Corebell
00:0a:d5	Brainchi
00:0a:d6	Beamreac
00:0a:d7	OriginEl
00:0a:d8	IpcservT
00:0a:d9	Sony
00:0a:da	Vindicat
00:0a:db	Skypilot
00:0a:dc	Ruggedco
00:0a:dd	Allworx
00:0a:de	HappyCom
00:0a:df	Gennum
00:0a:e0	Fujitsu
00:0a:e1	EgTechno
00:0a:e2	Binatone
00:0a:e3	YangMeiT
00:0a:e4	Wistron
00:0a:e5	Scottcar
00:0a:e6	Elitegro
00:0a:e7	EliopSA
00:0a:e8	CathayRo
00:0a:e9	AirvastT
00:0a:ea	AdamElek
00:0a:eb	TP-Link
00:0a:ec	KoatsuGa
00:0a:ed	HartingE
00:0a:ee	GcdHard-
00:0a:ef	OtrumAsa
00:0a:f0	Shin-OhE
00:0a:f1	ClarityD
00:0a:f2	Neoaxiom
00:0a:f3	Cisco
00:0a:f4	Cisco
00:0a:f5	AirgoNet
00:0a:f6	EmersonC
00:0a:f7	Broadcom
00:0a:f8	American
00:0a:f9	Hiconnec
00:0a:fa	Traverse
00:0a:fb	Ambri
00:0a:fc	CoreTecC
00:0a:fd	KentecEl
00:0a:fe	Novapal
00:0a:ff	Kilchher
00:0b:00	FujianSt
00:0b:01	DaiichiE
00:0b:02	Dallmeie
00:0b:03	Taekwang
00:0b:04	Volktek
00:0b:05	PacificB
00:0b:06	ArrisGro
00:0b:07	VoxpathN
00:0b:08	PillarDa
00:0b:09	Ifoundry
00:0b:0a	DbmOptic
00:0b:0b	Corrent
00:0b:0c	Agile
00:0b:0d	Air2u
00:0b:0e	TrapezeN
00:0b:0f	BoschRex
00:0b:10	11waveTe
00:0b:11	HimejiAb
00:0b:12	NuriTele
00:0b:13	Zetron
00:0b:14	Viewsoni
00:0b:15	Platypus
00:0b:16	Communic
00:0b:17	MksInstr
00:0b:18	Private
00:0b:19	VernierN
00:0b:1a	Industri
00:0b:1b	Systroni
00:0b:1c	SibcoBv
00:0b:1d	Layerzer
00:0b:1e	KappaOpt
00:0b:1f	IConComp
00:0b:20	Hirata
00:0b:21	G-StarCo
00:0b:22	Environm
00:0b:23	SiemensS
00:0b:24	Airlogic
00:0b:25	Aeluros
00:0b:26	Wetek
00:0b:27	Scion
00:0b:28	Quatech
00:0b:29	LsLgIndu
00:0b:2a	Howtel
00:0b:2b	Hostnet
00:0b:2c	EikiIndu
00:0b:2d	Danfoss
00:0b:2e	Cal-Comp
00:0b:2f	Bplan
00:0b:30	BeijingG
00:0b:31	YantaiZh
00:0b:32	Vormetri
00:0b:33	VivatoTe
00:0b:34	Shanghai
00:0b:35	QuadBitS
00:0b:36	Producti
00:0b:37	Manufact
00:0b:38	Knürr
00:0b:39	KeisokuG
00:0b:3a	Qustream
00:0b:3b	Devolo
00:0b:3c	CygnalIn
00:0b:3d	ContalOk
00:0b:3e	Bittware
00:0b:3f	Antholog
00:0b:40	Oclaro
00:0b:41	IngBüroD
00:0b:42	Commax
00:0b:43	Microsca
00:0b:44	ConcordI
00:0b:45	Cisco
00:0b:46	Cisco
00:0b:47	Advanced
00:0b:48	Sofrel
00:0b:49	Rf-LinkS
00:0b:4a	Visimetr
00:0b:4b	Visiowav
00:0b:4c	ClarionM
00:0b:4d	Emuzed
00:0b:4e	Vertexrs
00:0b:4f	Verifone
00:0b:50	Oxygnet
00:0b:51	MicetekI
00:0b:52	JoymaxEl
00:0b:53	Initium
00:0b:54	Bitmicro
00:0b:55	Adinstru
00:0b:56	Cybernet
00:0b:57	SiliconL
00:0b:58	Astronau
00:0b:59	Scriptpr
00:0b:5a	Hyperedg
00:0b:5b	RinconRe
00:0b:5c	Newtech
00:0b:5d	Fujitsu
00:0b:5e	AudioEng
00:0b:5f	Cisco
00:0b:60	Cisco
00:0b:61	Friedric
00:0b:62	Ib-Mohne
00:0b:63	Kaleides
00:0b:64	KiebackP
00:0b:65	SyACSrl
00:0b:66	Teralink
00:0b:67	TopviewT
00:0b:68	Addvalue
00:0b:69	FrankeFi
00:0b:6a	Asiarock
00:0b:6b	WistronN
00:0b:6c	Sychip
00:0b:6d	Solectro
00:0b:6e	NeffInst
00:0b:6f	MediaStr
00:0b:70	LoadTech
00:0b:71	Litchfie
00:0b:72	Lawo
00:0b:73	KodeosCo
00:0b:74	Kingwave
00:0b:75	Iosoft
00:0b:76	Et&TTech
00:0b:77	Cogent
00:0b:78	Taifatec
00:0b:79	X-Com
00:0b:7a	L-3Linka
00:0b:7b	Test-Um
00:0b:7c	TelexCom
00:0b:7d	SolomonE
00:0b:7e	Saginomi
00:0b:7f	AlignEng
00:0b:80	LyciumNe
00:0b:81	Kaparel
00:0b:82	Grandstr
00:0b:83	Datawatt
00:0b:84	Bodet
00:0b:85	Cisco
00:0b:86	ArubaNet
00:0b:87	American
00:0b:88	Vidisco
00:0b:89	TopGloba
00:0b:8a	Miteq
00:0b:8b	KerajetS
00:0b:8c	Flextron
00:0b:8d	AvvioNet
00:0b:8e	Ascent
00:0b:8f	AkitaEle
00:0b:90	AdvaOpti
00:0b:91	AglaiaGe
00:0b:92	AscomDan
00:0b:93	RitterEl
00:0b:94	DigitalM
00:0b:95	EbetGami
00:0b:96	Innotrac
00:0b:97	Matsushi
00:0b:98	Nicetech
00:0b:99	Sensable
00:0b:9a	Shanghai
00:0b:9b	SiriusSy
00:0b:9c	TribeamT
00:0b:9d	TwinmosT
00:0b:9e	YasingTe
00:0b:9f	NeueElsa
00:0b:a0	T&LInfor
00:0b:a1	Fujikura
00:0b:a2	Sumitomo
00:0b:a3	SiemensI
00:0b:a4	ShironSa
00:0b:a5	QuasarCi
00:0b:a6	Miyakawa
00:0b:a7	MarantiN
00:0b:a8	HanbackE
00:0b:a9	Cloudshi
00:0b:aa	Aiphone
00:0b:ab	Advantec
00:0b:ac	3Com
00:0b:ad	Pc-Pos
00:0b:ae	VitalsSy
00:0b:af	WoojuCom
00:0b:b0	SysnetTe
00:0b:b1	SuperSta
00:0b:b2	Smallbig
00:0b:b3	RitTechn
00:0b:b4	RdcSemic
00:0b:b5	NstorTec
00:0b:b6	Metallig
00:0b:b7	Micro
00:0b:b8	KihokuEl
00:0b:b9	Imsys
00:0b:ba	Harmonic
00:0b:bb	Etin
00:0b:bc	EnGarde
00:0b:bd	Connexio
00:0b:be	Cisco
00:0b:bf	Cisco
00:0b:c0	ChinaIwn
00:0b:c1	BayMicro
00:0b:c2	CorinexC
00:0b:c3	Multiple
00:0b:c4	Biotroni
00:0b:c5	SmcNetwo
00:0b:c6	Isac
00:0b:c7	IcetSPA
00:0b:c8	AirflowN
00:0b:c9	Electrol
00:0b:ca	DatavanT
00:0b:cb	FagorAut
00:0b:cc	JusanSA
00:0b:cd	HP
00:0b:ce	Free2mov
00:0b:cf	AgfaNdt
00:0b:d0	XimetaTe
00:0b:d1	Aeronix
00:0b:d2	RemoproT
00:0b:d3	Cd3o
00:0b:d4	BeijingW
00:0b:d5	Nvergenc
00:0b:d6	PaxtonAc
00:0b:d7	DormaTim
00:0b:d8	Industri
00:0b:d9	GeneralH
00:0b:da	Eyecross
00:0b:db	Dell
00:0b:dc	Akcp
00:0b:dd	TohokuRi
00:0b:de	Teldix
00:0b:df	Shenzhen
00:0b:e0	Serconet
00:0b:e1	NokiaNet
00:0b:e2	Lumenera
00:0b:e3	KeyStrea
00:0b:e4	Hosiden
00:0b:e5	HimsInte
00:0b:e6	DatelEle
00:0b:e7	ComfluxT
00:0b:e8	Aoip
00:0b:e9	Actel
00:0b:ea	ZultysTe
00:0b:eb	Systegra
00:0b:ec	NipponEl
00:0b:ed	Elm
00:0b:ee	Jet
00:0b:ef	Code
00:0b:f0	MotexPro
00:0b:f1	LapLaser
00:0b:f2	Chih-Kan
00:0b:f3	Bae
00:0b:f4	Private
00:0b:f5	Shanghai
00:0b:f6	Nitgen
00:0b:f7	Nidek
00:0b:f8	Infinera
00:0b:f9	Gemstone
00:0b:fa	ExemysSr
00:0b:fb	D-NetInt
00:0b:fc	Cisco
00:0b:fd	Cisco
00:0b:fe	CastelBr
00:0b:ff	Berkeley
00:0c:00	BebIndus
00:0c:01	Abatron
00:0c:02	AbbOy
00:0c:03	HdmiLice
00:0c:04	Tecnova
00:0c:05	RpaReser
00:0c:06	NixvuePt
00:0c:07	Iftest
00:0c:08	HumexTec
00:0c:09	HitachiI
00:0c:0a	Guangdon
00:0c:0b	Broadbus
00:0c:0c	ApproTec
00:0c:0d	Communic
00:0c:0e	Xtremesp
00:0c:0f	Techno-O
00:0c:10	Pni
00:0c:11	NipponDe
00:0c:12	Micro-Op
00:0c:13	Mediaq
00:0c:14	Diagnost
00:0c:15	Cyberpow
00:0c:16	Concorde
00:0c:17	AjaVideo
00:0c:18	ZenisuKe
00:0c:19	TelioCom
00:0c:1a	QuestTec
00:0c:1b	Oracom
00:0c:1c	Microweb
00:0c:1d	MettlerF
00:0c:1e	GlobalCa
00:0c:1f	Glimmerg
00:0c:20	FiWin
00:0c:21	FacultyO
00:0c:22	DoubleDE
00:0c:23	BeijingL
00:0c:24	Anator
00:0c:25	AlliedTe
00:0c:26	WeintekL
00:0c:27	Sammy
00:0c:28	Rifatron
00:0c:29	Vmware
00:0c:2a	OcttelCo
00:0c:2b	EliasTec
00:0c:2c	Enwiser
00:0c:2d	Fullwave
00:0c:2e	OpenetIn
00:0c:2f	Seorimte
00:0c:30	Cisco
00:0c:31	Cisco
00:0c:32	AvionicD
00:0c:33	Compucas
00:0c:34	Vixen
00:0c:35	KavoDent
00:0c:36	SharpTak
00:0c:37	Geomatio
00:0c:38	Telcobri
00:0c:39	Sentinel
00:0c:3a	Oxance
00:0c:3b	OrionEle
00:0c:3c	Mediacho
00:0c:3d	Glsystec
00:0c:3e	CrestAud
00:0c:3f	CogentDe
00:0c:40	AltechCo
00:0c:41	Cisco
00:0c:42	Routerbo
00:0c:43	RalinkTe
00:0c:44	Automate
00:0c:45	Animatio
00:0c:46	AlliedTe
00:0c:47	SkTelete
00:0c:48	Qostek
00:0c:49	Dangaard
00:0c:4a	CygnusMi
00:0c:4b	CheopsEl
00:0c:4c	ArcorAg&
00:0c:4d	Curtiss-
00:0c:4e	WinbestT
00:0c:4f	UdtechJa
00:0c:50	SeagateT
00:0c:51	Scientif
00:0c:52	Roll
00:0c:53	Private
00:0c:54	Pedestal
00:0c:55	Microlin
00:0c:56	MegatelC
00:0c:57	MackieEn
00:0c:58	M&S
00:0c:59	IndymeEl
00:0c:5a	IbsmmEmb
00:0c:5b	HanwangT
00:0c:5c	GtnBV
00:0c:5d	ChicTech
00:0c:5e	CalypsoM
00:0c:5f	Avtec
00:0c:60	Acm
00:0c:61	AcTechDb
00:0c:62	AbbCewe-
00:0c:63	ZenithEl
00:0c:64	X2MsaGro
00:0c:65	SuninTel
00:0c:66	ProntoNe
00:0c:67	OyoElect
00:0c:68	Sigmatel
00:0c:69	National
00:0c:6a	Mbari
00:0c:6b	KurzIndu
00:0c:6c	ElgatoLl
00:0c:6d	Edwards
00:0c:6e	ASUS
00:0c:6f	AmtekSys
00:0c:70	Acc
00:0c:71	Wybron
00:0c:72	Tempearl
00:0c:73	TelsonEl
00:0c:74	Rivertec
00:0c:75	Oriental
00:0c:76	Micro-St
00:0c:77	LifeRaci
00:0c:78	In-TechE
00:0c:79	ExtelCom
00:0c:7a	Datarius
00:0c:7b	AlphaPro
00:0c:7c	Internet
00:0c:7d	TeikokuE
00:0c:7e	Tellium
00:0c:7f	Synertro
00:0c:80	Opelcomm
00:0c:81	Schneide
00:0c:82	NetworkT
00:0c:83	LogicalS
00:0c:84	Eazix
00:0c:85	Cisco
00:0c:86	Cisco
00:0c:87	Amd
00:0c:88	ApacheMi
00:0c:89	AcElectr
00:0c:8a	Bose
00:0c:8b	ConnectT
00:0c:8c	Kodicom
00:0c:8d	MatrixVi
00:0c:8e	MentorEn
00:0c:8f	NergalSR
00:0c:90	Octasic
00:0c:91	Riverhea
00:0c:92	Wolfvisi
00:0c:93	Xeline
00:0c:94	UnitedEl
00:0c:95	Primenet
00:0c:96	Oqo
00:0c:97	NvAdbTtv
00:0c:98	LetekCom
00:0c:99	HitelLin
00:0c:9a	HitechEl
00:0c:9b	EeSoluti
00:0c:9c	ChonghoI
00:0c:9d	Ubeeairw
00:0c:9e	Memoryli
00:0c:9f	Nke
00:0c:a0	Storcase
00:0c:a1	Sigmacom
00:0c:a2	Harmonic
00:0c:a3	RanchoTe
00:0c:a4	Promptte
00:0c:a5	NamanNz
00:0c:a6	Mintera
00:0c:a7	MetroSuz
00:0c:a8	GarudaNe
00:0c:a9	Ebtron
00:0c:aa	CubicTra
00:0c:ab	CommendI
00:0c:ac	CitizenW
00:0c:ad	BtuInter
00:0c:ae	AilocomO
00:0c:af	TriTerm
00:0c:b0	StarSemi
00:0c:b1	SallandE
00:0c:b2	Union
00:0c:b3	Round
00:0c:b4	Autocell
00:0c:b5	PremierT
00:0c:b6	NanjingS
00:0c:b7	NanjingH
00:0c:b8	Medion
00:0c:b9	Lea
00:0c:ba	Jamex
00:0c:bb	Iskraeme
00:0c:bc	Iscutum
00:0c:bd	Interfac
00:0c:be	Innomina
00:0c:bf	HolySton
00:0c:c0	GeneraOy
00:0c:c1	Eaton
00:0c:c2	Controln
00:0c:c3	Bewan
00:0c:c4	Tiptel
00:0c:c5	Nextlink
00:0c:c6	Ka-RoEle
00:0c:c7	Intellig
00:0c:c8	Xytronix
00:0c:c9	IlwooDat
00:0c:ca	HgstAWes
00:0c:cb	DesignCo
00:0c:cc	Aeroscou
00:0c:cd	Iec-Tc57
00:0c:ce	Cisco
00:0c:cf	Cisco
00:0c:d0	Symetrix
00:0c:d1	SfomTech
00:0c:d2	Schaffne
00:0c:d3	PrettlEl
00:0c:d4	Positron
00:0c:d5	Passave
00:0c:d6	PartnerT
00:0c:d7	Nallatec
00:0c:d8	MKJuchhe
00:0c:d9	Itcare
00:0c:da	Freehand
00:0c:db	BrocadeC
00:0c:dc	BecsTech
00:0c:dd	AosTechn
00:0c:de	AbbStotz
00:0c:df	PulnixAm
00:0c:e0	TrekDiag
00:0c:e1	OpenGrou
00:0c:e2	Rolls-Ro
00:0c:e3	OptionIn
00:0c:e4	Neurocom
00:0c:e5	ArrisGro
00:0c:e6	MeruNetw
00:0c:e7	Mediatek
00:0c:e8	Guangzho
00:0c:e9	Bloomber
00:0c:ea	AphonaKo
00:0c:eb	CnmpNetw
00:0c:ec	Spectrac
00:0c:ed	RealDigi
00:0c:ee	Jp-Embed
00:0c:ef	OpenNetw
00:0c:f0	MN
00:0c:f1	Intel
00:0c:f2	GamesaEó
00:0c:f3	CallImag
00:0c:f4	Akatsuki
00:0c:f5	Infoexpr
00:0c:f6	SitecomE
00:0c:f7	NortelNe
00:0c:f8	NortelNe
00:0c:f9	XylemWat
00:0c:fa	Digital
00:0c:fb	KoreaNet
00:0c:fc	S2ioTech
00:0c:fd	HyundaiI
00:0c:fe	GrandEle
00:0c:ff	Mro-Tek
00:0d:00	SeawayNe
00:0d:01	P&EMicro
00:0d:02	NecPlatf
00:0d:03	Matrics
00:0d:04	FoxboroE
00:0d:05	Cybernet
00:0d:06	Compulog
00:0d:07	CalrecAu
00:0d:08	Abovecab
00:0d:09	YuehuaZh
00:0d:0a	Projecti
00:0d:0b	Buffalo
00:0d:0c	MdiSecur
00:0d:0d	Itsuppor
00:0d:0e	Inqnet
00:0d:0f	Finlux
00:0d:10	Embedtro
00:0d:11	Dentsply
00:0d:12	Axell
00:0d:13	WilhelmR
00:0d:14	VtechInn
00:0d:15	VoipacSR
00:0d:16	UhsPty
00:0d:17	TurboNet
00:0d:18	Mega-Tre
00:0d:19	RobeShow
00:0d:1a	MustekSy
00:0d:1b	KyotoEle
00:0d:1c	AmesysDe
00:0d:1d	High-Tek
00:0d:1e	ControlT
00:0d:1f	AvDigita
00:0d:20	Asahikas
00:0d:21	Wiscore
00:0d:22	Unitroni
00:0d:23	SmartSol
00:0d:24	SentecE&
00:0d:25	Sanden
00:0d:26	Primagra
00:0d:27	Microple
00:0d:28	Cisco
00:0d:29	Cisco
00:0d:2a	Scanmati
00:0d:2b	RacalIns
00:0d:2c	Net2edge
00:0d:2d	NctDeuts
00:0d:2e	Matsushi
00:0d:2f	AinCommT
00:0d:30	IcefyreS
00:0d:31	Compelle
00:0d:32	Dispense
00:0d:33	Prediwav
00:0d:34	ShellInt
00:0d:35	PacInter
00:0d:36	WuHanRou
00:0d:37	Wiplug
00:0d:38	Nissin
00:0d:39	NetworkE
00:0d:3a	Microsoft
00:0d:3b	Microele
00:0d:3c	ITechDyn
00:0d:3d	Hammerhe
00:0d:3e	ApluxCom
00:0d:3f	VtiInstr
00:0d:40	VerintLo
00:0d:41	SiemensI
00:0d:42	NewbestD
00:0d:43	DrsTacti
00:0d:44	AudioBu-
00:0d:45	TottoriS
00:0d:46	ParkerSs
00:0d:47	Collex
00:0d:48	AewinTec
00:0d:49	TritonOf
00:0d:4a	SteagEta
00:0d:4b	Roku
00:0d:4c	OutlineE
00:0d:4d	Ninelane
00:0d:4e	Ndr
00:0d:4f	Kenwood
00:0d:50	GalazarN
00:0d:51	Divr
00:0d:52	ComartSy
00:0d:53	Beijing5
00:0d:54	3Com
00:0d:55	SanycomT
00:0d:56	Dell
00:0d:57	Fujitsu
00:0d:58	Private
00:0d:59	Amity
00:0d:5a	Tiesse
00:0d:5b	SmartEmp
00:0d:5c	RobertBo
00:0d:5d	RaritanC
00:0d:5e	NecPerso
00:0d:5f	Minds
00:0d:60	IBM
00:0d:61	Giga-Byt
00:0d:62	Funkwerk
00:0d:63	DentInst
00:0d:64	ComagHan
00:0d:65	Cisco
00:0d:66	Cisco
00:0d:67	Ericsson
00:0d:68	Vinci
00:0d:69	Tmt&D
00:0d:6a	RedwoodT
00:0d:6b	Mita-Tek
00:0d:6c	M-Audio
00:0d:6d	K-TechDe
00:0d:6e	K-Patent
00:0d:6f	Ember
00:0d:70	Datamax
00:0d:71	Boca
00:0d:72	2wire
00:0d:73	Technica
00:0d:74	SandNetw
00:0d:75	KobianPt
00:0d:76	HokutoDe
00:0d:77	Falconst
00:0d:78	Engineer
00:0d:79	DynamicS
00:0d:7a	DigattoA
00:0d:7b	Consensy
00:0d:7c	Codian
00:0d:7d	Afco
00:0d:7e	Axiowave
00:0d:7f	MidasCom
00:0d:80	OnlineDe
00:0d:81	Pepperl+
00:0d:82	PhsSrl
00:0d:83	Sanmina-
00:0d:84	Makus
00:0d:85	Tapwave
00:0d:86	Huber+Su
00:0d:87	Elitegro
00:0d:88	D-Link
00:0d:89	BilsTech
00:0d:8a	WinnersE
00:0d:8b	T&D
00:0d:8c	Shanghai
00:0d:8d	ProsoftT
00:0d:8e	KodenEle
00:0d:8f	KingTsus
00:0d:90	FactumEl
00:0d:91	EclipseH
00:0d:92	ArimaCom
00:0d:93	Apple
00:0d:94	AfarComm
00:0d:95	Opti-Cel
00:0d:96	VteraTec
00:0d:97	Abb/Trop
00:0d:98	SWACSchm
00:0d:99	OrbitalS
00:0d:9a	Infotec
00:0d:9b	HeraeusE
00:0d:9c	Elan
00:0d:9d	HP
00:0d:9e	TokudenO
00:0d:9f	RfMicroD
00:0d:a0	NedapNV
00:0d:a1	MiraeIts
00:0d:a2	InfrantT
00:0d:a3	Emerging
00:0d:a4	DoschAma
00:0d:a5	Fabric7
00:0d:a6	Universa
00:0d:a7	Private
00:0d:a8	Teletron
00:0d:a9	TEAMSL
00:0d:aa	SATehnol
00:0d:ab	ParkerHa
00:0d:ac	JapanCbm
00:0d:ad	Dataprob
00:0d:ae	Samsung
00:0d:af	PlexusUk
00:0d:b0	Olym-Tec
00:0d:b1	JapanNet
00:0d:b2	Ammasso
00:0d:b3	SdoCommu
00:0d:b4	Netasq
00:0d:b5	Globalsa
00:0d:b6	Broadcom
00:0d:b7	SankoEle
00:0d:b8	Schiller
00:0d:b9	PcEngine
00:0d:ba	OcéDocum
00:0d:bb	NipponDe
00:0d:bc	Cisco
00:0d:bd	Cisco
00:0d:be	BelFuseE
00:0d:bf	TektoneS
00:0d:c0	SpagatAs
00:0d:c1	Safeweb
00:0d:c2	Private
00:0d:c3	FirstCom
00:0d:c4	Emcore
00:0d:c5	Echostar
00:0d:c6	Digirose
00:0d:c7	CosmicEn
00:0d:c8	Airmagne
00:0d:c9	ThalesEl
00:0d:ca	TaitElec
00:0d:cb	Petcomko
00:0d:cc	Neosmart
00:0d:cd	GroupeTx
00:0d:ce	DynavacT
00:0d:cf	Cidra
00:0d:d0	Tetratec
00:0d:d1	Stryker
00:0d:d2	SimradOp
00:0d:d3	SamwooTe
00:0d:d4	Symantec
00:0d:d5	ORiteTec
00:0d:d6	Iti
00:0d:d7	Bright
00:0d:d8	Bbn
00:0d:d9	AntonPaa
00:0d:da	AlliedTe
00:0d:db	AirwaveT
00:0d:dc	Vac
00:0d:dd	ProfiloT
00:0d:de	Joyteck
00:0d:df	JapanIma
00:0d:e0	Icpdas
00:0d:e1	ControlP
00:0d:e2	CmzSiste
00:0d:e3	AtSweden
00:0d:e4	Diginics
00:0d:e5	Samsung
00:0d:e6	YoungboE
00:0d:e7	Snap-OnO
00:0d:e8	NasacoEl
00:0d:e9	Napatech
00:0d:ea	KingtelT
00:0d:eb	Compxs
00:0d:ec	Cisco
00:0d:ed	Cisco
00:0d:ee	AndrewRf
00:0d:ef	SocCoopB
00:0d:f0	QcomTech
00:0d:f1	Ionix
00:0d:f2	Private
00:0d:f3	AsmaxSol
00:0d:f4	Watertek
00:0d:f5	Teletron
00:0d:f6	Technolo
00:0d:f7	SpaceDyn
00:0d:f8	OrgaKart
00:0d:f9	Nds
00:0d:fa	MicroCon
00:0d:fb	Komax
00:0d:fc	Itfor
00:0d:fd	HugesHi-
00:0d:fe	Hauppaug
00:0d:ff	Chenming
00:0e:00	Atrie
00:0e:01	AsipTech
00:0e:02	Advantec
00:0e:03	Emulex
00:0e:04	Cma/Micr
00:0e:05	Wireless
00:0e:06	TeamSimo
00:0e:07	Sony
00:0e:08	Cisco
00:0e:09	Shenzhen
00:0e:0a	SakumaDe
00:0e:0b	NetacTec
00:0e:0c	Intel
00:0e:0d	HeschSch
00:0e:0e	EsaElett
00:0e:0f	Ermme
00:0e:10	C-Guys
00:0e:11	BdtBüroU
00:0e:12	Adaptive
00:0e:13	Accu-Sor
00:0e:14	Visionar
00:0e:15	Tadlys
00:0e:16	Southwin
00:0e:17	Private
00:0e:18	MyaTechn
00:0e:19	Logicacm
00:0e:1a	JpsCommu
00:0e:1b	Iav
00:0e:1c	Hach
00:0e:1d	ArionTec
00:0e:1e	Qlogic
00:0e:1f	TclNetwo
00:0e:20	AccessAm
00:0e:21	MtuFried
00:0e:22	Private
00:0e:23	Incipien
00:0e:24	HuwellTe
00:0e:25	HannaeTe
00:0e:26	GincomTe
00:0e:27	CrereNet
00:0e:28	DynamicR
00:0e:29	ShesterC
00:0e:2a	Private
00:0e:2b	SafariTe
00:0e:2c	Netcodec
00:0e:2d	HyundaiD
00:0e:2e	EdimaxTe
00:0e:2f	RocheDia
00:0e:30	AerasNet
00:0e:31	OlympusS
00:0e:32	KontronM
00:0e:33	ShukoEle
00:0e:34	NexgenCi
00:0e:35	Intel
00:0e:36	Heinesys
00:0e:37	HarmsWen
00:0e:38	Cisco
00:0e:39	Cisco
00:0e:3a	CirrusLo
00:0e:3b	HawkingT
00:0e:3c	Transact
00:0e:3d	TelevicN
00:0e:3e	SunOptro
00:0e:3f	Soronti
00:0e:40	NortelNe
00:0e:41	NihonMec
00:0e:42	MoticInc
00:0e:43	G-TekEle
00:0e:44	Digital5
00:0e:45	BeijingN
00:0e:46	NiigataS
00:0e:47	NciSyste
00:0e:48	LipmanTr
00:0e:49	ForswayS
00:0e:4a	Changchu
00:0e:4b	AtriumCA
00:0e:4c	Bermai
00:0e:4d	Numesa
00:0e:4e	Waveplus
00:0e:4f	Trajet
00:0e:50	ThomsonT
00:0e:51	TecnaEle
00:0e:52	Optium
00:0e:53	AvTech
00:0e:54	Alphacel
00:0e:55	Auvitran
00:0e:56	4g
00:0e:57	IworldNe
00:0e:58	Sonos
00:0e:59	Sagemcom
00:0e:5a	Telefiel
00:0e:5b	Parkervi
00:0e:5c	ArrisGro
00:0e:5d	TriplePl
00:0e:5e	Raisecom
00:0e:5f	Activ-Ne
00:0e:60	360sunDi
00:0e:61	Microtro
00:0e:62	NortelNe
00:0e:63	LemkeDia
00:0e:64	Elphel
00:0e:65	Transcor
00:0e:66	HitachiI
00:0e:67	EltisMic
00:0e:68	E-TopNet
00:0e:69	ChinaEle
00:0e:6a	3Com
00:0e:6b	JanitzaE
00:0e:6c	DeviceDr
00:0e:6d	MurataMa
00:0e:6e	MatSAMir
00:0e:6f	IrisBerh
00:0e:70	In2Netwo
00:0e:71	GemstarT
00:0e:72	CtsElect
00:0e:73	Tpack
00:0e:74	SolarTel
00:0e:75	NewYorkA
00:0e:76	GemsocIn
00:0e:77	Decru
00:0e:78	Amtelco
00:0e:79	AmpleCom
00:0e:7a	GemwonCo
00:0e:7b	Toshiba
00:0e:7c	TelevesS
00:0e:7d	Electron
00:0e:7e	IonsignO
00:0e:7f	HP
00:0e:80	ThomsonT
00:0e:81	Devicesc
00:0e:82	Commtech
00:0e:83	Cisco
00:0e:84	Cisco
00:0e:85	Catalyst
00:0e:86	AlcatelN
00:0e:87	AdpGause
00:0e:88	Videotro
00:0e:89	Clematic
00:0e:8a	AvaraTec
00:0e:8b	AstarteT
00:0e:8c	SiemensA
00:0e:8d	InProgre
00:0e:8e	Sparklan
00:0e:8f	Sercomm
00:0e:90	Ponico
00:0e:91	NavicoAu
00:0e:92	OpenTele
00:0e:93	Milénio3
00:0e:94	MaasInte
00:0e:95	FujiyaDe
00:0e:96	CubicDef
00:0e:97	Ultracke
00:0e:98	HmeClear
00:0e:99	Spectrum
00:0e:9a	BoeTechn
00:0e:9b	AmbitMic
00:0e:9c	Benchmar
00:0e:9d	TiscaliU
00:0e:9e	Topfield
00:0e:9f	TemicSds
00:0e:a0	Netklass
00:0e:a1	FormosaT
00:0e:a2	Mcafee
00:0e:a3	Cncr-ItH
00:0e:a4	Certance
00:0e:a5	Blip
00:0e:a6	ASUS
00:0e:a7	EndaceTe
00:0e:a8	UnitedTe
00:0e:a9	Shanghai
00:0e:aa	Scalent
00:0e:ab	Cray
00:0e:ac	MintronE
00:0e:ad	Metanoia
00:0e:ae	GawellTe
00:0e:af	Castel
00:0e:b0	Solution
00:0e:b1	Newcotec
00:0e:b2	Micro-Re
00:0e:b3	HP
00:0e:b4	Guangzho
00:0e:b5	EcastleE
00:0e:b6	Riverbed
00:0e:b7	Knovativ
00:0e:b8	Iiga
00:0e:b9	Hashimot
00:0e:ba	HanmiSem
00:0e:bb	EverbeeN
00:0e:bc	ParagonF
00:0e:bd	BurdickA
00:0e:be	B&BElect
00:0e:bf	Remsdaq
00:0e:c0	NortelNe
00:0e:c1	MynahTec
00:0e:c2	Lowrance
00:0e:c3	LogicCon
00:0e:c4	IskraTra
00:0e:c5	DigitalM
00:0e:c6	AsixElec
00:0e:c7	Motorola
00:0e:c8	Zoran
00:0e:c9	YokoTech
00:0e:ca	Wtss
00:0e:cb	VinesysT
00:0e:cc	TableauL
00:0e:cd	Skov
00:0e:ce	SITTISPA
00:0e:cf	Profibus
00:0e:d0	Privaris
00:0e:d1	OsakaMic
00:0e:d2	Filtroni
00:0e:d3	Epicente
00:0e:d4	CresittI
00:0e:d5	Copan
00:0e:d6	Cisco
00:0e:d7	Cisco
00:0e:d8	Positron
00:0e:d9	Aksys
00:0e:da	C-TechUn
00:0e:db	Xincom
00:0e:dc	Tellion
00:0e:dd	Shure
00:0e:de	Remec
00:0e:df	PlxTechn
00:0e:e0	Mcharge
00:0e:e1	Extremes
00:0e:e2	CustomEn
00:0e:e3	ChiyuTec
00:0e:e4	BoeTechn
00:0e:e5	Bitwalle
00:0e:e6	Adimos
00:0e:e7	AacElect
00:0e:e8	ZioncomE
00:0e:e9	WaytechD
00:0e:ea	ShadongL
00:0e:eb	Sandmart
00:0e:ec	Orban
00:0e:ed	NokiaDan
00:0e:ee	MucoIndu
00:0e:ef	Private
00:0e:f0	Festo
00:0e:f1	Ezquest
00:0e:f2	Infinico
00:0e:f3	Smarthom
00:0e:f4	KasdaNet
00:0e:f5	IpacTech
00:0e:f6	E-TenInf
00:0e:f7	VulcanPo
00:0e:f8	SbcAsi
00:0e:f9	ReaElekt
00:0e:fa	OptowayT
00:0e:fb	MaceyEnt
00:0e:fc	JtagTech
00:0e:fd	Fujinon
00:0e:fe	EndrunTe
00:0e:ff	Megasolu
00:0f:00	Legra
00:0f:01	Digitalk
00:0f:02	Digicube
00:0f:03	Com&C
00:0f:04	Cim-Usa
00:0f:05	3bSystem
00:0f:06	NortelNe
00:0f:07	Mangrove
00:0f:08	IndagonO
00:0f:09	Private
00:0f:0a	ClearEdg
00:0f:0b	KentimaT
00:0f:0c	Synchron
00:0f:0d	HuntElec
00:0f:0e	Wavespli
00:0f:0f	RealIdTe
00:0f:10	Rdm
00:0f:11	Prodrive
00:0f:12	Panasoni
00:0f:13	Nisca
00:0f:14	Mindray
00:0f:15	Kjaerulf
00:0f:16	JayHowTe
00:0f:17	InstaEle
00:0f:18	Industri
00:0f:19	BostonSc
00:0f:1a	GamingSu
00:0f:1b	Ego
00:0f:1c	Digitall
00:0f:1d	CosmoTec
00:0f:1e	ChengduK
00:0f:1f	Dell
00:0f:20	HP
00:0f:21	Scientif
00:0f:22	Helius
00:0f:23	Cisco
00:0f:24	Cisco
00:0f:25	Aimvalle
00:0f:26	Worldacc
00:0f:27	TealElec
00:0f:28	Itronix
00:0f:29	Augmenti
00:0f:2a	Cablewar
00:0f:2b	Greenbel
00:0f:2c	Uplogix
00:0f:2d	Chung-Hs
00:0f:2e	Megapowe
00:0f:2f	W-LinxTe
00:0f:30	RazaMicr
00:0f:31	AlliedVi
00:0f:32	LootomTe
00:0f:33	Duali
00:0f:34	Cisco
00:0f:35	Cisco
00:0f:36	Accurate
00:0f:37	Xambala
00:0f:38	Netstar
00:0f:39	IrisSens
00:0f:3a	Hisharp
00:0f:3b	FujiSyst
00:0f:3c	Endeleo
00:0f:3d	D-Link
00:0f:3e	Cardione
00:0f:3f	BigBearN
00:0f:40	OpticalI
00:0f:41	Zipher
00:0f:42	Xalyo
00:0f:43	Wasabi
00:0f:44	Tivella
00:0f:45	Stretch
00:0f:46	Sinar
00:0f:47	Robox
00:0f:48	Polypix
00:0f:49	Northove
00:0f:4a	Kyushu-K
00:0f:4b	Oracle
00:0f:4c	Elextech
00:0f:4d	Talkswit
00:0f:4e	Cellink
00:0f:4f	PcsSyste
00:0f:50	Streamsc
00:0f:51	Azul
00:0f:52	YorkRefr
00:0f:53	Solarfla
00:0f:54	Entrelog
00:0f:55	Datawire
00:0f:56	Continuu
00:0f:57	Cablelog
00:0f:58	AdderTec
00:0f:59	Phonak
00:0f:5a	PeribitN
00:0f:5b	DeltaInf
00:0f:5c	DayOneDi
00:0f:5d	GenexisB
00:0f:5e	Veo
00:0f:5f	NicetyTe
00:0f:60	Lifetron
00:0f:61	HP
00:0f:62	AlcatelB
00:0f:63	ObzervTe
00:0f:64	D&RElect
00:0f:65	Icube
00:0f:66	Cisco
00:0f:67	WestInst
00:0f:68	VavicNet
00:0f:69	SewEurod
00:0f:6a	NortelNe
00:0f:6b	Gateware
00:0f:6c	Addi-Dat
00:0f:6d	MidasEng
00:0f:6e	Bbox
00:0f:6f	FtaCommu
00:0f:70	WintecIn
00:0f:71	SanmeiEl
00:0f:72	Sandburs
00:0f:73	RsAutoma
00:0f:74	QamcomTe
00:0f:75	FirstSil
00:0f:76	DigitalK
00:0f:77	Dentum
00:0f:78	Datacap
00:0f:79	Bluetoot
00:0f:7a	BeijingN
00:0f:7b	ArceSist
00:0f:7c	Acti
00:0f:7d	Xirrus
00:0f:7e	AblerexE
00:0f:7f	Ubstorag
00:0f:80	TrinityS
00:0f:81	PalPacif
00:0f:82	MortaraI
00:0f:83	Brainium
00:0f:84	AstuteNe
00:0f:85	Addo-Jap
00:0f:86	Blackber
00:0f:87	MaxcessI
00:0f:88	Ametek
00:0f:89	Winnerte
00:0f:8a	Wideview
00:0f:8b	OrionMul
00:0f:8c	Gigawave
00:0f:8d	FastTv-S
00:0f:8e	Dongyang
00:0f:8f	Cisco
00:0f:90	Cisco
00:0f:91	Aerotele
00:0f:92	Microhar
00:0f:93	Landis+G
00:0f:94	GenexisB
00:0f:95	ElecomLa
00:0f:96	Telco
00:0f:97	Avanex
00:0f:98	Avamax
00:0f:99	ApacOpto
00:0f:9a	Synchron
00:0f:9b	RossVide
00:0f:9c	Panduit
00:0f:9d	Displayl
00:0f:9e	Murrelek
00:0f:9f	ArrisGro
00:0f:a0	CanonKor
00:0f:a1	Gigabit
00:0f:a2	2xwirele
00:0f:a3	AlphaNet
00:0f:a4	Sprecher
00:0f:a5	BwaTechn
00:0f:a6	S2Securi
00:0f:a7	RaptorNe
00:0f:a8	Photomet
00:0f:a9	PcFabrik
00:0f:aa	NexusTec
00:0f:ab	KyushuEl
00:0f:ac	IEEE8021
00:0f:ad	FmnCommu
00:0f:ae	E2oCommu
00:0f:af	Dialog
00:0f:b0	CompalEl
00:0f:b1	Cognio
00:0f:b2	Broadban
00:0f:b3	Actionte
00:0f:b4	Timespac
00:0f:b5	Netgear
00:0f:b6	Europlex
00:0f:b7	Cavium
00:0f:b8	Callurl
00:0f:b9	Adaptive
00:0f:ba	Tevebox
00:0f:bb	NokiaSie
00:0f:bc	OnkeyTec
00:0f:bd	MrvCommu
00:0f:be	E-W/You
00:0f:bf	DgtSpZOO
00:0f:c0	Delcomp
00:0f:c1	Wave
00:0f:c2	Uniwell
00:0f:c3	Palmpalm
00:0f:c4	Nst
00:0f:c5	Keymed
00:0f:c6	EurocomI
00:0f:c7	DionicaR
00:0f:c8	ChantryN
00:0f:c9	Allnet
00:0f:ca	A-JinTec
00:0f:cb	3Com
00:0f:cc	ArrisGro
00:0f:cd	NortelNe
00:0f:ce	KikusuiE
00:0f:cf	Datawind
00:0f:d0	Astri
00:0f:d1	AppliedW
00:0f:d2	EwaTechn
00:0f:d3	Digium
00:0f:d4	Soundcra
00:0f:d5	Schwecha
00:0f:d6	Sarotech
00:0f:d7	HarmanMu
00:0f:d8	Force
00:0f:d9	FlexdslT
00:0f:da	Yazaki
00:0f:db	WestellT
00:0f:dc	UedaJapa
00:0f:dd	Sordin
00:0f:de	Sony
00:0f:df	SolomonT
00:0f:e0	Ncomputi
00:0f:e1	IdDigita
00:0f:e2	Hangzhou
00:0f:e3	DammCell
00:0f:e4	Pantech
00:0f:e5	MercuryS
00:0f:e6	Mbtech
00:0f:e7	LutronEl
00:0f:e8	Lobos
00:0f:e9	GwTechno
00:0f:ea	Giga-Byt
00:0f:eb	CylonCon
00:0f:ec	Arkus
00:0f:ed	AnamElec
00:0f:ee	Xtec
00:0f:ef	ThalesE-
00:0f:f0	Sunray
00:0f:f1	Nex-GPte
00:0f:f2	LoudTech
00:0f:f3	JungMyou
00:0f:f4	Gunterma
00:0f:f5	Gn&S
00:0f:f6	DarfonLi
00:0f:f7	Cisco
00:0f:f8	Cisco
00:0f:f9	Valcrete
00:0f:fa	Optinel
00:0f:fb	NipponDe
00:0f:fc	MeritLi-
00:0f:fd	Glorytek
00:0f:fe	G-ProCom
00:0f:ff	Control4
00:10:00	CableLabs
00:10:01	Citel
00:10:02	Actia
00:10:03	Imatron
00:10:04	Brantley
00:10:05	UecComme
00:10:06	ThalesCo
00:10:07	Cisco
00:10:08	Vienna
00:10:09	HoroQuar
00:10:0a	Williams
00:10:0b	Cisco
00:10:0c	Ito
00:10:0d	Cisco
00:10:0e	MicroLin
00:10:0f	Industri
00:10:10	Initio
00:10:11	Cisco
00:10:12	Processo
00:10:13	KontronA
00:10:14	Cisco
00:10:15	Oomon
00:10:16	TSqware
00:10:17	BoschAcc
00:10:18	Broadcom
00:10:19	SironaDe
00:10:1a	Picturet
00:10:1b	CornetTe
00:10:1c	OhmTechn
00:10:1d	WinbondE
00:10:1e	Matsushi
00:10:1f	Cisco
00:10:20	HandHeld
00:10:21	EncantoN
00:10:22	SatcomMe
00:10:23	NetworkE
00:10:24	NagoyaEl
00:10:25	Grayhill
00:10:26	Accelera
00:10:27	L-3Commu
00:10:28	Computer
00:10:29	Cisco
00:10:2a	ZfMicros
00:10:2b	UmaxData
00:10:2c	LasatNet
00:10:2d	HitachiS
00:10:2e	NetworkT
00:10:2f	Cisco
00:10:30	Eion
00:10:31	Objectiv
00:10:32	AltaTech
00:10:33	Accessla
00:10:34	GnpCompu
00:10:35	Elitegro
00:10:36	Inter-Te
00:10:37	CyqVeTec
00:10:38	MicroRes
00:10:39	Vectron
00:10:3a	DiamondN
00:10:3b	HippiNet
00:10:3c	IcEnsemb
00:10:3d	Phasecom
00:10:3e	Netschoo
00:10:3f	Tollgrad
00:10:40	Intermec
00:10:41	BristolB
00:10:42	Alacrite
00:10:43	A2
00:10:44	Innolabs
00:10:45	NortelNe
00:10:46	AlcornMc
00:10:47	EchoElet
00:10:48	HtrcAuto
00:10:49	Shoretel
00:10:4a	Parvus
00:10:4b	3com3c90
00:10:4c	Teledyne
00:10:4d	SurtecIn
00:10:4e	Ceologic
00:10:4f	Oracle
00:10:50	Rion
00:10:51	Cmicro
00:10:52	Mettler-
00:10:53	Computer
00:10:54	Cisco
00:10:55	Fujitsu
00:10:56	Sodick
00:10:57	RebelCom
00:10:58	Arrowpoi
00:10:59	DiabloRe
00:10:5a	3comFast
00:10:5b	NetInsig
00:10:5c	QuantumD
00:10:5d	DraegerM
00:10:5e	SpirentS
00:10:5f	ZodiacDa
00:10:60	Billingt
00:10:61	Hostlink
00:10:62	NxServer
00:10:63	Starguid
00:10:64	DnpgLlc
00:10:65	Radyne
00:10:66	Advanced
00:10:67	Ericsson
00:10:68	ComosTel
00:10:69	HeliossC
00:10:6a	DigitalM
00:10:6b	SonusNet
00:10:6c	Ednt
00:10:6d	Axxceler
00:10:6e	TadiranC
00:10:6f	TrentonT
00:10:70	CaradonT
00:10:71	Advanet
00:10:72	GvnTechn
00:10:73	Technobo
00:10:74	AtenInte
00:10:75	SegateTe
00:10:76	Eurem
00:10:77	SafDrive
00:10:78	NueraCom
00:10:79	Cisco
00:10:7a	AmbicomW
00:10:7b	Cisco
00:10:7c	P-Com
00:10:7d	AuroraCo
00:10:7e	Bachmann
00:10:7f	Crestron
00:10:80	Metawave
00:10:81	Dps
00:10:82	JnaTelec
00:10:83	Hp-UxE90
00:10:84	K-BotCom
00:10:85	PolarisC
00:10:86	AttoTech
00:10:87	Xstreami
00:10:88	American
00:10:89	Websonic
00:10:8a	Teralogi
00:10:8b	Laserani
00:10:8c	Fujitsu
00:10:8d	JohnsonC
00:10:8e	HughSymo
00:10:8f	Raptor
00:10:90	Cimetric
00:10:91	NoWiresN
00:10:92	Netcore
00:10:93	CmsCompu
00:10:94	Performa
00:10:95	Thomson
00:10:96	Tracewel
00:10:97	WinnetMe
00:10:98	StarnetT
00:10:99	Innomedi
00:10:9a	Netline
00:10:9b	Emulex
00:10:9c	M-System
00:10:9d	Clarinet
00:10:9e	Aware
00:10:9f	Pavo
00:10:a0	InnovexT
00:10:a1	KendinSe
00:10:a2	Tns
00:10:a3	Omnitron
00:10:a4	XircomRe
00:10:a5	OxfordIn
00:10:a6	Cisco
00:10:a7	UnexTech
00:10:a8	Reliance
00:10:a9	AdhocTec
00:10:aa	Media4
00:10:ab	KoitoEle
00:10:ac	ImciTech
00:10:ad	Softroni
00:10:ae	ShinkoEl
00:10:af	Tac
00:10:b0	Meridian
00:10:b1	For-A
00:10:b2	Coactive
00:10:b3	NokiaMul
00:10:b4	Atmosphe
00:10:b5	AcctonTe
00:10:b6	EntrataC
00:10:b7	CoyoteTe
00:10:b8	Ishigaki
00:10:b9	Maxtor
00:10:ba	Martinho
00:10:bb	DataInfo
00:10:bc	AastraTe
00:10:bd	Telecomm
00:10:be	MarchNet
00:10:bf	Interair
00:10:c0	Arma
00:10:c1	OiElectr
00:10:c2	Willnet
00:10:c3	Csi-Cont
00:10:c4	MediaGlo
00:10:c5	Protocol
00:10:c6	Universa
00:10:c7	DataTran
00:10:c8	Communic
00:10:c9	Mitsubis
00:10:ca	Telco
00:10:cb	FacitKK
00:10:cc	ClpCompu
00:10:cd	Interfac
00:10:ce	Volamp
00:10:cf	Fiberlan
00:10:d0	Witcom
00:10:d1	TopLayer
00:10:d2	NittoTsu
00:10:d3	GripsEle
00:10:d4	StorageC
00:10:d5	ImasdeCa
00:10:d6	Exelis
00:10:d7	ArgosyEn
00:10:d8	Calista
00:10:d9	IBM
00:10:da	Kollmorg
00:10:db	Netscreen
00:10:dc	Micro-St
00:10:dd	EnableSe
00:10:de	Internat
00:10:df	RiseComp
00:10:e0	Oracle
00:10:e1	SITech
00:10:e2	Arraycom
00:10:e3	HP
00:10:e4	Nsi
00:10:e5	Solectro
00:10:e6	AppliedI
00:10:e7	Breezeco
00:10:e8	Telocity
00:10:e9	Raidtec
00:10:ea	AdeptTec
00:10:eb	Selsius
00:10:ec	RpcgLlc
00:10:ed	Sundance
00:10:ee	CtiProdu
00:10:ef	Dbtel
00:10:f0	Rittal-W
00:10:f1	I-O
00:10:f2	Antec
00:10:f3	NexcomIn
00:10:f4	Vertical
00:10:f5	Amherst
00:10:f6	Cisco
00:10:f7	IriichiT
00:10:f8	TexioTec
00:10:f9	Unique
00:10:fa	Apple
00:10:fb	ZidaTech
00:10:fc	Broadban
00:10:fd	Cocom
00:10:fe	DigitalE
00:10:ff	Cisco
00:11:00	Schneide
00:11:01	CetTechn
00:11:02	AuroraMu
00:11:03	Kawamura
00:11:04	Telexy
00:11:05	SunplusT
00:11:06	SiemensN
00:11:07	RgbNetwo
00:11:08	OrbitalD
00:11:09	Micro-St
00:11:0a	HP
00:11:0b	Franklin
00:11:0c	AtmarkTe
00:11:0d	Sanblaze
00:11:0e	Tsurusak
00:11:0f	Netplat
00:11:10	MaxannaT
00:11:11	Intel
00:11:12	Honeywel
00:11:13	Fraunhof
00:11:14	Everfocu
00:11:15	EpinTech
00:11:16	CoteauVe
00:11:17	Cesnet
00:11:18	BlxIcDes
00:11:19	Solteras
00:11:1a	ArrisGro
00:11:1b	TargaDiv
00:11:1c	PleoraTe
00:11:1d	Hectrix
00:11:1e	EpsgEthe
00:11:1f	DoremiLa
00:11:20	Cisco
00:11:21	Cisco
00:11:22	Cimsys
00:11:23	Appointe
00:11:24	Apple
00:11:25	IBM
00:11:26	Venstar
00:11:27	Tasi
00:11:28	Streamit
00:11:29	Paradise
00:11:2a	NikoNv
00:11:2b	Netmodul
00:11:2c	Izt
00:11:2d	Ipulse
00:11:2e	Ceicom
00:11:2f	ASUS
00:11:30	AlliedTe
00:11:31	Unatech
00:11:32	Synology
00:11:33	SiemensA
00:11:34	Mediacel
00:11:35	Grandeye
00:11:36	Goodrich
00:11:37	AichiEle
00:11:38	Taishin
00:11:39	StoeberA
00:11:3a	Shinbora
00:11:3b	Micronet
00:11:3c	Micronas
00:11:3d	KnSoltec
00:11:3e	Jl
00:11:3f	AlcatelD
00:11:40	Nanometr
00:11:41	Goodman
00:11:42	E-Smartc
00:11:43	Dell
00:11:44	Assuranc
00:11:45	Valuepoi
00:11:46	Telecard
00:11:47	Secom-In
00:11:48	ProlonCo
00:11:49	Proliphi
00:11:4a	KayabaIn
00:11:4b	Francoty
00:11:4c	Caffeina
00:11:4d	AtsumiEl
00:11:4e	690885On
00:11:4f	UsDigita
00:11:50	Belkin
00:11:51	Mykotron
00:11:52	Eidsvoll
00:11:53	TridentT
00:11:54	WebproTe
00:11:55	Sevis
00:11:56	PharosNz
00:11:57	OkiElect
00:11:58	NortelNe
00:11:59	MatisseN
00:11:5a	IvoclarV
00:11:5b	Elitegro
00:11:5c	Cisco
00:11:5d	Cisco
00:11:5e	Prominen
00:11:5f	ItxSecur
00:11:60	Artdio
00:11:61	Netstrea
00:11:62	StarMicr
00:11:63	SystemDe
00:11:64	AcardTec
00:11:65	ZnyxNetw
00:11:66	TaelimEl
00:11:67	Integrat
00:11:68	Homelogi
00:11:69	EmsSatco
00:11:6a	Domo
00:11:6b	DigitalD
00:11:6c	NanwangM
00:11:6d	American
00:11:6e	PeplinkI
00:11:6f	Netforyo
00:11:70	GscSrl
00:11:71	DexterCo
00:11:72	Cotron
00:11:73	SmartSto
00:11:74	MojoNetw
00:11:75	Intel
00:11:76	Intellam
00:11:77	CoaxialN
00:11:78	ChironTe
00:11:79	Singular
00:11:7a	SingimIn
00:11:7b	BüchiLab
00:11:7c	E-ZyNet
00:11:7d	ZmdAmeri
00:11:7e	Midmark
00:11:7f	NeotuneI
00:11:80	ArrisGro
00:11:81	Interene
00:11:82	ImiNorgr
00:11:83	Datalogi
00:11:84	HumoLabo
00:11:85	HP
00:11:86	Prime
00:11:87	Category
00:11:88	Enterasy
00:11:89	Aerotech
00:11:8a	Viewtran
00:11:8b	Alcatel-
00:11:8c	Missouri
00:11:8d	Hanchang
00:11:8e	Halytech
00:11:8f	EutechIn
00:11:90	DigitalD
00:11:91	Cts-Clim
00:11:92	Cisco
00:11:93	Cisco
00:11:94	ChiMeiCo
00:11:95	D-Link
00:11:96	Actualit
00:11:97	Monitori
00:11:98	PrismMed
00:11:99	2wcom
00:11:9a	AlkeriaS
00:11:9b	Telesyne
00:11:9c	Ep&TEner
00:11:9d	DiginfoT
00:11:9e	Solectro
00:11:9f	NokiaDan
00:11:a0	VtechEng
00:11:a1	VisionNe
00:11:a2	Manufact
00:11:a3	Lanready
00:11:a4	JstreamT
00:11:a5	FortunaE
00:11:a6	SypixxNe
00:11:a7	InfilcoD
00:11:a8	QuestTec
00:11:a9	Moimston
00:11:aa	Uniclass
00:11:ab	Trustabl
00:11:ac	SimtecEl
00:11:ad	Shanghai
00:11:ae	ArrisGro
00:11:af	Medialin
00:11:b0	Fortelin
00:11:b1	Blueexpe
00:11:b2	2001Tech
00:11:b3	Yoshimiy
00:11:b4	Westermo
00:11:b5	Shenzhen
00:11:b6	OpenInte
00:11:b7	OctalixB
00:11:b8	Liebherr
00:11:b9	InnerRan
00:11:ba	ElexolPt
00:11:bb	Cisco
00:11:bc	Cisco
00:11:bd	Bombardi
00:11:be	AgpTelec
00:11:bf	AesysSPA
00:11:c0	AdayTech
00:11:c1	4pMobile
00:11:c2	UnitedFi
00:11:c3	Transcei
00:11:c4	Terminal
00:11:c5	TenTechn
00:11:c6	SeagateT
00:11:c7	Raymarin
00:11:c8	Powercom
00:11:c9	Mtt
00:11:ca	LongRang
00:11:cb	Jacobson
00:11:cc	Guangzho
00:11:cd	AxsunTec
00:11:ce	Ubisense
00:11:cf	ThraneTh
00:11:d0	Tandberg
00:11:d1	SoftImag
00:11:d2	Percepti
00:11:d3	Nextgent
00:11:d4	Netenric
00:11:d5	Hangzhou
00:11:d6	Handera
00:11:d7	Ewerks
00:11:d8	ASUS
00:11:d9	Tivo
00:11:da	VivaasTe
00:11:db	Land-Cel
00:11:dc	GlunzJen
00:11:dd	FromusTe
00:11:de	Eurilogi
00:11:df	CurrentE
00:11:e0	U-MediaC
00:11:e1	ArcelikA
00:11:e2	HuaJungC
00:11:e3	Thomson
00:11:e4	DanelecE
00:11:e5	Kcodes
00:11:e6	Scientif
00:11:e7	Worldsat
00:11:e8	TixiCom
00:11:e9	Starnex
00:11:ea	Iwics
00:11:eb	Innovati
00:11:ec	Avix
00:11:ed	802Globa
00:11:ee	Estari
00:11:ef	ConitecD
00:11:f0	Wideful
00:11:f1	Qinetiq
00:11:f2	Institut
00:11:f3	Neomedia
00:11:f4	Woori-Ne
00:11:f5	AskeyCom
00:11:f6	AsiaPaci
00:11:f7	Shenzhen
00:11:f8	Airaya
00:11:f9	NortelNe
00:11:fa	Rane
00:11:fb	Heidelbe
00:11:fc	HartingE
00:11:fd	Korg
00:11:fe	KeiyoSys
00:11:ff	DigitroT
00:12:00	Cisco
00:12:01	Cisco
00:12:02	DecraneA
00:12:03	Activnet
00:12:04	U10Netwo
00:12:05	Terrasat
00:12:06	IquestNz
00:12:07	HeadStro
00:12:08	GantnerI
00:12:09	Fastrax
00:12:0a	EmersonC
00:12:0b	Chinasys
00:12:0c	Ce-Infos
00:12:0d	Advanced
00:12:0e	Abocom
00:12:0f	IEEE8023
00:12:10	Wideray
00:12:11	Protechn
00:12:12	Plus
00:12:13	Metrohm
00:12:14	KoenigBa
00:12:15	IstorNet
00:12:16	IcpInter
00:12:17	Cisco
00:12:18	Aruze
00:12:19	AheadCom
00:12:1a	TechnoSo
00:12:1b	SoundDev
00:12:1c	ParrotSa
00:12:1d	Netfabri
00:12:1e	JuniperN
00:12:1f	HardingI
00:12:20	Cadco
00:12:21	BBraunMe
00:12:22	SkardinU
00:12:23	Pixim
00:12:24	Nexql
00:12:25	ArrisGro
00:12:26	JapanDir
00:12:27	Franklin
00:12:28	Data
00:12:29	Broadeas
00:12:2a	VtechTel
00:12:2b	Virbiage
00:12:2c	SoenenCo
00:12:2d	Sinett
00:12:2e	SignalTe
00:12:2f	SaneiEle
00:12:30	PicasoIn
00:12:31	MotionCo
00:12:32	LewizCom
00:12:33	JrcTokki
00:12:34	CamilleB
00:12:35	Andrew
00:12:36	Consentr
00:12:37	TexasIns
00:12:38	SetaboxT
00:12:39	SNet
00:12:3a	Posystec
00:12:3b	KeroAps
00:12:3c	SecondRu
00:12:3d	Ges
00:12:3e	EruneTec
00:12:3f	Dell
00:12:40	AmoiElec
00:12:41	A2iMarke
00:12:42	Millenni
00:12:43	Cisco
00:12:44	Cisco
00:12:45	Zellwege
00:12:46	TOMTechn
00:12:47	Samsung
00:12:48	EmcKashy
00:12:49	DeltaEle
00:12:4a	Dedicate
00:12:4b	TexasIns
00:12:4c	Bbwm
00:12:4d	InduconB
00:12:4e	XacAutom
00:12:4f	PentairT
00:12:50	TokyoAir
00:12:51	Silink
00:12:52	Citronix
00:12:53	Audiodev
00:12:54	SpectraT
00:12:55	Neteffec
00:12:56	LG
00:12:57	Leapcomm
00:12:58	ActivisP
00:12:59	ThermoEl
00:12:5a	Microsoft
00:12:5b	KaimeiEl
00:12:5c	GreenHil
00:12:5d	Cybernet
00:12:5e	Caen
00:12:5f	Awind
00:12:60	StantonM
00:12:61	Adaptix
00:12:62	NokiaDan
00:12:63	DataVoic
00:12:64	DaumElec
00:12:65	Enerdyne
00:12:66	Swisscom
00:12:67	Panasoni
00:12:68	IpsDOO
00:12:69	ValueEle
00:12:6a	Optoelec
00:12:6b	Ascalade
00:12:6c	VisonicT
00:12:6d	Universi
00:12:6e	SeidelEl
00:12:6f	RaysonTe
00:12:70	NgesDenr
00:12:71	Measurem
00:12:72	ReduxCom
00:12:73	Stoke
00:12:74	NitLab
00:12:75	Sentilla
00:12:76	CgPowerI
00:12:77	KorenixT
00:12:78	Internat
00:12:79	HP
00:12:7a	SanyuInd
00:12:7b	ViaNetwo
00:12:7c	Swegon
00:12:7d	Mobilear
00:12:7e	DigitalL
00:12:7f	Cisco
00:12:80	Cisco
00:12:81	MarchNet
00:12:82	Qovia
00:12:83	NortelNe
00:12:84	Lab33Srl
00:12:85	Gizmondo
00:12:86	Endevco
00:12:87	DigitalE
00:12:88	2wire
00:12:89	AdvanceS
00:12:8a	ArrisGro
00:12:8b	SensoryN
00:12:8c	Woodward
00:12:8d	StbDaten
00:12:8e	Q-FreeAs
00:12:8f	Montilio
00:12:90	KyowaEle
00:12:91	KwsCompu
00:12:92	GriffinT
00:12:93	GeEnergy
00:12:94	Sumitomo
00:12:95	Aiware
00:12:96	Addlogix
00:12:97	O2micro
00:12:98	MicoElec
00:12:99	KtechTel
00:12:9a	IrtElect
00:12:9b	E2sElect
00:12:9c	Yulinet
00:12:9d	FirstInt
00:12:9e	SurfComm
00:12:9f	Rae
00:12:a0	Neomerid
00:12:a1	Bluepack
00:12:a2	Vita
00:12:a3	TrustInt
00:12:a4	Thingmag
00:12:a5	Stargen
00:12:a6	DolbyAus
00:12:a7	IsrTechn
00:12:a8	Intec
00:12:a9	3Com
00:12:aa	Iee
00:12:ab	Wilife
00:12:ac	Ontimete
00:12:ad	Ids
00:12:ae	HlsHard-
00:12:af	ElproTec
00:12:b0	EforeOyj
00:12:b1	DaiNippo
00:12:b2	Avolites
00:12:b3	AdvanceW
00:12:b4	WorkMicr
00:12:b5	Vialta
00:12:b6	SantaBar
00:12:b7	PtwFreib
00:12:b8	G2Micros
00:12:b9	FusionDi
00:12:ba	Fsi
00:12:bb	Telecomm
00:12:bc	EcholabL
00:12:bd	AvantecM
00:12:be	Astek
00:12:bf	Arcadyan
00:12:c0	Hotlava
00:12:c1	CheckPoi
00:12:c2	ApexElec
00:12:c3	WitSA
00:12:c4	Viseon
00:12:c5	V-ShowTe
00:12:c6	TgcAmeri
00:12:c7	SecurayT
00:12:c8	PerfectT
00:12:c9	ArrisGro
00:12:ca	Mechatro
00:12:cb	Css
00:12:cc	Bitatek
00:12:cd	Asem
00:12:ce	Advanced
00:12:cf	AcctonTe
00:12:d0	Gossen-M
00:12:d1	TexasIns
00:12:d2	TexasIns
00:12:d3	Zetta
00:12:d4	Princeto
00:12:d5	MotionRe
00:12:d6	JiangsuY
00:12:d7	InventoN
00:12:d8	Internat
00:12:d9	Cisco
00:12:da	Cisco
00:12:db	ZiehlInd
00:12:dc	SuncorpI
00:12:dd	ShengquI
00:12:de	RadioCom
00:12:df	Novomati
00:12:e0	Codan
00:12:e1	AlliantN
00:12:e2	AlaxalaN
00:12:e3	Agat-Rt
00:12:e4	ZiehlInd
00:12:e5	TimeAmer
00:12:e6	SpectecC
00:12:e7	Projecte
00:12:e8	Fraunhof
00:12:e9	Abbey
00:12:ea	Trane
00:12:eb	PdhSolut
00:12:ec	Movacolo
00:12:ed	AvgAdvan
00:12:ee	Sony
00:12:ef	Oneacces
00:12:f0	Intel
00:12:f1	Ifotec
00:12:f2	BrocadeC
00:12:f3	Connectb
00:12:f4	BelcoInt
00:12:f5	ImardaNe
00:12:f6	Mdk
00:12:f7	XiamenXi
00:12:f8	WniResou
00:12:f9	UryuSeis
00:12:fa	Thx
00:12:fb	Samsung
00:12:fc	PlanetSy
00:12:fd	OptimusI
00:12:fe	LenovoMo
00:12:ff	LelyIndu
00:13:00	It-Facto
00:13:01	Irongate
00:13:02	Intel
00:13:03	Gateconn
00:13:04	Flaircom
00:13:05	Epicom
00:13:06	AlwaysOn
00:13:07	Paravirt
00:13:08	NuveraFu
00:13:09	OceanBro
00:13:0a	NortelNe
00:13:0b	MextalBV
00:13:0c	HfSystem
00:13:0d	GalileoA
00:13:0e	Focusrit
00:13:0f	EgemenBi
00:13:10	Cisco
00:13:11	ArrisGro
00:13:12	AmediaNe
00:13:13	Guangzho
00:13:14	Asiamajo
00:13:15	Sony
00:13:16	L-S-BBro
00:13:17	GnNetcom
00:13:18	Dgstatio
00:13:19	Cisco
00:13:1a	Cisco
00:13:1b	BecellIn
00:13:1c	Litetouc
00:13:1d	Scanvaeg
00:13:1e	PeikerAc
00:13:1f	Nxtphase
00:13:20	Intel
00:13:21	HP
00:13:22	DaqElect
00:13:23	Cap
00:13:24	Schneide
00:13:25	Cortina
00:13:26	Ecm
00:13:27	DataAcqu
00:13:28	WestechK
00:13:29	Vsst
00:13:2a	Sitronic
00:13:2b	PhoenixD
00:13:2c	MazBrand
00:13:2d	IwiseCom
00:13:2e	ItianCop
00:13:2f	Interact
00:13:30	EuroProt
00:13:31	Cellpoin
00:13:32	BeijingT
00:13:33	Baudtec
00:13:34	Arkados
00:13:35	VsIndust
00:13:36	Tianjin7
00:13:37	OrientPo
00:13:38	Freseniu
00:13:39	CcvDeuts
00:13:3a	Vadatech
00:13:3b	SpeedDra
00:13:3c	Quintron
00:13:3d	MicroMem
00:13:3e	Metaswit
00:13:3f	Eppendor
00:13:40	AdElSRL
00:13:41	Shandong
00:13:42	VisionRe
00:13:43	Matsushi
00:13:44	FargoEle
00:13:45	Eaton
00:13:46	D-Link
00:13:47	RedLionC
00:13:48	ArtilaEl
00:13:49	ZyxelCom
00:13:4a	Engim
00:13:4b	Togolden
00:13:4c	YdtTechn
00:13:4d	IneproBv
00:13:4e	Valox
00:13:4f	TranzeoW
00:13:50	SilverSp
00:13:51	NilesAud
00:13:52	Naztec
00:13:53	HydacFil
00:13:54	ZcomaxTe
00:13:55	TomenCyb
00:13:56	FlirRadi
00:13:57	SoyalTec
00:13:58	Realm
00:13:59	Protelev
00:13:5a	ProjectT
00:13:5b	Panellin
00:13:5c	Onsite
00:13:5d	NttpcCom
00:13:5e	Eab/Rwi/
00:13:5f	Cisco
00:13:60	Cisco
00:13:61	Biospace
00:13:62	Shinheun
00:13:63	Verascap
00:13:64	Paradigm
00:13:65	NortelNe
00:13:66	Neturity
00:13:67	Narayon
00:13:68	SaabDanm
00:13:69	HondaEle
00:13:6a	HachLang
00:13:6b	E-Tec
00:13:6c	Tomtom
00:13:6d	Tentacul
00:13:6e	Techmetr
00:13:6f	Packetmo
00:13:70	NokiaDan
00:13:71	ArrisGro
00:13:72	Dell
00:13:73	BlwaveEl
00:13:74	AtherosC
00:13:75	American
00:13:76	TaborEle
00:13:77	Samsung
00:13:78	QsanTech
00:13:79	PonderIn
00:13:7a	NetvoxTe
00:13:7b	Movon
00:13:7c	Kaicom
00:13:7d	Dynalab
00:13:7e	CoredgeN
00:13:7f	Cisco
00:13:80	Cisco
00:13:81	Chips
00:13:82	CetaceaN
00:13:83	Applicat
00:13:84	Advanced
00:13:85	Add-OnTe
00:13:86	Abb/Tota
00:13:87	27mTechn
00:13:88	WimediaA
00:13:89	RedesDeT
00:13:8a	QingdaoG
00:13:8b	PhantomT
00:13:8c	Kumyoung
00:13:8d	Kinghold
00:13:8e	FoabElek
00:13:8f	Asiarock
00:13:90	TermtekC
00:13:91	Ouen
00:13:92	RuckusWi
00:13:93	Panta
00:13:94	Infohand
00:13:95	Congatec
00:13:96	AcbelPol
00:13:97	Oracle
00:13:98	Traffics
00:13:99	Stac
00:13:9a	K-Ubique
00:13:9b	Ioimage
00:13:9c	ExaveraT
00:13:9d	MarvellH
00:13:9e	CiaraTec
00:13:9f	Electron
00:13:a0	Algosyst
00:13:a1	CrowElec
00:13:a2	Maxstrea
00:13:a3	SiemensC
00:13:a4	KeyeyeCo
00:13:a5	GeneralS
00:13:a6	Extricom
00:13:a7	Battelle
00:13:a8	TanisysT
00:13:a9	Sony
00:13:aa	AlsTec
00:13:ab	Telemoti
00:13:ac	Sunmyung
00:13:ad	Sendo
00:13:ae	Radiance
00:13:af	NumaTech
00:13:b0	Jablotro
00:13:b1	Intellig
00:13:b2	Carallon
00:13:b3	EcomComm
00:13:b4	AppearTv
00:13:b5	Wavesat
00:13:b6	SlingMed
00:13:b7	Scantech
00:13:b8	RycoElec
00:13:b9	Bm
00:13:ba	Readylin
00:13:bb	Smartvue
00:13:bc	Artimi
00:13:bd	HymatomS
00:13:be	VirtualC
00:13:bf	MediaSys
00:13:c0	TrixTecn
00:13:c1	AsokaUsa
00:13:c2	Wacom
00:13:c3	Cisco
00:13:c4	Cisco
00:13:c5	Lightron
00:13:c6	Opengear
00:13:c7	Ionos
00:13:c8	AdbBroad
00:13:c9	BeyondAc
00:13:ca	PicoDigi
00:13:cb	ZenitelN
00:13:cc	TallMapl
00:13:cd	Mti
00:13:ce	Intel
00:13:cf	4accessC
00:13:d0	T+Medica
00:13:d1	KirkTele
00:13:d2	PageIber
00:13:d3	Micro-St
00:13:d4	ASUS
00:13:d5	Ruggedco
00:13:d6	TiiNetwo
00:13:d7	SpidcomT
00:13:d8	Princeto
00:13:d9	MatrixPr
00:13:da	Diskware
00:13:db	ShoeiEle
00:13:dc	Ibtek
00:13:dd	AbbottDi
00:13:de	Adapt4Ll
00:13:df	Ryvor
00:13:e0	MurataMa
00:13:e1	Iprobe
00:13:e2	Geovisio
00:13:e3	CoviTech
00:13:e4	Yangjae
00:13:e5	Tenosys
00:13:e6	Technolu
00:13:e7	Halcro
00:13:e8	Intel
00:13:e9	Veriwave
00:13:ea	Kamstrup
00:13:eb	Sysmaste
00:13:ec	Netsnapp
00:13:ed	Psia
00:13:ee	JbxDesig
00:13:ef	KingjonD
00:13:f0	Wavefron
00:13:f1	AmodTech
00:13:f2	Klas
00:13:f3	Giga-Byt
00:13:f4	PsitekPt
00:13:f5	Akimbi
00:13:f6	Cintech
00:13:f7	SmcNetwo
00:13:f8	DexSecur
00:13:f9	Cavera
00:13:fa	Lifesize
00:13:fb	RkcInstr
00:13:fc	Sicortex
00:13:fd	NokiaDan
00:13:fe	Grandtec
00:13:ff	Dage-Mti
00:14:00	MinervaK
00:14:01	Rivertre
00:14:02	Kk-Elect
00:14:03	RenasisL
00:14:04	ArrisGro
00:14:05	Openib
00:14:06	GoNetwor
00:14:07	SperianP
00:14:08	Eka
00:14:09	MagnetiM
00:14:0a	Wepio
00:14:0b	FirstInt
00:14:0c	GkbCctv
00:14:0d	NortelNe
00:14:0e	NortelNe
00:14:0f	FederalS
00:14:10	SuzhouKe
00:14:11	Deutschm
00:14:12	S-TecEle
00:14:13	TrebingH
00:14:14	Jumpnode
00:14:15	IntecAut
00:14:16	ScoscheI
00:14:17	RseInfor
00:14:18	C4line
00:14:19	Sidsa
00:14:1a	Deicy
00:14:1b	Cisco
00:14:1c	Cisco
00:14:1d	LtiDrive
00:14:1e	PASemi
00:14:1f	Sunkwang
00:14:20	G-LinksN
00:14:21	TotalWir
00:14:22	Dell
00:14:23	J-SNeuro
00:14:24	MerryEle
00:14:25	Galactic
00:14:26	NlTechno
00:14:27	Jazzmuta
00:14:28	Vocollec
00:14:29	VCenterT
00:14:2a	Elitegro
00:14:2b	EdataCom
00:14:2c	KonceptI
00:14:2d	Toradex
00:14:2e	77Elektr
00:14:2f	Savvius
00:14:30	Vipower
00:14:31	PdlElect
00:14:32	Tarallax
00:14:33	EmpowerT
00:14:34	Keri
00:14:35	Citycom
00:14:36	QwertyEl
00:14:37	Gstelete
00:14:38	HP
00:14:39	BlonderT
00:14:3a	RaytalkI
00:14:3b	Sensovat
00:14:3c	Rheinmet
00:14:3d	Aevoe
00:14:3e	AirlinkC
00:14:3f	HotwayTe
00:14:40	Atomic
00:14:41	Innovati
00:14:42	Atto
00:14:43	Consultr
00:14:44	Grundfos
00:14:45	Telefon-
00:14:46	Supervis
00:14:47	Boaz
00:14:48	Inventec
00:14:49	SichuanC
00:14:4a	TaiwanTh
00:14:4b	Hifn
00:14:4c	GeneralM
00:14:4d	Intellig
00:14:4e	Srisa
00:14:4f	Oracle
00:14:50	Heim
00:14:51	Apple
00:14:52	Calculex
00:14:53	Advantec
00:14:54	Symwave
00:14:55	CoderEle
00:14:56	EdgeProd
00:14:57	T-VipsAs
00:14:58	HsAutoma
00:14:59	Moram
00:14:5a	NeratecS
00:14:5b	Seekerne
00:14:5c	Intronic
00:14:5d	WjCommun
00:14:5e	IBM
00:14:5f	Aditec
00:14:60	KyoceraW
00:14:61	Corona
00:14:62	Digiwell
00:14:63	IdcsNV
00:14:64	Cryptoso
00:14:65	NovoNord
00:14:66	Kleinhen
00:14:67	Arrowspa
00:14:68	CelplanI
00:14:69	Cisco
00:14:6a	Cisco
00:14:6b	Anagran
00:14:6c	Netgear
00:14:6d	RfTechno
00:14:6e	HStoll
00:14:6f	Kohler
00:14:70	ProkomSo
00:14:71	EasternA
00:14:72	ChinaBro
00:14:73	Bookham
00:14:74	K40Elect
00:14:75	WilineNe
00:14:76	Multicom
00:14:77	Nertec
00:14:78	TP-Link
00:14:79	NecMagnu
00:14:7a	Eubus
00:14:7b	Iteris
00:14:7c	3Com
00:14:7d	AeonDigi
00:14:7e	Innerwir
00:14:7f	ThomsonT
00:14:80	Hitachi-
00:14:81	Multilin
00:14:82	AuroraNe
00:14:83	Exs
00:14:84	CermateT
00:14:85	Giga-Byt
00:14:86	EchoDigi
00:14:87	American
00:14:88	Akorri
00:14:89	B1540210
00:14:8a	ElinEbgT
00:14:8b	GloboEle
00:14:8c	GeneralD
00:14:8d	CubicDef
00:14:8e	TelePowe
00:14:8f	Protroni
00:14:90	Asp
00:14:91	DanielsE
00:14:92	LiteonMo
00:14:93	Systimax
00:14:94	Esu
00:14:95	2wire
00:14:96	Phonic
00:14:97	ZhiyuanE
00:14:98	VikingDe
00:14:99	Helicomm
00:14:9a	ArrisGro
00:14:9b	NokotaCo
00:14:9c	Hf
00:14:9d	SoundId
00:14:9e	Ubone
00:14:9f	SystemAn
00:14:a0	Accsense
00:14:a1	Synchron
00:14:a2	CoreMicr
00:14:a3	VitelecB
00:14:a4	HonHaiPr
00:14:a5	GemtekTe
00:14:a6	Teraneti
00:14:a7	NokiaDan
00:14:a8	Cisco
00:14:a9	Cisco
00:14:aa	AshlyAud
00:14:ab	SenhaiEl
00:14:ac	Bountifu
00:14:ad	GassnerW
00:14:ae	Wizlogic
00:14:af	DatasymP
00:14:b0	NaeilCom
00:14:b1	AxellWir
00:14:b2	Mcubelog
00:14:b3	Corestar
00:14:b4	GeneralD
00:14:b5	Physiome
00:14:b6	EnswerTe
00:14:b7	ArInfote
00:14:b8	Hill-Rom
00:14:b9	MstarSem
00:14:ba	CarversS
00:14:bb	OpenInte
00:14:bc	Synectic
00:14:bd	Incnetwo
00:14:be	WinkComm
00:14:bf	Cisco
00:14:c0	Symstrea
00:14:c1	USRoboti
00:14:c2	HP
00:14:c3	SeagateT
00:14:c4	Vitelcom
00:14:c5	AliveTec
00:14:c6	Quixant
00:14:c7	NortelNe
00:14:c8	Contempo
00:14:c9	BrocadeC
00:14:ca	KeyRadio
00:14:cb	Lifesync
00:14:cc	Zetec
00:14:cd	Digitalz
00:14:ce	Nf
00:14:cf	InvisioC
00:14:d0	Bti
00:14:d1	Trendnet
00:14:d2	KyudenTe
00:14:d3	Sepsa
00:14:d4	KTechnol
00:14:d5	DatangTe
00:14:d6	Jeongmin
00:14:d7	Datastor
00:14:d8	Bio-Logi
00:14:d9	IpFabric
00:14:da	Huntleig
00:14:db	ElmaTren
00:14:dc	Communic
00:14:dd	Covergen
00:14:de	SageInst
00:14:df	Hi-PTech
00:14:e0	LetS
00:14:e1	DataDisp
00:14:e2	Datacom
00:14:e3	Mm-Lab
00:14:e4	Infinias
00:14:e5	Alticast
00:14:e6	AimInfra
00:14:e7	Stolinx
00:14:e8	ArrisGro
00:14:e9	NortechI
00:14:ea	SDigmSaf
00:14:eb	Awarepoi
00:14:ec	AcroTele
00:14:ed	Airak
00:14:ee	WesternD
00:14:ef	TzeroTec
00:14:f0	Business
00:14:f1	Cisco
00:14:f2	Cisco
00:14:f3	Vixs
00:14:f4	DektecDi
00:14:f5	OsiSecur
00:14:f6	JuniperN
00:14:f7	Crevis
00:14:f8	Scientif
00:14:f9	VantageC
00:14:fa	AsgaSA
00:14:fb	Technica
00:14:fc	Extandon
00:14:fd	ThecusTe
00:14:fe	ArtechEl
00:14:ff	PreciseA
00:15:00	Intel
00:15:01	Lexbox
00:15:02	BetaTech
00:15:03	Proficom
00:15:04	GamePlus
00:15:05	Actionte
00:15:06	NeoPhoto
00:15:07	Renaissa
00:15:08	GlobalTa
00:15:09	PlusTech
00:15:0a	Sonoa
00:15:0b	SageInfo
00:15:0c	Avm
00:15:0d	HoanaMed
00:15:0e	Openbrai
00:15:0f	Mingjong
00:15:10	Techsphe
00:15:11	DataCent
00:15:12	ZurichUn
00:15:13	EfsSas
00:15:14	HuZhouNa
00:15:15	Leipold+
00:15:16	Uriel
00:15:17	Intel
00:15:18	Shenzhen
00:15:19	Storeage
00:15:1a	HunterEn
00:15:1b	Isilon
00:15:1c	Leneco
00:15:1d	M2i
00:15:1e	Ethernet
00:15:1f	Multivis
00:15:20	Radiocra
00:15:21	Horoquar
00:15:22	DeaSecur
00:15:23	MeteorCo
00:15:24	Numatics
00:15:25	Chamberl
00:15:26	RemoteTe
00:15:27	BalboaIn
00:15:28	BeaconMe
00:15:29	N3
00:15:2a	Nokia
00:15:2b	Cisco
00:15:2c	Cisco
00:15:2d	TenxNetw
00:15:2e	Packetho
00:15:2f	ArrisGro
00:15:30	Emc
00:15:31	Kocom
00:15:32	Consumer
00:15:33	Nadam
00:15:34	ABeltrón
00:15:35	Ote
00:15:36	Powertec
00:15:37	VentusNe
00:15:38	Rfid
00:15:39	Technodr
00:15:3a	Shenzhen
00:15:3b	EmhMeter
00:15:3c	Kprotech
00:15:3d	ElimProd
00:15:3e	Q-MaticS
00:15:3f	AlcatelA
00:15:40	NortelNe
00:15:41	Stratali
00:15:42	Microhar
00:15:43	Aberdeen
00:15:44	ComSAT
00:15:45	Seecode
00:15:46	ItgWorld
00:15:47	AizenSol
00:15:48	CubeTech
00:15:49	DixtalBi
00:15:4a	WanshihE
00:15:4b	WondePro
00:15:4c	Saunders
00:15:4d	Netronom
00:15:4e	Iec
00:15:4f	OneRfTec
00:15:50	NitsTech
00:15:51	Radiopul
00:15:52	Wi-Gear
00:15:53	Cytyc
00:15:54	AtalumWi
00:15:55	Dfm
00:15:56	Sagemcom
00:15:57	Olivetti
00:15:58	Foxconn
00:15:59	Securapl
00:15:5a	Dainippo
00:15:5b	Sampo
00:15:5c	DresserW
00:15:5d	Microsoft
00:15:5e	MorganSt
00:15:5f	Greenpea
00:15:60	HP
00:15:61	Jjplus
00:15:62	Cisco
00:15:63	Cisco
00:15:64	Behringe
00:15:65	XiamenYe
00:15:66	A-FirstT
00:15:67	Radwin
00:15:68	Dilithiu
00:15:69	PecoIi
00:15:6a	Dg2lTech
00:15:6b	Perfisan
00:15:6c	SaneSyst
00:15:6d	Ubiquiti
00:15:6e	AWCommun
00:15:6f	XiranetC
00:15:70	ZebraTec
00:15:71	Nolan
00:15:72	Red-Lemo
00:15:73	NewsoftT
00:15:74	HorizonS
00:15:75	NevisNet
00:15:76	Labitec-
00:15:77	AlliedTe
00:15:78	Audio/Vi
00:15:79	Lunatone
00:15:7a	TelefinS
00:15:7b	LeuzeEle
00:15:7c	DaveNetw
00:15:7d	Posdata
00:15:7e	Weidmüll
00:15:7f	ChuangIn
00:15:80	U-Way
00:15:81	Makus
00:15:82	PulseEig
00:15:83	Ivt
00:15:84	SchenckP
00:15:85	Aonvisio
00:15:86	XiamenOv
00:15:87	Takenaka
00:15:88	Salutica
00:15:89	D-MaxTec
00:15:8a	SurecomT
00:15:8b	ParkAir
00:15:8c	LiabAps
00:15:8d	Jennic
00:15:8e	Plustek
00:15:8f	NttAdvan
00:15:90	Hectroni
00:15:91	Rlw
00:15:92	FacomUkM
00:15:93	U4eaTech
00:15:94	Bixolon
00:15:95	QuesterT
00:15:96	ArrisGro
00:15:97	AetaAudi
00:15:98	Kolektor
00:15:99	Samsung
00:15:9a	ArrisGro
00:15:9b	NortelNe
00:15:9c	B-KyungS
00:15:9d	TrippLit
00:15:9e	MadCatzI
00:15:9f	Terascal
00:15:a0	NokiaDan
00:15:a1	Eca-Sint
00:15:a2	ArrisGro
00:15:a3	ArrisGro
00:15:a4	ArrisGro
00:15:a5	Dci
00:15:a6	DigitalE
00:15:a7	Robatech
00:15:a8	ArrisGro
00:15:a9	KwangWoo
00:15:aa	Rextechn
00:15:ab	ProSound
00:15:ac	Capelon
00:15:ad	Accedian
00:15:ae	KyungIl
00:15:af	AzureWave
00:15:b0	Autotele
00:15:b1	Ambient
00:15:b2	Advanced
00:15:b3	Caretech
00:15:b4	PolymapW
00:15:b5	CiNetwor
00:15:b6	Shinmayw
00:15:b7	Toshiba
00:15:b8	Tahoe
00:15:b9	Samsung
00:15:ba	Iba
00:15:bb	SmaSolar
00:15:bc	Develco
00:15:bd	Group4Te
00:15:be	Iqua
00:15:bf	Technico
00:15:c0	DigitalT
00:15:c1	Sony
00:15:c2	3mGerman
00:15:c3	RufTelem
00:15:c4	Flovel
00:15:c5	Dell
00:15:c6	Cisco
00:15:c7	Cisco
00:15:c8	Flexipan
00:15:c9	Gumstix
00:15:ca	Terareco
00:15:cb	SurfComm
00:15:cc	Uquest
00:15:cd	Exartech
00:15:ce	ArrisGro
00:15:cf	ArrisGro
00:15:d0	ArrisGro
00:15:d1	ArrisGro
00:15:d2	Xantech
00:15:d3	Pantech&
00:15:d4	Emitor
00:15:d5	Nicevt
00:15:d6	OslinkSp
00:15:d7	Reti
00:15:d8	Interlin
00:15:d9	PkcElect
00:15:da	IritelAD
00:15:db	Canesta
00:15:dc	Kt&C
00:15:dd	IpContro
00:15:de	NokiaDan
00:15:df	ClivetSP
00:15:e0	Ericsson
00:15:e1	Picochip
00:15:e2	DrIngHer
00:15:e3	DreamTec
00:15:e4	ZimmerEl
00:15:e5	Cheertek
00:15:e6	MobileTe
00:15:e7	QuantecT
00:15:e8	NortelNe
00:15:e9	D-Link
00:15:ea	Tellumat
00:15:eb	Zte
00:15:ec	BocaDevi
00:15:ed	FulcrumM
00:15:ee	OmnexCon
00:15:ef	NecTokin
00:15:f0	EgoBv
00:15:f1	KylinkCo
00:15:f2	ASUS
00:15:f3	Peltor
00:15:f4	Eventide
00:15:f5	Sustaina
00:15:f6	ScienceA
00:15:f7	Wintecro
00:15:f8	Kingtron
00:15:f9	Cisco
00:15:fa	Cisco
00:15:fb	SetexSch
00:15:fc	Littelfu
00:15:fd	Complete
00:15:fe	Schillin
00:15:ff	NovatelW
00:16:00	Cellebri
00:16:01	Buffalo
00:16:02	CeyonTec
00:16:03	Coolksky
00:16:04	Sigpro
00:16:05	Yorkvill
00:16:06	IdealInd
00:16:07	CurvesIn
00:16:08	SequansC
00:16:09	UnitechE
00:16:0a	SweexEur
00:16:0b	TvworksL
00:16:0c	LplDevel
00:16:0d	BeHere
00:16:0e	OpticaTe
00:16:0f	BadgerMe
00:16:10	CarinaTe
00:16:11	AlteconS
00:16:12	OtsukaEl
00:16:13	Librestr
00:16:14	Picoseco
00:16:15	Nittan
00:16:16	BrowanCo
00:16:17	Msi
00:16:18	Hivion
00:16:19	Lancelan
00:16:1a	Dametric
00:16:1b	Micronet
00:16:1c	E:Cue
00:16:1d	Innovati
00:16:1e	Woojinne
00:16:1f	Sunwavet
00:16:20	Sony
00:16:21	Colorado
00:16:22	Bbh
00:16:23	Interval
00:16:24	Teneros
00:16:25	Impinj
00:16:26	ArrisGro
00:16:27	Embedded
00:16:28	Magicard
00:16:29	Nivus
00:16:2a	AntikCom
00:16:2b	TogamiEl
00:16:2c	Xanboo
00:16:2d	Stnet
00:16:2e	SpaceShu
00:16:2f	Geutebrü
00:16:30	VativTec
00:16:31	Xteam
00:16:32	Samsung
00:16:33	OxfordDi
00:16:34	Mathtech
00:16:35	HP
00:16:36	QuantaCo
00:16:37	Citel
00:16:38	Tecom
00:16:39	Ubiquam
00:16:3a	YvesTech
00:16:3b	Vertexrs
00:16:3c	ReboxBV
00:16:3d	Tsinghua
00:16:3e	Xensourc
00:16:3f	Crete
00:16:40	Asmobile
00:16:41	Universa
00:16:42	Pangolin
00:16:43	Sunhillo
00:16:44	Lite-OnT
00:16:45	PowerDis
00:16:46	Cisco
00:16:47	Cisco
00:16:48	Ssd
00:16:49	Setone
00:16:4a	Vibratio
00:16:4b	QuorionD
00:16:4c	PlanetIn
00:16:4d	Alcatel-
00:16:4e	NokiaDan
00:16:4f	WorldEth
00:16:50	KratosEp
00:16:51	Exeo
00:16:52	HoatechT
00:16:53	LegoSyst
00:16:54	Flex-PIn
00:16:55	FuhoTech
00:16:56	Nintendo
00:16:57	Aegate
00:16:58	Fusionte
00:16:59	ZMPRadwa
00:16:5a	HarmanSp
00:16:5b	GripAudi
00:16:5c	Trackflo
00:16:5d	Airdefen
00:16:5e	Precisio
00:16:5f	Fairmoun
00:16:60	NortelNe
00:16:61	Novatium
00:16:62	LiyuhTec
00:16:63	KbtMobil
00:16:64	Prod-El
00:16:65	CellonFr
00:16:66	Quantier
00:16:67	A-TecSub
00:16:68	EishinEl
00:16:69	MrvCommu
00:16:6a	Tps
00:16:6b	Samsung
00:16:6c	Samsung
00:16:6d	YulongCo
00:16:6e	Arbitron
00:16:6f	Intel
00:16:70	Sknet
00:16:71	SymphoxI
00:16:72	ZenwayEn
00:16:73	Bury
00:16:74	EurocbPh
00:16:75	ArrisGro
00:16:76	Intel
00:16:77	Bihl+Wie
00:16:78	Shenzhen
00:16:79	EonCommu
00:16:7a	Skyworth
00:16:7b	Haver&Bo
00:16:7c	IrexTech
00:16:7d	Sky-Line
00:16:7e	Diboss
00:16:7f	Bluebird
00:16:80	BallyGam
00:16:81	VectorIn
00:16:82	ProDex
00:16:83	WebioInt
00:16:84	Donjin
00:16:85	ElisaOyj
00:16:86	KarlStor
00:16:87	ChubbCsc
00:16:88	Serveren
00:16:89	PilkorEl
00:16:8a	Id-Confi
00:16:8b	Paralan
00:16:8c	DslPartn
00:16:8d	Korwin
00:16:8e	Vimicro
00:16:8f	GnNetcom
00:16:90	J-TekInc
00:16:91	Moser-Ba
00:16:92	Scientif
00:16:93	Powerlin
00:16:94	Sennheis
00:16:95	AvcTechn
00:16:96	QdiTechn
00:16:97	Nec
00:16:98	T&AMobil
00:16:99	TonicDvb
00:16:9a	Quadrics
00:16:9b	AlstomTr
00:16:9c	Cisco
00:16:9d	Cisco
00:16:9e	TvOne
00:16:9f	VimtronE
00:16:a0	Auto-Mas
00:16:a1	3leafNet
00:16:a2	Centrali
00:16:a3	Ingeteam
00:16:a4	Ezurio
00:16:a5	Tandberg
00:16:a6	DovadoFz
00:16:a7	AwetaG&P
00:16:a8	Cwt
00:16:a9	2ei
00:16:aa	KeiCommu
00:16:ab	Dansenso
00:16:ac	TohoTech
00:16:ad	Bt-Links
00:16:ae	Inventel
00:16:af	Shenzhen
00:16:b0	Vk
00:16:b1	Kbs
00:16:b2	Drivecam
00:16:b3	Photonic
00:16:b4	Private
00:16:b5	ArrisGro
00:16:b6	Cisco
00:16:b7	SeoulCom
00:16:b8	Sony
00:16:b9	Procurve
00:16:ba	Weathern
00:16:bb	Law-Chai
00:16:bc	NokiaDan
00:16:bd	AtiIndus
00:16:be	Infranet
00:16:bf	PalodexG
00:16:c0	Semtech
00:16:c1	Eleksen
00:16:c2	Avtec
00:16:c3	Ba
00:16:c4	SirfTech
00:16:c5	Shenzhen
00:16:c6	NorthAtl
00:16:c7	Cisco
00:16:c8	Cisco
00:16:c9	NatSeatt
00:16:ca	NortelNe
00:16:cb	Apple
00:16:cc	XcuteMob
00:16:cd	HijiHigh
00:16:ce	HonHaiPr
00:16:cf	HonHaiPr
00:16:d0	AtechEle
00:16:d1	ZatAS
00:16:d2	Caspian
00:16:d3	Wistron
00:16:d4	CompalCo
00:16:d5	Synccom
00:16:d6	TdaTechP
00:16:d7	Sunways
00:16:d8	Senea
00:16:d9	NingboBi
00:16:da	Futronic
00:16:db	Samsung
00:16:dc	Archos
00:16:dd	Gigabeam
00:16:de	Fast
00:16:df	Lundinov
00:16:e0	3Com
00:16:e1	Silicons
00:16:e2	American
00:16:e3	AskeyCom
00:16:e4	Vanguard
00:16:e5	FordleyD
00:16:e6	Giga-Byt
00:16:e7	DynamixP
00:16:e8	SigmaDes
00:16:e9	TibaMedi
00:16:ea	Intel
00:16:eb	Intel
00:16:ec	Elitegro
00:16:ed	DigitalS
00:16:ee	Royaldig
00:16:ef	KokoFitn
00:16:f0	Dell
00:16:f1	Omnisens
00:16:f2	DmobileS
00:16:f3	CastInfo
00:16:f4	Eidicom
00:16:f5	DalianGo
00:16:f6	VideoPro
00:16:f7	L-3Commu
00:16:f8	Aviqtech
00:16:f9	CetrtaPo
00:16:fa	EciTelec
00:16:fb	Shenzhen
00:16:fc	Tohken
00:16:fd	JatyElec
00:16:fe	AlpsElec
00:16:ff	WaminOpt
00:17:00	Kabel
00:17:01	Kde
00:17:02	OsungMid
00:17:03	MosdanIn
00:17:04	ShincoEl
00:17:05	MethodeE
00:17:06	Techfait
00:17:07	Ingrid
00:17:08	HP
00:17:09	ExaltCom
00:17:0a	InewDigi
00:17:0b	Contela
00:17:0c	TwigCom
00:17:0d	DustNetw
00:17:0e	Cisco
00:17:0f	Cisco
00:17:10	Casa
00:17:11	GeHealth
00:17:12	IscoInte
00:17:13	TigerNet
00:17:14	BrContro
00:17:15	Qstik
00:17:16	QnoTechn
00:17:17	LeicaGeo
00:17:18	VanscoEl
00:17:19	Audiocod
00:17:1a	Winegard
00:17:1b	Innovati
00:17:1c	NtMicros
00:17:1d	Digit
00:17:1e	TheoBenn
00:17:1f	Imv
00:17:20	ImageSen
00:17:21	FitreSPA
00:17:22	Hanazede
00:17:23	SummitDa
00:17:24	StuderPr
00:17:25	LiquidCo
00:17:26	M2cElect
00:17:27	ThermoRa
00:17:28	SelexCom
00:17:29	Ubicod
00:17:2a	ProwareT
00:17:2b	GlobalTe
00:17:2c	TaejinIn
00:17:2d	AxcenPho
00:17:2e	Fxc
00:17:2f	Neulion
00:17:30	Automati
00:17:31	ASUS
00:17:32	Science-
00:17:33	Sfr
00:17:34	AdcTelec
00:17:35	IntelWir
00:17:36	Iitron
00:17:37	Industri
00:17:38	Internat
00:17:39	BrightHe
00:17:3a	Reach
00:17:3b	Cisco
00:17:3c	ExtremeE
00:17:3d	Neology
00:17:3e	Leucotro
00:17:3f	BelkinIn
00:17:40	BluberiG
00:17:41	Defidev
00:17:42	Fujitsu
00:17:43	DeckSrl
00:17:44	Araneo
00:17:45	Innotz
00:17:46	Freedom9
00:17:47	Trimble
00:17:48	Neokoros
00:17:49	HyundaeY
00:17:4a	Socomec
00:17:4b	NokiaDan
00:17:4c	Millipor
00:17:4d	DynamicN
00:17:4e	Parama-T
00:17:4f	Icatch
00:17:50	GsiGroup
00:17:51	Online
00:17:52	Dags
00:17:53	NforeTec
00:17:54	ArkinoHi
00:17:55	GeSecuri
00:17:56	VinciLab
00:17:57	RixTechn
00:17:58	Thruvisi
00:17:59	Cisco
00:17:5a	Cisco
00:17:5b	AcsSolut
00:17:5c	Sharp
00:17:5d	DongseoS
00:17:5e	Zed-3
00:17:5f	Xenolink
00:17:60	NaitoDen
00:17:61	Private
00:17:62	SolarTec
00:17:63	Essentia
00:17:64	Atmedia
00:17:65	NortelNe
00:17:66	AccenseT
00:17:67	Earforce
00:17:68	Zinwave
00:17:69	Cymphoni
00:17:6a	AvagoTec
00:17:6b	Kiyon
00:17:6c	Pivot3
00:17:6d	Core
00:17:6e	DucatiSi
00:17:6f	PaxCompu
00:17:70	ArtiIndu
00:17:71	ApdCommu
00:17:72	AstroStr
00:17:73	Laketune
00:17:74	Elesta
00:17:75	TteGerma
00:17:76	MesoScal
00:17:77	Obsidian
00:17:78	CentralM
00:17:79	Quicktel
00:17:7a	AssaAblo
00:17:7b	AzaleaNe
00:17:7c	Smartlin
00:17:7d	IdtTechn
00:17:7e	MeshcomT
00:17:7f	Worldsma
00:17:80	AppliedB
00:17:81	Greyston
00:17:82	Lobenn
00:17:83	TexasIns
00:17:84	ArrisGro
00:17:85	SparrEle
00:17:86	Wisembed
00:17:87	BrotherB
00:17:88	Philips
00:17:89	Zenitron
00:17:8a	DartsTec
00:17:8b	Teledyne
00:17:8c	Independ
00:17:8d	Checkpoi
00:17:8e	GunneboC
00:17:8f	NingboYi
00:17:90	HyundaiD
00:17:91	Lintech
00:17:92	FalcomWi
00:17:93	Tigi
00:17:94	Cisco
00:17:95	Cisco
00:17:96	Rittmeye
00:17:97	TelsyEle
00:17:98	AzonicTe
00:17:99	Smartire
00:17:9a	D-Link
00:17:9b	ChantSin
00:17:9c	DepragSc
00:17:9d	Kelman
00:17:9e	Sirit
00:17:9f	Apricorn
00:17:a0	Robotech
00:17:a1	3soft
00:17:a2	Camrivox
00:17:a3	MixSRL
00:17:a4	HP
00:17:a5	RalinkTe
00:17:a6	YosinEle
00:17:a7	MobileCo
00:17:a8	Edm
00:17:a9	Sentivis
00:17:aa	Elab-Exp
00:17:ab	Nintendo
00:17:ac	ONeilPro
00:17:ad	Acenet
00:17:ae	Gai-Tron
00:17:af	Enermet
00:17:b0	NokiaDan
00:17:b1	AcistMed
00:17:b2	SkTelesy
00:17:b3	AftekInf
00:17:b4	RemoteSe
00:17:b5	Peerless
00:17:b6	Aquantia
00:17:b7	TonzeTec
00:17:b8	Novatron
00:17:b9	GambroLu
00:17:ba	Sedo
00:17:bb	SyrinxIn
00:17:bc	Touchtun
00:17:bd	Tibetsys
00:17:be	TratecTe
00:17:bf	Coherent
00:17:c0	Puretech
00:17:c1	CmPrecis
00:17:c2	AdbBroad
00:17:c3	KtfTechn
00:17:c4	QuantaMi
00:17:c5	Sonicwal
00:17:c6	CrossMat
00:17:c7	MaraCons
00:17:c8	KyoceraD
00:17:c9	Samsung
00:17:ca	Qisda
00:17:cb	JuniperN
00:17:cc	Alcatel-
00:17:cd	CecWirel
00:17:ce	ScreenSe
00:17:cf	Imca-Gmb
00:17:d0	OpticomC
00:17:d1	NortelNe
00:17:d2	Thinlinx
00:17:d3	Etymotic
00:17:d4	MonsoonM
00:17:d5	Samsung
00:17:d6	Bluechip
00:17:d7	IonGeoph
00:17:d8	MagnumSe
00:17:d9	Aai
00:17:da	SpansLog
00:17:db	CankoTec
00:17:dc	Daemyung
00:17:dd	ClipsalA
00:17:de	Advantag
00:17:df	Cisco
00:17:e0	Cisco
00:17:e1	DacosTec
00:17:e2	ArrisGro
00:17:e3	TexasIns
00:17:e4	TexasIns
00:17:e5	TexasIns
00:17:e6	TexasIns
00:17:e7	TexasIns
00:17:e8	TexasIns
00:17:e9	TexasIns
00:17:ea	TexasIns
00:17:eb	TexasIns
00:17:ec	TexasIns
00:17:ed	Woojooit
00:17:ee	ArrisGro
00:17:ef	IBM
00:17:f0	SzcomBro
00:17:f1	RenuElec
00:17:f2	Apple
00:17:f3	HarrisCo
00:17:f4	ZeronAll
00:17:f5	LigNeopt
00:17:f6	PyramidM
00:17:f7	CemSolut
00:17:f8	MotechIn
00:17:f9	ForcomSp
00:17:fa	Microsoft
00:17:fb	Fa
00:17:fc	Suprema
00:17:fd	AmuletHo
00:17:fe	TalosSys
00:17:ff	Playline
00:18:00	Unigrand
00:18:01	Actionte
00:18:02	AlphaNet
00:18:03	ArcsoftS
00:18:04	E-TekDig
00:18:05	BeijingI
00:18:06	HokkeiIn
00:18:07	Fanstel
00:18:08	Sightlog
00:18:09	Cresyn
00:18:0a	Cisco
00:18:0b	Brillian
00:18:0c	Optelian
00:18:0d	Terabyte
00:18:0e	Avega
00:18:0f	NokiaDan
00:18:10	IptradeS
00:18:11	NeurosTe
00:18:12	BeijingX
00:18:13	Sony
00:18:14	Mitutoyo
00:18:15	GzTechno
00:18:16	Ubixon
00:18:17	DEShawRe
00:18:18	Cisco
00:18:19	Cisco
00:18:1a	Avermedi
00:18:1b	TaijinMe
00:18:1c	Exterity
00:18:1d	AsiaElec
00:18:1e	GdxTechn
00:18:1f	Palmmicr
00:18:20	W5networ
00:18:21	Sindoric
00:18:22	CecTelec
00:18:23	DeltaEle
00:18:24	KimaldiE
00:18:25	Private
00:18:26	CaleAcce
00:18:27	NecUnifi
00:18:28	E2vTechn
00:18:29	Gatsomet
00:18:2a	TaiwanVi
00:18:2b	Softier
00:18:2c	AscendNe
00:18:2d	ArtecDes
00:18:2e	Xstreamh
00:18:2f	TexasIns
00:18:30	TexasIns
00:18:31	TexasIns
00:18:32	TexasIns
00:18:33	TexasIns
00:18:34	TexasIns
00:18:35	Thoratec
00:18:36	Reliance
00:18:37	Universa
00:18:38	Panacces
00:18:39	Cisco
00:18:3a	WestellT
00:18:3b	Cenits
00:18:3c	EncoreSo
00:18:3d	VertexLi
00:18:3e	Digilent
00:18:3f	2wire
00:18:40	3Phoenix
00:18:41	HighTech
00:18:42	NokiaDan
00:18:43	Dawevisi
00:18:44	HeadsUpT
00:18:45	Pulsar-T
00:18:46	CryptoSA
00:18:47	AcenetTe
00:18:48	VecimaNe
00:18:49	PigeonPo
00:18:4a	Catcher
00:18:4b	LasVegas
00:18:4c	BogenCom
00:18:4d	Netgear
00:18:4e	LianheTe
00:18:4f	8WaysTec
00:18:50	SecfoneK
00:18:51	Swsoft
00:18:52	Storlink
00:18:53	AteraNet
00:18:54	Argard
00:18:55	Aeromari
00:18:56	Eyefi
00:18:57	Unilever
00:18:58	Tagmaste
00:18:59	Strawber
00:18:5a	Ucontrol
00:18:5b	NetworkC
00:18:5c	EdslabTe
00:18:5d	TaiguenT
00:18:5e	Nexterm
00:18:5f	Tac
00:18:60	SimTechn
00:18:61	Ooma
00:18:62	SeagateT
00:18:63	Veritech
00:18:64	Eaton
00:18:65	SiemensH
00:18:66	LeutronV
00:18:67	Datalogi
00:18:68	Cisco
00:18:69	Kingjim
00:18:6a	GlobalLi
00:18:6b	SambuCom
00:18:6c	Neonode
00:18:6d	Zhenjian
00:18:6e	3Com
00:18:6f	SethaInd
00:18:70	E28Shang
00:18:71	HP
00:18:72	Expertis
00:18:73	Cisco
00:18:74	Cisco
00:18:75	AnaciseT
00:18:76	Wowwee
00:18:77	Amplex
00:18:78	Mackware
00:18:79	Dsys
00:18:7a	Wiremold
00:18:7b	4nsys
00:18:7c	Intercro
00:18:7d	Armorlin
00:18:7e	RgbSpect
00:18:7f	Zodianet
00:18:80	MaximInt
00:18:81	BuyangEl
00:18:82	Huawei
00:18:83	Formosa2
00:18:84	FonTechn
00:18:85	Avigilon
00:18:86	El-Tech
00:18:87	Metasyst
00:18:88	GotiveAS
00:18:89	WinnetSo
00:18:8a	Infinova
00:18:8b	Dell
00:18:8c	MobileAc
00:18:8d	NokiaDan
00:18:8e	Ekahau
00:18:8f	Montgome
00:18:90	Radiocom
00:18:91	Zhongsha
00:18:92	Ads-Tec
00:18:93	Shenzhen
00:18:94	Npcore
00:18:95	HansunTe
00:18:96	GreatWel
00:18:97	Jess-Lin
00:18:98	Kingstat
00:18:99	Shenzhen
00:18:9a	HanaMicr
00:18:9b	Thomson
00:18:9c	Weldex
00:18:9d	Navcast
00:18:9e	Omnikey
00:18:9f	Lenntek
00:18:a0	CiermaAs
00:18:a1	TiqitCom
00:18:a2	XipTechn
00:18:a3	ZippyTec
00:18:a4	ArrisGro
00:18:a5	AdigitTe
00:18:a6	Persiste
00:18:a7	YoggieSe
00:18:a8	AnnealTe
00:18:a9	Ethernet
00:18:aa	ProtecFi
00:18:ab	BeijingL
00:18:ac	Shanghai
00:18:ad	NidecSan
00:18:ae	Tvt
00:18:af	Samsung
00:18:b0	NortelNe
00:18:b1	IBM
00:18:b2	AdeunisR
00:18:b3	TecWizho
00:18:b4	DawonMed
00:18:b5	MagnaCar
00:18:b6	S3c
00:18:b7	D3LedLlc
00:18:b8	NewVoice
00:18:b9	Cisco
00:18:ba	Cisco
00:18:bb	EliwellC
00:18:bc	ZaoNvpBo
00:18:bd	Shenzhen
00:18:be	Ansa
00:18:bf	EssenceT
00:18:c0	ArrisGro
00:18:c1	AlmitecI
00:18:c2	Firetide
00:18:c3	Cs
00:18:c4	RabaTech
00:18:c5	NokiaDan
00:18:c6	OpwFuelM
00:18:c7	RealTime
00:18:c8	Isonas
00:18:c9	EopsTech
00:18:ca	Viprinet
00:18:cb	Tecobest
00:18:cc	AxiohmSa
00:18:cd	EraeElec
00:18:ce	Dreamtec
00:18:cf	BaldorEl
00:18:d0	AtroadAT
00:18:d1	SiemensH
00:18:d2	High-Gai
00:18:d3	Teamcast
00:18:d4	UnifiedD
00:18:d5	Reigncom
00:18:d6	Swirlnet
00:18:d7	JavadGns
00:18:d8	ArchMete
00:18:d9	Santosha
00:18:da	AmberWir
00:18:db	EplTechn
00:18:dc	Prostar
00:18:dd	Silicond
00:18:de	Intel
00:18:df	Morey
00:18:e0	Anaveo
00:18:e1	VerkerkS
00:18:e2	TopdataS
00:18:e3	Visualga
00:18:e4	Yiguang
00:18:e5	Adhoco
00:18:e6	Computer
00:18:e7	CameoCom
00:18:e8	Hacetron
00:18:e9	Numata
00:18:ea	Alltec
00:18:eb	BlueZenE
00:18:ec	WeldingT
00:18:ed	Accutech
00:18:ee	Videolog
00:18:ef	EscapeCo
00:18:f0	Joytoto
00:18:f1	Chunichi
00:18:f2	BeijingT
00:18:f3	ASUS
00:18:f4	EoTechni
00:18:f5	Shenzhen
00:18:f6	ThomsonT
00:18:f7	Kameleon
00:18:f8	Cisco
00:18:f9	Vvond
00:18:fa	YushinPr
00:18:fb	ComproTe
00:18:fc	AltecEle
00:18:fd	OptimalT
00:18:fe	HP
00:18:ff	Powerqua
00:19:00	Intelliv
00:19:01	F1media
00:19:02	Cambridg
00:19:03	BigfootN
00:19:04	WbElectr
00:19:05	SchrackS
00:19:06	Cisco
00:19:07	Cisco
00:19:08	Duaxes
00:19:09	Devi-Dan
00:19:0a	Hasware
00:19:0b	Southern
00:19:0c	EncoreEl
00:19:0d	IEEE1394
00:19:0e	AtechTec
00:19:0f	Advansus
00:19:10	KnickEle
00:19:11	JustInMo
00:19:12	Welcat
00:19:13	Chuang-Y
00:19:14	Winix
00:19:15	Tecom
00:19:16	Paytec
00:19:17	Posiflex
00:19:18	Interact
00:19:19	Astel
00:19:1a	Irlink
00:19:1b	SputnikE
00:19:1c	Sensicas
00:19:1d	Nintendo
00:19:1e	Beyondwi
00:19:1f	Microlin
00:19:20	KumeElec
00:19:21	Elitegro
00:19:22	CmComand
00:19:23	PhonexKo
00:19:24	LbnlEngi
00:19:25	Intelici
00:19:26	Bitsgen
00:19:27	Imcosys
00:19:28	SiemensT
00:19:29	2m2bMont
00:19:2a	AntiopeA
00:19:2b	AclaraRf
00:19:2c	ArrisGro
00:19:2d	Nokia
00:19:2e	Spectral
00:19:2f	Cisco
00:19:30	Cisco
00:19:31	Balluff
00:19:32	GudeAnal
00:19:33	Strix
00:19:34	TrendonT
00:19:35	DuerrDen
00:19:36	Sterlite
00:19:37	Commerce
00:19:38	UmbCommu
00:19:39	Gigamips
00:19:3a	Oesoluti
00:19:3b	WiliboxD
00:19:3c	Highpoin
00:19:3d	GmcGuard
00:19:3e	AdbBroad
00:19:3f	RdiTechn
00:19:40	Rackable
00:19:41	PitneyBo
00:19:42	OnSoftwa
00:19:43	Belden
00:19:44	FossilPa
00:19:45	RfConcep
00:19:46	CianetIn
00:19:47	Cisco
00:19:48	Airespid
00:19:49	TentelCo
00:19:4a	Testo
00:19:4b	Sagemcom
00:19:4c	FujianSt
00:19:4d	AvagoTec
00:19:4e	UltraEle
00:19:4f	NokiaDan
00:19:50	HarmanMu
00:19:51	NetconsS
00:19:52	Acogito
00:19:53	Chainlea
00:19:54	Leaf
00:19:55	Cisco
00:19:56	Cisco
00:19:57	SaafnetC
00:19:58	Bluetoot
00:19:59	Staccato
00:19:5a	JenaerAn
00:19:5b	D-Link
00:19:5c	Innotech
00:19:5d	Shenzhen
00:19:5e	ArrisGro
00:19:5f	Valemoun
00:19:60	Docomo
00:19:61	Blaupunk
00:19:62	Commerci
00:19:63	Sony
00:19:64	Doorking
00:19:65	YuhuaTel
00:19:66	Asiarock
00:19:67	TeldatSp
00:19:68	DigitalV
00:19:69	NortelNe
00:19:6a	Mikrom
00:19:6b	Danpex
00:19:6c	Etrovisi
00:19:6d	RaybitKo
00:19:6e	MetacomP
00:19:6f	Sensopar
00:19:70	Z-Com
00:19:71	Guangzho
00:19:72	PlexusXi
00:19:73	Zeugma
00:19:74	16063
00:19:75	BeijingH
00:19:76	XipherTe
00:19:77	Aerohive
00:19:78	Datum
00:19:79	NokiaDan
00:19:7a	Mazet
00:19:7b	Picotest
00:19:7c	RiedelCo
00:19:7d	HonHaiPr
00:19:7e	HonHaiPr
00:19:7f	Plantron
00:19:80	Gridpoin
00:19:81	Vivox
00:19:82	Smardtv
00:19:83	CctR&D
00:19:84	Estic
00:19:85	ItWatchd
00:19:86	ChengHon
00:19:87	Panasoni
00:19:88	Wi2wi
00:19:89	Sonitrol
00:19:8a	Northrop
00:19:8b	NoveraOp
00:19:8c	Ixsea
00:19:8d	OceanOpt
00:19:8e	Oticon
00:19:8f	AlcatelB
00:19:90	ElmData
00:19:91	Avinfo
00:19:92	Adtran
00:19:93	Changshu
00:19:94	JorjinTe
00:19:95	JurongHi
00:19:96	Turboche
00:19:97	SoftDevi
00:19:98	Sato
00:19:99	Fujitsu
00:19:9a	Edo-Evi
00:19:9b	Diversif
00:19:9c	Ctring
00:19:9d	Vizio
00:19:9e	Nifty
00:19:9f	Dkt
00:19:a0	NihonDat
00:19:a1	LG
00:19:a2	OrdynTec
00:19:a3	AsteelEl
00:19:a4	AustarTe
00:19:a5	Radarfin
00:19:a6	ArrisGro
00:19:a7	Itu-T
00:19:a8	WiquestC
00:19:a9	Cisco
00:19:aa	Cisco
00:19:ab	Raycom
00:19:ac	Gsp
00:19:ad	BobstSa
00:19:ae	HoplingT
00:19:af	RigolTec
00:19:b0	HanyangS
00:19:b1	Arrow7
00:19:b2	Xynetsof
00:19:b3	Stanford
00:19:b4	Intellio
00:19:b5	FamarFue
00:19:b6	EuroEmme
00:19:b7	NokiaDan
00:19:b8	Boundary
00:19:b9	Dell
00:19:ba	ParadoxS
00:19:bb	HP
00:19:bc	ElectroC
00:19:bd	NewMedia
00:19:be	AltaiTec
00:19:bf	CitiwayT
00:19:c0	ArrisGro
00:19:c1	AlpsElec
00:19:c2	Equustek
00:19:c3	Qualitro
00:19:c4	Infocryp
00:19:c5	Sony
00:19:c6	Zte
00:19:c7	Cambridg
00:19:c8	Anydata
00:19:c9	S&CElect
00:19:ca	Broadata
00:19:cb	ZyxelCom
00:19:cc	RcgHk
00:19:cd	ChengduE
00:19:ce	Progress
00:19:cf	SalicruS
00:19:d0	Cathexis
00:19:d1	Intel
00:19:d2	Intel
00:19:d3	TrakMicr
00:19:d4	IcxTechn
00:19:d5	IpInnova
00:19:d6	LsCableA
00:19:d7	Fortunet
00:19:d8	Maxfor
00:19:d9	Zeutsche
00:19:da	Welltran
00:19:db	Micro-St
00:19:dc	EnensysT
00:19:dd	Fei-Zyfe
00:19:de	Mobitek
00:19:df	Thomson
00:19:e0	TP-Link
00:19:e1	NortelNe
00:19:e2	JuniperN
00:19:e3	Apple
00:19:e4	2wire
00:19:e5	LynxStud
00:19:e6	ToyoMedi
00:19:e7	Cisco
00:19:e8	Cisco
00:19:e9	S-Inform
00:19:ea	Teramage
00:19:eb	Pyronix
00:19:ec	Sagamore
00:19:ed	Axesstel
00:19:ee	CarloGav
00:19:ef	Shenzhen
00:19:f0	Unionman
00:19:f1	StarComm
00:19:f2	Teradyne
00:19:f3	Cetis
00:19:f4	Converge
00:19:f5	Imaginat
00:19:f6	AcconetP
00:19:f7	OnsetCom
00:19:f8	Embedded
00:19:f9	Tdk-Lamb
00:19:fa	CableVis
00:19:fb	Bskyb
00:19:fc	PtUfoaks
00:19:fd	Nintendo
00:19:fe	Shenzhen
00:19:ff	Finnzyme
00:1a:00	Matrix
00:1a:01	SmithsMe
00:1a:02	SecureCa
00:1a:03	AngelEle
00:1a:04	InterayS
00:1a:05	Optibase
00:1a:06	Opvista
00:1a:07	ArecontV
00:1a:08	Simoco
00:1a:09	Wayfarer
00:1a:0a	Adaptive
00:1a:0b	BonaTech
00:1a:0c	Swe-Dish
00:1a:0d	Handheld
00:1a:0e	ChengUei
00:1a:0f	Sistemas
00:1a:10	LucentTr
00:1a:11	Google
00:1a:12	Essilor
00:1a:13	WanlidaG
00:1a:14	XinHuaCo
00:1a:15	GemaltoE
00:1a:16	NokiaDan
00:1a:17	TeakTech
00:1a:18	Advanced
00:1a:19	Computer
00:1a:1a	GentexCo
00:1a:1b	ArrisGro
00:1a:1c	Gt&TEngi
00:1a:1d	PchomeOn
00:1a:1e	ArubaNet
00:1a:1f	CoastalE
00:1a:20	Cmotech
00:1a:21	Brookhui
00:1a:22	Eq-3Entw
00:1a:23	IceQube
00:1a:24	GalaxyTe
00:1a:25	DeltaDor
00:1a:26	Deltanod
00:1a:27	Ubistar
00:1a:28	AswtTaiw
00:1a:29	JohnsonO
00:1a:2a	Arcadyan
00:1a:2b	AyecomTe
00:1a:2c	Satec
00:1a:2d	NavvoGro
00:1a:2e	ZiovaCop
00:1a:2f	Cisco
00:1a:30	Cisco
00:1a:31	ScanCoin
00:1a:32	ActivaMu
00:1a:33	AsiCommu
00:1a:34	KonkaGro
00:1a:35	Bartec
00:1a:36	Aipermon
00:1a:37	Lear
00:1a:38	Sanmina-
00:1a:39	MertenGm
00:1a:3a	Dongahel
00:1a:3b	DoahElec
00:1a:3c	Technowa
00:1a:3d	AjinVisi
00:1a:3e	FasterTe
00:1a:3f	Intelbra
00:1a:40	A-FourTe
00:1a:41	Inocova
00:1a:42	Techcity
00:1a:43	LogicalL
00:1a:44	Jwtradin
00:1a:45	GnNetcom
00:1a:46	DigitalM
00:1a:47	Agami
00:1a:48	Takacom
00:1a:49	MicroVis
00:1a:4a	Qumranet
00:1a:4b	HP
00:1a:4c	Crossbow
00:1a:4d	Giga-Byt
00:1a:4e	Nti/Linm
00:1a:4f	Avm
00:1a:50	PheenetT
00:1a:51	AlfredMa
00:1a:52	Meshlinx
00:1a:53	Zylaya
00:1a:54	HipShing
00:1a:55	Aca-Digi
00:1a:56	Viewtel
00:1a:57	MatrixDe
00:1a:58	CcvDeuts
00:1a:59	Ircona
00:1a:5a	KoreaEle
00:1a:5b	NetcareS
00:1a:5c	EuchnerG
00:1a:5d	Mobinnov
00:1a:5e	ThincomT
00:1a:5f	Kitworks
00:1a:60	WaveElec
00:1a:61	Pacstar
00:1a:62	DataRobo
00:1a:63	ElsterSo
00:1a:64	IBM
00:1a:65	Seluxit
00:1a:66	ArrisGro
00:1a:67	Infinite
00:1a:68	WeltecEn
00:1a:69	WuhanYan
00:1a:6a	Tranzas
00:1a:6b	Universa
00:1a:6c	Cisco
00:1a:6d	Cisco
00:1a:6e	ImproTec
00:1a:6f	MiTelSRL
00:1a:70	Cisco
00:1a:71	Diostech
00:1a:72	MosartSe
00:1a:73	GemtekTe
00:1a:74	ProcareI
00:1a:75	Sony
00:1a:76	SdtInfor
00:1a:77	ArrisGro
00:1a:78	Ubtos
00:1a:79	Telecomu
00:1a:7a	LismoreI
00:1a:7b	Teleco
00:1a:7c	Hirschma
00:1a:7d	Cyber-Bl
00:1a:7e	LnSritha
00:1a:7f	GciScien
00:1a:80	Sony
00:1a:81	Zelax
00:1a:82	ProbaBui
00:1a:83	PegasusT
00:1a:84	VOneMult
00:1a:85	NvMichel
00:1a:86	Advanced
00:1a:87	CanholdI
00:1a:88	Venergy
00:1a:89	NokiaDan
00:1a:8a	Samsung
00:1a:8b	ChunilEl
00:1a:8c	Sophos
00:1a:8d	AvecsBer
00:1a:8e	3wayNetw
00:1a:8f	NortelNe
00:1a:90	TrópicoS
00:1a:91	Fusiondy
00:1a:92	ASUS
00:1a:93	ErcoLeuc
00:1a:94	Votronic
00:1a:95	HisenseM
00:1a:96	EclerSA
00:1a:97	Fitivisi
00:1a:98	AsotelCo
00:1a:99	SmartyHz
00:1a:9a	Skyworth
00:1a:9b	AdecPart
00:1a:9c	Righthan
00:1a:9d	SkipperW
00:1a:9e	IconDigi
00:1a:9f	A-Link
00:1a:a0	Dell
00:1a:a1	Cisco
00:1a:a2	Cisco
00:1a:a3	Delorme
00:1a:a4	FutureUn
00:1a:a5	BrnPhoen
00:1a:a6	Telefunk
00:1a:a7	TorianWi
00:1a:a8	MamiyaDi
00:1a:a9	FujianSt
00:1a:aa	Analogic
00:1a:ab	EwingsSR
00:1a:ac	Corelatu
00:1a:ad	ArrisGro
00:1a:ae	SavantLl
00:1a:af	BlusensT
00:1a:b0	SignalNe
00:1a:b1	AsiaPaci
00:1a:b2	CyberSol
00:1a:b3	Visionit
00:1a:b4	Ffei
00:1a:b5	HomeNetw
00:1a:b6	TexasIns
00:1a:b7	EthosNet
00:1a:b8	Anseri
00:1a:b9	Pmc
00:1a:ba	CatonOve
00:1a:bb	FontalTe
00:1a:bc	U4eaTech
00:1a:bd	Impatica
00:1a:be	Computer
00:1a:bf	TrumpfLa
00:1a:c0	JoybienT
00:1a:c1	3Com
00:1a:c2	Yec
00:1a:c3	Scientif
00:1a:c4	2wire
00:1a:c5	Breaking
00:1a:c6	MicroCon
00:1a:c7	Unipoint
00:1a:c8	IslInstr
00:1a:c9	Suzuken
00:1a:ca	Tilera
00:1a:cb	AutocomP
00:1a:cc	Celestia
00:1a:cd	TidelEng
00:1a:ce	Yupiteru
00:1a:cf	CTElettr
00:1a:d0	AlbisTec
00:1a:d1	Fargo
00:1a:d2	Eletroni
00:1a:d3	Vamp
00:1a:d4	IpoxTech
00:1a:d5	KmcChain
00:1a:d6	JiagnsuA
00:1a:d7	Christie
00:1a:d8	Alsterae
00:1a:d9	Internat
00:1a:da	Biz-2-Me
00:1a:db	ArrisGro
00:1a:dc	NokiaDan
00:1a:dd	Pepwave
00:1a:de	ArrisGro
00:1a:df	Interact
00:1a:e0	Mytholog
00:1a:e1	EdgeAcce
00:1a:e2	Cisco
00:1a:e3	Cisco
00:1a:e4	MedicisT
00:1a:e5	MvoxTech
00:1a:e6	AtlantaA
00:1a:e7	AztekNet
00:1a:e8	UnifySof
00:1a:e9	Nintendo
00:1a:ea	RadioTer
00:1a:eb	AlliedTe
00:1a:ec	KeumbeeE
00:1a:ed	Incotec
00:1a:ee	Shenztec
00:1a:ef	Loopcomm
00:1a:f0	Alcatel-
00:1a:f1	Embedded
00:1a:f2	Dynavisi
00:1a:f3	Samyoung
00:1a:f4	Handream
00:1a:f5	Pentaone
00:1a:f6	Woven
00:1a:f7	Datascha
00:1a:f8	CopleyCo
00:1a:f9	Aeroviro
00:1a:fa	WelchAll
00:1a:fb	Joby
00:1a:fc	Moduslin
00:1a:fd	Evolis
00:1a:fe	Sofacrea
00:1a:ff	Wizyoung
00:1b:00	NeopostT
00:1b:01	AppliedR
00:1b:02	Ed
00:1b:03	ActionTe
00:1b:04	Affinity
00:1b:05	Ymc
00:1b:06	Ateliers
00:1b:07	Mendocin
00:1b:08	DanfossD
00:1b:09	MatrixTe
00:1b:0a	Intellig
00:1b:0b	Phidgets
00:1b:0c	Cisco
00:1b:0d	Cisco
00:1b:0e	InotecOr
00:1b:0f	Petratec
00:1b:10	Shenzhen
00:1b:11	D-Link
00:1b:12	Apprion
00:1b:13	IcronTec
00:1b:14	CarexLig
00:1b:15	Voxtel
00:1b:16	Celtro
00:1b:17	PaloAlto
00:1b:18	TsukenEl
00:1b:19	IEEEI&MS
00:1b:1a	E-TreesJ
00:1b:1b	Siemens
00:1b:1c	Coherent
00:1b:1d	PhoenixI
00:1b:1e	HartComm
00:1b:1f	Delta-Da
00:1b:20	TpineTec
00:1b:21	Intel
00:1b:22	PalitMic
00:1b:23	Simpleco
00:1b:24	QuantaCo
00:1b:25	NortelNe
00:1b:26	Ron-Tele
00:1b:27	MerlinCs
00:1b:28	PolygonJ
00:1b:29	Avantis
00:1b:2a	Cisco
00:1b:2b	Cisco
00:1b:2c	AtronEle
00:1b:2d	Med-Eng
00:1b:2e	SinkyoEl
00:1b:2f	Netgear
00:1b:30	Solitech
00:1b:31	NeuralIm
00:1b:32	Qlogic
00:1b:33	NokiaDan
00:1b:34	FocusSys
00:1b:35	Chongqin
00:1b:36	TsubataE
00:1b:37	Computec
00:1b:38	CompalIn
00:1b:39	Proxicas
00:1b:3a	Sims
00:1b:3b	Yi-Qing
00:1b:3c	Software
00:1b:3d	Eurotel
00:1b:3e	Curtis
00:1b:3f	Procurve
00:1b:40	NetworkA
00:1b:41	GeneralI
00:1b:42	WiseBlue
00:1b:43	BeijingD
00:1b:44	Sandisk
00:1b:45	AbbAsDiv
00:1b:46	BlueoneT
00:1b:47	Futarque
00:1b:48	Shenzhen
00:1b:49	RobertsR
00:1b:4a	W&WCommu
00:1b:4b	Sanion
00:1b:4c	Signtech
00:1b:4d	ArecaTec
00:1b:4e	NavmanNe
00:1b:4f	Avaya
00:1b:50	NizhnyNo
00:1b:51	VectorTe
00:1b:52	ArrisGro
00:1b:53	Cisco
00:1b:54	Cisco
00:1b:55	HurcoAut
00:1b:56	TehutiNe
00:1b:57	Semindia
00:1b:58	AceCadEn
00:1b:59	Sony
00:1b:5a	ApolloIm
00:1b:5b	2wire
00:1b:5c	Azuretec
00:1b:5d	Vololink
00:1b:5e	Bpl
00:1b:5f	AlienTec
00:1b:60	Navigon
00:1b:61	DigitalA
00:1b:62	JhtOptoe
00:1b:63	Apple
00:1b:64	Isaaclan
00:1b:65	ChinaGri
00:1b:66	Sennheis
00:1b:67	Cisco
00:1b:68	Modnnet
00:1b:69	Equaline
00:1b:6a	Powerwav
00:1b:6b	SwyxSolu
00:1b:6c	LookxDig
00:1b:6d	Midtroni
00:1b:6e	Anue
00:1b:6f	Teletrak
00:1b:70	IriUbite
00:1b:71	Telular
00:1b:72	SicepSPA
00:1b:73	DtlBroad
00:1b:74	Miralink
00:1b:75	Hypermed
00:1b:76	Ripcode
00:1b:77	Intel
00:1b:78	HP
00:1b:79	Faiveley
00:1b:7a	Nintendo
00:1b:7b	Tintomet
00:1b:7c	ARCambri
00:1b:7d	CxrAnder
00:1b:7e	Beckmann
00:1b:7f	TmnTechn
00:1b:80	Lord
00:1b:81	DataqIns
00:1b:82	TaiwanSe
00:1b:83	Finsoft
00:1b:84	ScanEngi
00:1b:85	ManDiese
00:1b:86	BoschAcc
00:1b:87	Deepsoun
00:1b:88	DivinetA
00:1b:89	EmzaVisu
00:1b:8a	2mElectr
00:1b:8b	NecPlatf
00:1b:8c	JmicronT
00:1b:8d	Electron
00:1b:8e	HuluSwed
00:1b:8f	Cisco
00:1b:90	Cisco
00:1b:91	Efkon
00:1b:92	L-Acoust
00:1b:93	JcDecaux
00:1b:94	TEMASPA
00:1b:95	VideoSrl
00:1b:96	GeneralS
00:1b:97	ViolinTe
00:1b:98	Samsung
00:1b:99	KsSystem
00:1b:9a	ApolloFi
00:1b:9b	Hose-Mcc
00:1b:9c	SatelSpZ
00:1b:9d	NovusSec
00:1b:9e	AskeyCom
00:1b:9f	Calyptec
00:1b:a0	Awox
00:1b:a1	Åmic
00:1b:a2	IdsImagi
00:1b:a3	FlexitGr
00:1b:a4	SAEAfiki
00:1b:a5	Myungmin
00:1b:a6	Intotech
00:1b:a7	LoricaSo
00:1b:a8	Ubi&Mobi
00:1b:a9	BrotherI
00:1b:aa	XenicsNv
00:1b:ab	Telchemy
00:1b:ac	CurtissW
00:1b:ad	Icontrol
00:1b:ae	MicroCon
00:1b:af	NokiaDan
00:1b:b0	BharatEl
00:1b:b1	WistronN
00:1b:b2	Intellec
00:1b:b3	Condalo
00:1b:b4	Airvod
00:1b:b5	Cherry
00:1b:b6	BirdElec
00:1b:b7	AltaHeig
00:1b:b8	BluewayE
00:1b:b9	Elitegro
00:1b:ba	NortelNe
00:1b:bb	Rftech
00:1b:bc	SilverPe
00:1b:bd	FmcKongs
00:1b:be	IcopDigi
00:1b:bf	Sagemcom
00:1b:c0	JuniperN
00:1b:c1	HoluxTec
00:1b:c2	Integrat
00:1b:c3	Mobisolu
00:1b:c4	Ultratec
00:1b:c5	IEEERegi
00:1b:c6	StratoRe
00:1b:c7	Starvedi
00:1b:c8	Miura
00:1b:c9	FsnDispl
00:1b:ca	BeijingR
00:1b:cb	PempekPt
00:1b:cc	KingtekC
00:1b:cd	Daviscom
00:1b:ce	Measurem
00:1b:cf	Dataupia
00:1b:d0	IdentecS
00:1b:d1	Sogestma
00:1b:d2	Ultra-XA
00:1b:d3	Panasoni
00:1b:d4	Cisco
00:1b:d5	Cisco
00:1b:d6	KelvinHu
00:1b:d7	Cisco
00:1b:d8	Dvtel
00:1b:d9	Edgewate
00:1b:da	Utstarco
00:1b:db	ValeoVec
00:1b:dc	Vencer
00:1b:dd	ArrisGro
00:1b:de	Renkus-H
00:1b:df	IskraSis
00:1b:e0	TelenotE
00:1b:e1	Vialogy
00:1b:e2	Ahnlab
00:1b:e3	HealthHe
00:1b:e4	TownetSr
00:1b:e5	802autom
00:1b:e6	Vr
00:1b:e7	PostekEl
00:1b:e8	Ultratro
00:1b:e9	Broadcom
00:1b:ea	Nintendo
00:1b:eb	DmpElect
00:1b:ec	NetioTec
00:1b:ed	BrocadeC
00:1b:ee	NokiaDan
00:1b:ef	Blossoms
00:1b:f0	ValuePla
00:1b:f1	NanjingS
00:1b:f2	KworldCo
00:1b:f3	Transrad
00:1b:f4	KenwinIn
00:1b:f5	TellinkS
00:1b:f6	ConwiseT
00:1b:f7	LundIpPr
00:1b:f8	Digitrax
00:1b:f9	Intellit
00:1b:fa	GINMbh
00:1b:fb	AlpsElec
00:1b:fc	ASUS
00:1b:fd	Dignsys
00:1b:fe	Zavio
00:1b:ff	Millenni
00:1c:00	EntryPoi
00:1c:01	AbbOyDri
00:1c:02	PanoLogi
00:1c:03	BettyTvT
00:1c:04	Airgain
00:1c:05	NoninMed
00:1c:06	SiemensN
00:1c:07	Cwlinux
00:1c:08	Echo360
00:1c:09	SaeElect
00:1c:0a	Shenzhen
00:1c:0b	Smartant
00:1c:0c	Tanita
00:1c:0d	G-Techno
00:1c:0e	Cisco
00:1c:0f	Cisco
00:1c:10	Cisco
00:1c:11	ArrisGro
00:1c:12	ArrisGro
00:1c:13	OptsysTe
00:1c:14	Vmware
00:1c:15	Iphotoni
00:1c:16	Thyssenk
00:1c:17	NortelNe
00:1c:18	SicertSR
00:1c:19	SecunetS
00:1c:1a	ThomasIn
00:1c:1b	Hypersto
00:1c:1c	CenterCo
00:1c:1d	Chenzhou
00:1c:1e	Emtrion
00:1c:1f	QuestRet
00:1c:20	ClbBenel
00:1c:21	Nucsafe
00:1c:22	AerisEle
00:1c:23	Dell
00:1c:24	FormosaW
00:1c:25	HonHaiPr
00:1c:26	HonHaiPr
00:1c:27	SunellEl
00:1c:28	Sphairon
00:1c:29	CoreDigi
00:1c:2a	Envisaco
00:1c:2b	AlertmeC
00:1c:2c	Synapse
00:1c:2d	Flexradi
00:1c:2e	HpnSuppl
00:1c:2f	Pfister
00:1c:30	ModeLigh
00:1c:31	MobileXp
00:1c:32	Telian
00:1c:33	Sutron
00:1c:34	HueyChia
00:1c:35	NokiaDan
00:1c:36	InewitNv
00:1c:37	Callpod
00:1c:38	Bio-RadL
00:1c:39	SNetsyst
00:1c:3a	ElementL
00:1c:3b	AmroadTe
00:1c:3c	SeonDesi
00:1c:3d	Wavestor
00:1c:3e	Eckey
00:1c:3f	Internat
00:1c:40	Vdg-Secu
00:1c:41	ScemtecT
00:1c:42	Parallel
00:1c:43	Samsung
00:1c:44	BoschSec
00:1c:45	ChenbroM
00:1c:46	Qtum
00:1c:47	Hangzhou
00:1c:48	Widefi
00:1c:49	ZoltanTe
00:1c:4a	Avm
00:1c:4b	Gener8
00:1c:4c	Petrotes
00:1c:4d	AplixIpH
00:1c:4e	TasaInte
00:1c:4f	Macab
00:1c:50	TclTechn
00:1c:51	CelenoCo
00:1c:52	Visionee
00:1c:53	SynergyL
00:1c:54	Hillston
00:1c:55	Shenzhen
00:1c:56	Pado
00:1c:57	Cisco
00:1c:58	Cisco
00:1c:59	DevonIt
00:1c:5a	Advanced
00:1c:5b	ChubbEle
00:1c:5c	Integrat
00:1c:5d	LeicaMic
00:1c:5e	AstonFra
00:1c:5f	WinlandE
00:1c:60	CspFront
00:1c:61	GalaxyMi
00:1c:62	LG
00:1c:63	Truen
00:1c:64	Landis+G
00:1c:65	Joescan
00:1c:66	Ucamp
00:1c:67	PumpkinN
00:1c:68	AnhuiSun
00:1c:69	PacketVi
00:1c:6a	WeissEng
00:1c:6b	Covax
00:1c:6c	30805
00:1c:6d	Kyohrits
00:1c:6e	NewburyN
00:1c:6f	Emfit
00:1c:70	Novacomm
00:1c:71	Emergent
00:1c:72	MayerCie
00:1c:73	AristaNe
00:1c:74	SyswanTe
00:1c:75	Segnet
00:1c:76	Wandswor
00:1c:77	Prodys
00:1c:78	WyplaySa
00:1c:79	Cohesive
00:1c:7a	Perfecto
00:1c:7b	Castlene
00:1c:7c	Perq
00:1c:7d	Excelpoi
00:1c:7e	Toshiba
00:1c:7f	CheckPoi
00:1c:80	NewBusin
00:1c:81	NextgenV
00:1c:82	GenewTec
00:1c:83	NewLevel
00:1c:84	StlSolut
00:1c:85	Eunicorn
00:1c:86	Cranite
00:1c:87	Uriver
00:1c:88	Transyst
00:1c:89	ForceCom
00:1c:8a	Cirrasca
00:1c:8b	MjInnova
00:1c:8c	DialTech
00:1c:8d	MesaImag
00:1c:8e	Alcatel-
00:1c:8f	Advanced
00:1c:90	Empacket
00:1c:91	Gefen
00:1c:92	Tervela
00:1c:93	Exadigm
00:1c:94	Li-CorBi
00:1c:95	Opticomm
00:1c:96	Linkwise
00:1c:97	EnzytekT
00:1c:98	LuckyTec
00:1c:99	ShunraSo
00:1c:9a	NokiaDan
00:1c:9b	FeigElec
00:1c:9c	NortelNe
00:1c:9d	Liecthi
00:1c:9e	Dualtech
00:1c:9f	Razorstr
00:1c:a0	Producti
00:1c:a1	AkamaiTe
00:1c:a2	AdbBroad
00:1c:a3	Terra
00:1c:a4	Sony
00:1c:a5	Zygo
00:1c:a6	Win4net
00:1c:a7	Internat
00:1c:a8	AirtiesW
00:1c:a9	Audiomat
00:1c:aa	BellonPt
00:1c:ab	MeyerSou
00:1c:ac	QniqTech
00:1c:ad	WuhanTel
00:1c:ae	Wichorus
00:1c:af	PlatoNet
00:1c:b0	Cisco
00:1c:b1	Cisco
00:1c:b2	Bpt
00:1c:b3	Apple
00:1c:b4	IridiumS
00:1c:b5	NeihuaNe
00:1c:b6	DuzonCnt
00:1c:b7	UscDigia
00:1c:b8	Cbc
00:1c:b9	KwangSun
00:1c:ba	Verscien
00:1c:bb	Musician
00:1c:bc	Castgrab
00:1c:bd	EzzeMobi
00:1c:be	Nintendo
00:1c:bf	Intel
00:1c:c0	Intel
00:1c:c1	ArrisGro
00:1c:c2	PartIiRe
00:1c:c3	ArrisGro
00:1c:c4	HP
00:1c:c5	3Com
00:1c:c6	Prostor
00:1c:c7	Rembrand
00:1c:c8	Industro
00:1c:c9	KaiseEle
00:1c:ca	Shanghai
00:1c:cb	ForthPub
00:1c:cc	Blackber
00:1c:cd	Alektron
00:1c:ce	ByTechde
00:1c:cf	Limetek
00:1c:d0	Circleon
00:1c:d1	WavesAud
00:1c:d2	KingCham
00:1c:d3	ZpEngine
00:1c:d4	NokiaDan
00:1c:d5	Zeevee
00:1c:d6	NokiaDan
00:1c:d7	Harman/B
00:1c:d8	BlueantW
00:1c:d9	Globalto
00:1c:da	ExeginTe
00:1c:db	Carpoint
00:1c:dc	CustomCo
00:1c:dd	CowbellE
00:1c:de	Interact
00:1c:df	BelkinIn
00:1c:e0	DasanTps
00:1c:e1	IndraSis
00:1c:e2	AtteroTe
00:1c:e3	Optimedi
00:1c:e4	ElesyJsc
00:1c:e5	MbsElect
00:1c:e6	Innes
00:1c:e7	RoconRes
00:1c:e8	Cummins
00:1c:e9	GalaxyTe
00:1c:ea	Scientif
00:1c:eb	NortelNe
00:1c:ec	Mobileso
00:1c:ed	Environn
00:1c:ee	Sharp
00:1c:ef	PrimaxEl
00:1c:f0	D-Link
00:1c:f1	SupoxTec
00:1c:f2	TenlonTe
00:1c:f3	EvsBroad
00:1c:f4	MediaTec
00:1c:f5	Wiseblue
00:1c:f6	Cisco
00:1c:f7	Audiosci
00:1c:f8	ParadeTe
00:1c:f9	Cisco
00:1c:fa	AlarmCom
00:1c:fb	ArrisGro
00:1c:fc	Sumitomo
00:1c:fd	Universa
00:1c:fe	Quartics
00:1c:ff	NaperaNe
00:1d:00	BrivoLlc
00:1d:01	NeptuneD
00:1d:02	Cybertec
00:1d:03	DesignSo
00:1d:04	ZipitWir
00:1d:05	Eaton
00:1d:06	HmElectr
00:1d:07	Shenzhen
00:1d:08	JiangsuY
00:1d:09	Dell
00:1d:0a	DavisIns
00:1d:0b	PowerSta
00:1d:0c	Mobileco
00:1d:0d	Sony
00:1d:0e	AgaphaTe
00:1d:0f	TP-Link
00:1d:10	Lighthau
00:1d:11	Analogue
00:1d:12	Rohm
00:1d:13	Nextgtv
00:1d:14	Speradto
00:1d:15	Shenzhen
00:1d:16	Sfr
00:1d:17	DigitalS
00:1d:18	PowerInn
00:1d:19	Arcadyan
00:1d:1a	Ovislink
00:1d:1b	SangeanE
00:1d:1c	GennetSA
00:1d:1d	Inter-M
00:1d:1e	KyushuTe
00:1d:1f	SiauliuT
00:1d:20	Comtrend
00:1d:21	AlcadSl
00:1d:22	FossAnal
00:1d:23	Sensus
00:1d:24	AclaraPo
00:1d:25	Samsung
00:1d:26	Rockridg
00:1d:27	Nac-Inte
00:1d:28	Sony
00:1d:29	Doro
00:1d:2a	Shenzhen
00:1d:2b	WuhanPon
00:1d:2c	Wavetren
00:1d:2d	Pylone
00:1d:2e	RuckusWi
00:1d:2f	Quantumv
00:1d:30	YxWirele
00:1d:31	HighproI
00:1d:32	LongkayC
00:1d:33	Maverick
00:1d:34	SyrisTec
00:1d:35	Viconics
00:1d:36	Electron
00:1d:37	Thales-P
00:1d:38	SeagateT
00:1d:39	Moohadig
00:1d:3a	MhAcoust
00:1d:3b	NokiaDan
00:1d:3c	Muscle
00:1d:3d	Avidyne
00:1d:3e	SakaTech
00:1d:3f	MitronPt
00:1d:40	Intel–Ge
00:1d:41	HardyIns
00:1d:42	NortelNe
00:1d:43	Shenzhen
00:1d:44	Krohne
00:1d:45	Cisco
00:1d:46	Cisco
00:1d:47	Covote
00:1d:48	Sensor-T
00:1d:49	Innovati
00:1d:4a	Carestre
00:1d:4b	GridConn
00:1d:4c	Alcatel-
00:1d:4d	Adaptive
00:1d:4e	TcmMobil
00:1d:4f	Apple
00:1d:50	Spinetix
00:1d:51	BabcockW
00:1d:52	DefzoneB
00:1d:53	S&OElect
00:1d:54	SunnicTe
00:1d:55	Zantaz
00:1d:56	KramerEl
00:1d:57	CaetecMe
00:1d:58	Cq
00:1d:59	MitraEne
00:1d:5a	2wire
00:1d:5b	TecvanIn
00:1d:5c	TomCommu
00:1d:5d	ControlD
00:1d:5e	ComingMe
00:1d:5f	Overspee
00:1d:60	ASUS
00:1d:61	Bij
00:1d:62	InphaseT
00:1d:63	MieleCie
00:1d:64	AdamComm
00:1d:65	Microwav
00:1d:66	HyundaiT
00:1d:67	Amec
00:1d:68	ThomsonT
00:1d:69	Knorr-Br
00:1d:6a	AlphaNet
00:1d:6b	ArrisGro
00:1d:6c	Clariphy
00:1d:6d	Confidan
00:1d:6e	NokiaDan
00:1d:6f	Chainzon
00:1d:70	Cisco
00:1d:71	Cisco
00:1d:72	Wistron
00:1d:73	Buffalo
00:1d:74	TianjinC
00:1d:75	Radiosca
00:1d:76	Eyeheigh
00:1d:77	Nsgate
00:1d:78	InvengoI
00:1d:79	Signamax
00:1d:7a	Wideband
00:1d:7b	IceEnerg
00:1d:7c	AbeElett
00:1d:7d	Giga-Byt
00:1d:7e	Cisco
00:1d:7f	TekronIn
00:1d:80	BeijingH
00:1d:81	Guangzho
00:1d:82	GnNetcom
00:1d:83	Emitech
00:1d:84	Gateway
00:1d:85	CallDire
00:1d:86	ShinwaIn
00:1d:87	VigtechL
00:1d:88	Clearwir
00:1d:89	Vaultsto
00:1d:8a	Techtrex
00:1d:8b	AdbBroad
00:1d:8c	LaCrosse
00:1d:8d	Raytek
00:1d:8e	Alereon
00:1d:8f	Purewave
00:1d:90	EmcoFlow
00:1d:91	Digitize
00:1d:92	Micro-St
00:1d:93	Modacom
00:1d:94	ClimaxTe
00:1d:95	Flash
00:1d:96	Watchgua
00:1d:97	AlertusT
00:1d:98	NokiaDan
00:1d:99	CyanOpti
00:1d:9a	GodexInt
00:1d:9b	HokuyoAu
00:1d:9c	Rockwell
00:1d:9d	ArtjoyIn
00:1d:9e	AxionTec
00:1d:9f	MattRPTr
00:1d:a0	HengYuEl
00:1d:a1	Cisco
00:1d:a2	Cisco
00:1d:a3	Sabioso
00:1d:a4	Hangzhou
00:1d:a5	WbElectr
00:1d:a6	MediaNum
00:1d:a7	Seamless
00:1d:a8	Takahata
00:1d:a9	CastlesT
00:1d:aa	Draytek
00:1d:ab	Swissqua
00:1d:ac	GigamonL
00:1d:ad	Sinotech
00:1d:ae	ChangTse
00:1d:af	NortelNe
00:1d:b0	FujianHe
00:1d:b1	Crescend
00:1d:b2	Hokkaido
00:1d:b3	HpnSuppl
00:1d:b4	KumhoEng
00:1d:b5	JuniperN
00:1d:b6	Bestcomm
00:1d:b7	TendrilN
00:1d:b8	Intoto
00:1d:b9	Wellspri
00:1d:ba	Sony
00:1d:bb	DynamicS
00:1d:bc	Nintendo
00:1d:bd	Versamed
00:1d:be	ArrisGro
00:1d:bf	Radiient
00:1d:c0	EnphaseE
00:1d:c1	Audinate
00:1d:c2	XortecOy
00:1d:c3	RikorTv
00:1d:c4	Aioi
00:1d:c5	BeijingJ
00:1d:c6	Snr
00:1d:c7	L-3Commu
00:1d:c8	Navionic
00:1d:c9	Gainspan
00:1d:ca	PavElect
00:1d:cb	ExénsDev
00:1d:cc	AyonCybe
00:1d:cd	ArrisGro
00:1d:ce	ArrisGro
00:1d:cf	ArrisGro
00:1d:d0	ArrisGro
00:1d:d1	ArrisGro
00:1d:d2	ArrisGro
00:1d:d3	ArrisGro
00:1d:d4	ArrisGro
00:1d:d5	ArrisGro
00:1d:d6	ArrisGro
00:1d:d7	Algolith
00:1d:d8	Microsoft
00:1d:d9	HonHaiPr
00:1d:da	Mikroele
00:1d:db	C-Bel
00:1d:dc	Hangzhou
00:1d:dd	DatHK
00:1d:de	Zhejiang
00:1d:df	SunitecE
00:1d:e0	Intel
00:1d:e1	Intel
00:1d:e2	Radionor
00:1d:e3	Intuicom
00:1d:e4	Visionee
00:1d:e5	Cisco
00:1d:e6	Cisco
00:1d:e7	MarineSo
00:1d:e8	NikkoDen
00:1d:e9	NokiaDan
00:1d:ea	Commtest
00:1d:eb	DinecInt
00:1d:ec	Marusys
00:1d:ed	GridNet
00:1d:ee	Nextvisi
00:1d:ef	Trimm
00:1d:f0	Vidient
00:1d:f1	Intego
00:1d:f2	Netflix
00:1d:f3	SbsScien
00:1d:f4	Magellan
00:1d:f5	Sunshine
00:1d:f6	Samsung
00:1d:f7	RStahlSc
00:1d:f8	WebproVi
00:1d:f9	Cybiotro
00:1d:fa	FujianLa
00:1d:fb	Netcleus
00:1d:fc	Ksic
00:1d:fd	NokiaDan
00:1d:fe	Palm
00:1d:ff	NetworkC
00:1e:00	ShantouI
00:1e:01	RenesasT
00:1e:02	SougouKe
00:1e:03	Licomm
00:1e:04	HansonRe
00:1e:05	XseedTec
00:1e:06	Wibrain
00:1e:07	WinyTech
00:1e:08	CentecNe
00:1e:09	Zefatek
00:1e:0a	SybaTech
00:1e:0b	HP
00:1e:0c	Sherwood
00:1e:0d	Micran
00:1e:0e	MaxiView
00:1e:0f	BriotInt
00:1e:10	Huawei
00:1e:11	EleluxIn
00:1e:12	Ecolab
00:1e:13	Cisco
00:1e:14	Cisco
00:1e:15	BeechHil
00:1e:16	Keytroni
00:1e:17	StnBv
00:1e:18	RadioAct
00:1e:19	Gtri
00:1e:1a	BestSour
00:1e:1b	DigitalS
00:1e:1c	SwsAustr
00:1e:1d	EastCoas
00:1e:1e	Honeywel
00:1e:1f	NortelNe
00:1e:20	Intertai
00:1e:21	Qisda
00:1e:22	ArvooIma
00:1e:23	Electron
00:1e:24	Zhejiang
00:1e:25	IntekDig
00:1e:26	Digifrie
00:1e:27	SbnTech
00:1e:28	Lumexis
00:1e:29	Hyperthe
00:1e:2a	Netgear
00:1e:2b	RadioDes
00:1e:2c	Cyverse
00:1e:2d	Stim
00:1e:2e	SirtiSPA
00:1e:2f	DimotoPt
00:1e:30	Shireen
00:1e:31	Infomark
00:1e:32	Zensys
00:1e:33	Inventec
00:1e:34	Cryptome
00:1e:35	Nintendo
00:1e:36	Ipte
00:1e:37	Universa
00:1e:38	Bluecard
00:1e:39	ComsysCo
00:1e:3a	NokiaDan
00:1e:3b	NokiaDan
00:1e:3c	LyngboxM
00:1e:3d	AlpsElec
00:1e:3e	Kmw
00:1e:3f	Trellisw
00:1e:40	Shanghai
00:1e:41	Microwav
00:1e:42	Teltonik
00:1e:43	AisinAw
00:1e:44	Santec
00:1e:45	Sony
00:1e:46	ArrisGro
00:1e:47	PtHariff
00:1e:48	Wi-Links
00:1e:49	Cisco
00:1e:4a	Cisco
00:1e:4b	CityThea
00:1e:4c	HonHaiPr
00:1e:4d	WelkinSc
00:1e:4e	DakoEdv-
00:1e:4f	Dell
00:1e:50	Battisto
00:1e:51	Converte
00:1e:52	Apple
00:1e:53	FurtherT
00:1e:54	ToyoElec
00:1e:55	Cowon
00:1e:56	BallyWul
00:1e:57	AlcomaSp
00:1e:58	D-Link
00:1e:59	SiliconT
00:1e:5a	ArrisGro
00:1e:5b	Unitron
00:1e:5c	RbGenera
00:1e:5d	HolosysD
00:1e:5e	Computim
00:1e:5f	Kwikbyte
00:1e:60	DigitalL
00:1e:61	Itec
00:1e:62	Siemon
00:1e:63	Vibro-Me
00:1e:64	Intel
00:1e:65	Intel
00:1e:66	ResolEle
00:1e:67	Intel
00:1e:68	QuantaCo
00:1e:69	Thomson
00:1e:6a	BeijingB
00:1e:6b	Cisco
00:1e:6c	Opaque
00:1e:6d	ItR&DCen
00:1e:6e	Shenzhen
00:1e:6f	Magna-Po
00:1e:70	CobhamDe
00:1e:71	MircomGr
00:1e:72	Pcs
00:1e:73	Zte
00:1e:74	Sagemcom
00:1e:75	LG
00:1e:76	ThermoFi
00:1e:77	Air2app
00:1e:78	OwitekTe
00:1e:79	Cisco
00:1e:7a	Cisco
00:1e:7b	RISRL
00:1e:7c	Taiwick
00:1e:7d	Samsung
00:1e:7e	NortelNe
00:1e:7f	CbmOfAme
00:1e:80	LastMile
00:1e:81	CnbTechn
00:1e:82	Sandisk
00:1e:83	Lan/ManS
00:1e:84	PikaTech
00:1e:85	Lagotek
00:1e:86	Mel
00:1e:87	Realease
00:1e:88	AndorSys
00:1e:89	Crfs
00:1e:8a	Ecopy
00:1e:8b	InfraAcc
00:1e:8c	ASUS
00:1e:8d	ArrisGro
00:1e:8e	Hunkeler
00:1e:8f	Canon
00:1e:90	Elitegro
00:1e:91	KiminEle
00:1e:92	JeulinSA
00:1e:93	Ciritech
00:1e:94	Supercom
00:1e:95	Sigmalin
00:1e:96	Sepura
00:1e:97	MediumLi
00:1e:98	Greenlin
00:1e:99	Vantanol
00:1e:9a	Hamilton
00:1e:9b	San-Eish
00:1e:9c	Fidustro
00:1e:9d	RecallTe
00:1e:9e	DdmHopt+
00:1e:9f	Visionee
00:1e:a0	Xln-T
00:1e:a1	Brunata
00:1e:a2	Symx
00:1e:a3	NokiaDan
00:1e:a4	NokiaDan
00:1e:a5	Robotous
00:1e:a6	BestItWo
00:1e:a7	Actionte
00:1e:a8	DatangMo
00:1e:a9	Nintendo
00:1e:aa	E-SenzaT
00:1e:ab	Telewell
00:1e:ac	Armadeus
00:1e:ad	Wingtech
00:1e:ae	Continen
00:1e:af	OphirOpt
00:1e:b0	ImesdEle
00:1e:b1	Cryptsof
00:1e:b2	LG
00:1e:b3	PrimexWi
00:1e:b4	UnifatTe
00:1e:b5	EverSpar
00:1e:b6	TagHeuer
00:1e:b7	Tbtech
00:1e:b8	Fortis
00:1e:b9	SingFaiT
00:1e:ba	HighDens
00:1e:bb	Blueligh
00:1e:bc	WintechA
00:1e:bd	Cisco
00:1e:be	Cisco
00:1e:bf	HaasAuto
00:1e:c0	Microchi
00:1e:c1	3comEuro
00:1e:c2	Apple
00:1e:c3	Kozio
00:1e:c4	Celio
00:1e:c5	MiddleAt
00:1e:c6	ObviusHo
00:1e:c7	2wire
00:1e:c8	RapidMob
00:1e:c9	Dell
00:1e:ca	NortelNe
00:1e:cb	RpcEnerg
00:1e:cc	Cdvi
00:1e:cd	KylandTe
00:1e:ce	BisaTech
00:1e:cf	Philips
00:1e:d0	Ingespac
00:1e:d1	Keyproce
00:1e:d2	RayShine
00:1e:d3	DotTechn
00:1e:d4	DobleEng
00:1e:d5	Tekon-Au
00:1e:d6	AlentecO
00:1e:d7	H-Stream
00:1e:d8	DigitalU
00:1e:d9	Mitsubis
00:1e:da	Wesemann
00:1e:db	GikenTra
00:1e:dc	Sony
00:1e:dd	WaskoSA
00:1e:de	Byd
00:1e:df	MasterIn
00:1e:e0	UrmetDom
00:1e:e1	Samsung
00:1e:e2	Samsung
00:1e:e3	T&WElect
00:1e:e4	AcsSolut
00:1e:e5	Cisco
00:1e:e6	Shenzhen
00:1e:e7	Epic
00:1e:e8	Mytek
00:1e:e9	Stonerid
00:1e:ea	SensorSw
00:1e:eb	Talk-A-P
00:1e:ec	CompalIn
00:1e:ed	Adventiq
00:1e:ee	Etl
00:1e:ef	Cantroni
00:1e:f0	GigafinN
00:1e:f1	Servimat
00:1e:f2	MicroMot
00:1e:f3	From2
00:1e:f4	L-3Commu
00:1e:f5	HitekAut
00:1e:f6	Cisco
00:1e:f7	Cisco
00:1e:f8	Emfinity
00:1e:f9	PascomKo
00:1e:fa	Protei
00:1e:fb	TrioMoti
00:1e:fc	JscMassa
00:1e:fd	Microbit
00:1e:fe	LevelSRO
00:1e:ff	Mueller-
00:1f:00	NokiaDan
00:1f:01	NokiaDan
00:1f:02	Pixelmet
00:1f:03	Num
00:1f:04	Granch
00:1f:05	ItasTech
00:1f:06	Integrat
00:1f:07	AzteqMob
00:1f:08	Risco
00:1f:09	Jastec
00:1f:0a	NortelNe
00:1f:0b	FederalS
00:1f:0c	Intellig
00:1f:0d	L3Commun
00:1f:0e	JapanKya
00:1f:0f	SelectEn
00:1f:10	ToledoDo
00:1f:11	Openmoko
00:1f:12	JuniperN
00:1f:13	SAS
00:1f:14	Nexg
00:1f:15	Bioscryp
00:1f:16	Wistron
00:1f:17	Idx
00:1f:18	HakusanM
00:1f:19	Ben-RiEl
00:1f:1a	Prominve
00:1f:1b	Royaltek
00:1f:1c	KobishiE
00:1f:1d	AtlasMat
00:1f:1e	AstecTec
00:1f:1f	EdimaxTe
00:1f:20	Logitech
00:1f:21	InnerMon
00:1f:22	SourcePh
00:1f:23	Interaco
00:1f:24	Digitvie
00:1f:25	Mbs
00:1f:26	Cisco
00:1f:27	Cisco
00:1f:28	HpnSuppl
00:1f:29	HP
00:1f:2a	Accm
00:1f:2b	OrangeLo
00:1f:2c	Starbrid
00:1f:2d	Electro-
00:1f:2e	Triangle
00:1f:2f	Berker
00:1f:30	Travelpi
00:1f:31	Radiocom
00:1f:32	Nintendo
00:1f:33	Netgear
00:1f:34	LungHwaE
00:1f:35	Air802Ll
00:1f:36	BellwinI
00:1f:37	GenesisI
00:1f:38	Positron
00:1f:39	Construc
00:1f:3a	HonHaiPr
00:1f:3b	Intel
00:1f:3c	Intel
00:1f:3d	Qbit
00:1f:3e	Rp-Techn
00:1f:3f	Avm
00:1f:40	Speakerc
00:1f:41	RuckusWi
00:1f:42	Ethersta
00:1f:43	EntesEle
00:1f:44	GeTransp
00:1f:45	Enterasy
00:1f:46	NortelNe
00:1f:47	McsLogic
00:1f:48	Mojix
00:1f:49	Manhatta
00:1f:4a	Albentia
00:1f:4b	LineageP
00:1f:4c	RosemanE
00:1f:4d	Segnetic
00:1f:4e	ConmedLi
00:1f:4f	Thinkwar
00:1f:50	Swissdis
00:1f:51	HdCommun
00:1f:52	UvtUnter
00:1f:53	GemacGes
00:1f:54	LorexTec
00:1f:55	Honeywel
00:1f:56	DigitalF
00:1f:57	PhonikIn
00:1f:58	EmhEnerg
00:1f:59	Kronback
00:1f:5a	Beckwith
00:1f:5b	Apple
00:1f:5c	NokiaDan
00:1f:5d	NokiaDan
00:1f:5e	DynaTech
00:1f:5f	Blatand
00:1f:60	Compass
00:1f:61	TalentCo
00:1f:62	JscStils
00:1f:63	JscGoodw
00:1f:64	BeijingA
00:1f:65	KoreaEle
00:1f:66	PlanarLl
00:1f:67	Hitachi
00:1f:68	Martinss
00:1f:69	PingoodT
00:1f:6a	Packetfl
00:1f:6b	LG
00:1f:6c	Cisco
00:1f:6d	Cisco
00:1f:6e	VtechEng
00:1f:6f	FujianSu
00:1f:70	BotikTec
00:1f:71	XgTechno
00:1f:72	QingdaoH
00:1f:73	Teraview
00:1f:74	EigenDev
00:1f:75	GibahnMe
00:1f:76	Airlogic
00:1f:77	HeolDesi
00:1f:78	BlueFoxP
00:1f:79	LodamEle
00:1f:7a	Wiwide
00:1f:7b	Technexi
00:1f:7c	Witelcom
00:1f:7d	Embedded
00:1f:7e	ArrisGro
00:1f:7f	Phabrix
00:1f:80	LucasBv
00:1f:81	AccelSem
00:1f:82	Cal-Comp
00:1f:83	Teleplan
00:1f:84	GigleSem
00:1f:85	AprivaIs
00:1f:86	Digecor
00:1f:87	Skydigit
00:1f:88	FmsForce
00:1f:89	Signalio
00:1f:8a	EllionDi
00:1f:8b	CacheIq
00:1f:8c	Ccs
00:1f:8d	Ingenieu
00:1f:8e	MetrisUs
00:1f:8f	Shanghai
00:1f:90	Actionte
00:1f:91	DbsLodgi
00:1f:92	Videoiq
00:1f:93	Xiotech
00:1f:94	LascarEl
00:1f:95	Sagemcom
00:1f:96	Aprotech
00:1f:97	BertanaS
00:1f:98	Daiichi-
00:1f:99	Seronics
00:1f:9a	NortelNe
00:1f:9b	Posbro
00:1f:9c	Ledco
00:1f:9d	Cisco
00:1f:9e	Cisco
00:1f:9f	ThomsonT
00:1f:a0	A10Netwo
00:1f:a1	Gtran
00:1f:a2	DatronWo
00:1f:a3	T&WElect
00:1f:a4	Shenzhen
00:1f:a5	Blue-Whi
00:1f:a6	StiloSrl
00:1f:a7	Sony
00:1f:a8	SmartEne
00:1f:a9	AtlantaD
00:1f:aa	Taseon
00:1f:ab	ISHighTe
00:1f:ac	Goodmill
00:1f:ad	BrownInn
00:1f:ae	BlickSou
00:1f:af	Nextio
00:1f:b0	Timeips
00:1f:b1	Cybertec
00:1f:b2	Sontheim
00:1f:b3	2wire
00:1f:b4	Smartsha
00:1f:b5	I/OInter
00:1f:b6	ChiLinTe
00:1f:b7	WimateTe
00:1f:b8	Universa
00:1f:b9	Paltroni
00:1f:ba	BoyoungT
00:1f:bb	Xenatech
00:1f:bc	Evga
00:1f:bd	KyoceraW
00:1f:be	Shenzhen
00:1f:bf	FulhuaMi
00:1f:c0	ControlE
00:1f:c1	HanlongT
00:1f:c2	JowTongT
00:1f:c3	Smartsyn
00:1f:c4	ArrisGro
00:1f:c5	Nintendo
00:1f:c6	ASUS
00:1f:c7	CasioHit
00:1f:c8	Up-Today
00:1f:c9	Cisco
00:1f:ca	Cisco
00:1f:cb	NiwSolut
00:1f:cc	Samsung
00:1f:cd	Samsung
00:1f:ce	QtechLlc
00:1f:cf	MsiTechn
00:1f:d0	Giga-Byt
00:1f:d1	Optex
00:1f:d2	Commtech
00:1f:d3	RivaNetw
00:1f:d4	4ipnet
00:1f:d5	Microris
00:1f:d6	Shenzhen
00:1f:d7	TeleradS
00:1f:d8	A-TrustC
00:1f:d9	RsdCommu
00:1f:da	NortelNe
00:1f:db	NetworkS
00:1f:dc	MobileSa
00:1f:dd	GdiLlc
00:1f:de	NokiaDan
00:1f:df	NokiaDan
00:1f:e0	Edgevelo
00:1f:e1	HonHaiPr
00:1f:e2	HonHaiPr
00:1f:e3	LG
00:1f:e4	Sony
00:1f:e5	In-Circu
00:1f:e6	Alphion
00:1f:e7	Simet
00:1f:e8	Kurusuga
00:1f:e9	Printrex
00:1f:ea	AppliedM
00:1f:eb	TrioData
00:1f:ec	SynapseÉ
00:1f:ed	Tecan
00:1f:ee	UbisysTe
00:1f:ef	ShinseiI
00:1f:f0	AudioPar
00:1f:f1	ParadoxH
00:1f:f2	ViaTechn
00:1f:f3	Apple
00:1f:f4	PowerMon
00:1f:f5	Kongsber
00:1f:f6	PsAudioI
00:1f:f7	Nakajima
00:1f:f8	SiemensS
00:1f:f9	Advanced
00:1f:fa	Coretree
00:1f:fb	GreenPac
00:1f:fc	Riccius+
00:1f:fd	IndigoMo
00:1f:fe	HpnSuppl
00:1f:ff	Respiron
00:20:00	LexmarkP
00:20:01	DspSolut
00:20:02	Seritech
00:20:03	PixelPow
00:20:04	Yamatake
00:20:05	Simplete
00:20:06	GarrettC
00:20:07	Sfa
00:20:08	CableCom
00:20:09	PackardB
00:20:0a	Source-C
00:20:0b	Octagon
00:20:0c	Adastra
00:20:0d	CarlZeis
00:20:0e	Satellit
00:20:0f	Ebrains
00:20:10	JeolSyst
00:20:11	Canopus
00:20:12	Camtroni
00:20:13	Diversif
00:20:14	GlobalVi
00:20:15	ActisCom
00:20:16	ShowaEle
00:20:17	Orbotech
00:20:18	Realtek
00:20:19	Ohler
00:20:1a	Nbase
00:20:1b	Northern
00:20:1c	Excel
00:20:1d	KatanaPr
00:20:1e	Netquest
00:20:1f	BestPowe
00:20:20	Megatron
00:20:21	Algorith
00:20:22	NmsCommu
00:20:23	TCTechno
00:20:24	PacificC
00:20:25	ControlT
00:20:26	Amkly
00:20:27	MingFort
00:20:28	Bloomber
00:20:29	Teleproc
00:20:2a	NVDzine
00:20:2b	AtmlAdva
00:20:2c	Welltron
00:20:2d	Taiyo
00:20:2e	DaystarD
00:20:2f	ZetaComm
00:20:30	AnalogDi
00:20:31	TattileS
00:20:32	AlcatelT
00:20:33	SynapseT
00:20:34	RotecInd
00:20:35	IBM
00:20:36	BmcSoftw
00:20:37	SeagateT
00:20:38	VmeMicro
00:20:39	Scinets
00:20:3a	DigitalB
00:20:3b	Wisdm
00:20:3c	Eurotime
00:20:3d	Honeywel
00:20:3e	LogicanT
00:20:3f	Juki
00:20:40	ArrisGro
00:20:41	DataNet
00:20:42	Datametr
00:20:43	Neuron
00:20:44	Genitech
00:20:45	Solcom
00:20:46	Ciprico
00:20:47	Steinbre
00:20:48	Fore
00:20:49	Comtron
00:20:4a	Pronet
00:20:4b	Autocomp
00:20:4c	MitronCo
00:20:4d	Inovis
00:20:4e	NetworkS
00:20:4f	Deutsche
00:20:50	KoreaCom
00:20:51	Verilink
00:20:52	Ragula
00:20:53	Huntsvil
00:20:54	Sycamore
00:20:55	Altech
00:20:56	Neoprodu
00:20:57	TitzeDat
00:20:58	AlliedSi
00:20:59	MiroComp
00:20:5a	Computer
00:20:5b	KentroxL
00:20:5c	Internet
00:20:5d	Nanomati
00:20:5e	CastleRo
00:20:5f	Gammadat
00:20:60	AlcatelI
00:20:61	Dynatech
00:20:62	Scorpion
00:20:63	WiproInf
00:20:64	ProtecMi
00:20:65	Supernet
00:20:66	GeneralM
00:20:67	NodeRunn
00:20:68	Isdyne
00:20:69	Isdn
00:20:6a	OsakaCom
00:20:6b	MinoltaL
00:20:6c	Evergree
00:20:6d	DataRace
00:20:6e	Xact
00:20:6f	Flowpoin
00:20:70	Hynet
00:20:71	Ibr
00:20:72	Worklink
00:20:73	Fusion
00:20:74	Sungwoon
00:20:75	Motorola
00:20:76	Reudo
00:20:77	Kardios
00:20:78	Runtop
00:20:79	Mikron
00:20:7a	WiseComm
00:20:7b	Intel
00:20:7c	Autec
00:20:7d	Advanced
00:20:7e	Finecom
00:20:7f	KyoeiSan
00:20:80	SynergyU
00:20:81	TitanEle
00:20:82	Oneac
00:20:83	Prestico
00:20:84	OcePrint
00:20:85	3Com
00:20:86	Microtec
00:20:87	Memotec
00:20:88	GlobalVi
00:20:89	T3plusNe
00:20:8a	SonixCom
00:20:8b	FocusEnh
00:20:8c	GalaxyNe
00:20:8d	CmdTechn
00:20:8e	ChevinSo
00:20:8f	EciTelec
00:20:90	Advanced
00:20:91	J125Nati
00:20:92	ChessEng
00:20:93	Landings
00:20:94	Cubix
00:20:95	RivaElec
00:20:96	Invensys
00:20:97	AppliedS
00:20:98	Hectroni
00:20:99	BonElect
00:20:9a	3do
00:20:9b	ErsatEle
00:20:9c	PrimaryA
00:20:9d	LippertA
00:20:9e	BrownSOp
00:20:9f	MercuryC
00:20:a0	OaLabora
00:20:a1	Dovatron
00:20:a2	GalcomNe
00:20:a3	Harmonic
00:20:a4	Multipoi
00:20:a5	NewerTec
00:20:a6	Proxim
00:20:a7	Pairgain
00:20:a8	SastTech
00:20:a9	WhiteHor
00:20:aa	Ericsson
00:20:ab	MicroInd
00:20:ac	Interfle
00:20:ad	Linq
00:20:ae	OrnetDat
00:20:af	3Com
00:20:b0	GatewayD
00:20:b1	ComtechR
00:20:b2	CspPrint
00:20:b3	TattileS
00:20:b4	TermaEle
00:20:b5	YaskawaE
00:20:b6	AgileNet
00:20:b7	NamaquaC
00:20:b8	PrimeOpt
00:20:b9	Metricom
00:20:ba	CenterFo
00:20:bb	Zax
00:20:bc	LongReac
00:20:bd	Niobrara
00:20:be	LanAcces
00:20:bf	AehrTest
00:20:c0	PulseEle
00:20:c1	Saxa
00:20:c2	TexasMem
00:20:c3	CounterS
00:20:c4	Inet
00:20:c5	EagleNe2
00:20:c6	Nectec
00:20:c7	AkaiProf
00:20:c8	Larscom
00:20:c9	VictronB
00:20:ca	DigitalO
00:20:cb	PretecEl
00:20:cc	DigitalS
00:20:cd	HybridNe
00:20:ce	LogicalD
00:20:cf	TestMeas
00:20:d0	Versalyn
00:20:d1	Microcom
00:20:d2	RadDataC
00:20:d3	OstOuetS
00:20:d4	Cabletro
00:20:d5	Vipa
00:20:d6	Breezeco
00:20:d7	JapanMin
00:20:d8	Netwave
00:20:d9	Panasoni
00:20:da	Xylan
00:20:db	XnetTech
00:20:dc	Densitro
00:20:dd	Cybertec
00:20:de	JapanDig
00:20:df	KyosanEl
00:20:e0	PremaxPe
00:20:e1	AlamarEl
00:20:e2	Informat
00:20:e3	McdKenco
00:20:e4	HsingTec
00:20:e5	ApexData
00:20:e6	Lidkopin
00:20:e7	B&WNucle
00:20:e8	Datatrek
00:20:e9	Dantel
00:20:ea	Efficien
00:20:eb	Cincinna
00:20:ec	Techware
00:20:ed	Giga-Byt
00:20:ee	Gtech
00:20:ef	Usc
00:20:f0	Universa
00:20:f1	AltosInd
00:20:f2	Oracle
00:20:f3	Raynet
00:20:f4	Spectrix
00:20:f5	Pandatel
00:20:f6	NetTekKa
00:20:f7	Cyberdat
00:20:f8	CarreraC
00:20:f9	Paralink
00:20:fa	Gde
00:20:fb	OctelCom
00:20:fc	Matrox
00:20:fd	ItvTechn
00:20:fe	Topware/
00:20:ff	Symmetri
00:21:00	GemtekTe
00:21:01	Aplicaci
00:21:02	Updatelo
00:21:03	GhiElect
00:21:04	GigasetC
00:21:05	Alcatel-
00:21:06	RimTesti
00:21:07	Seowonin
00:21:08	NokiaDan
00:21:09	NokiaDan
00:21:0a	Byd:Sign
00:21:0b	GeminiTr
00:21:0c	Cymtec
00:21:0d	SamsinIn
00:21:0e	OrpakLTD
00:21:0f	Cernium
00:21:10	Clearbox
00:21:11	Uniphone
00:21:12	WiscomSy
00:21:13	Padtec
00:21:14	HylabTec
00:21:15	PhyweSys
00:21:16	Transcon
00:21:17	Tellord
00:21:18	AthenaTe
00:21:19	Samsung
00:21:1a	Lintech
00:21:1b	Cisco
00:21:1c	Cisco
00:21:1d	Dataline
00:21:1e	ArrisGro
00:21:1f	Shinsung
00:21:20	SequelTe
00:21:21	Vrmagic
00:21:22	Chip-Pro
00:21:23	AerosatA
00:21:24	Optos
00:21:25	KukJeTon
00:21:26	Shenzhen
00:21:27	TP-Link
00:21:28	Oracle
00:21:29	Cisco
00:21:2a	Audiovox
00:21:2b	MsaAuer
00:21:2c	Semindia
00:21:2d	Scimolex
00:21:2e	Dresden-
00:21:2f	PhoebeMi
00:21:30	KeicoHig
00:21:31	Blynke
00:21:32	Mastercl
00:21:33	Building
00:21:34	Brandywi
00:21:35	Alcatel-
00:21:36	ArrisGro
00:21:37	BayContr
00:21:38	Cepheid
00:21:39	Escherlo
00:21:3a	Winchest
00:21:3b	Berkshir
00:21:3c	Aliphcom
00:21:3d	Cermetek
00:21:3e	Tomtom
00:21:3f	A-TeamTe
00:21:40	EnTechno
00:21:41	Radlive
00:21:42	Advanced
00:21:43	ArrisGro
00:21:44	SsTeleco
00:21:45	Semptian
00:21:46	Sanmina-
00:21:47	Nintendo
00:21:48	KacoSola
00:21:49	ChinaDah
00:21:4a	PixelVel
00:21:4b	Shenzhen
00:21:4c	Samsung
00:21:4d	Guangzho
00:21:4e	GsYuasaP
00:21:4f	AlpsElec
00:21:50	EyeviewE
00:21:51	Millinet
00:21:52	GeneralS
00:21:53	Seamicro
00:21:54	D-TacqSo
00:21:55	Cisco
00:21:56	Cisco
00:21:57	National
00:21:58	StyleFly
00:21:59	JuniperN
00:21:5a	HP
00:21:5b	Senseany
00:21:5c	Intel
00:21:5d	Intel
00:21:5e	IBM
00:21:5f	Ihse
00:21:60	HideaSol
00:21:61	Yournet
00:21:62	NortelNe
00:21:63	AskeyCom
00:21:64	SpecialD
00:21:65	Presstek
00:21:66	Novatel
00:21:67	HwaJinT&
00:21:68	IveiaLlc
00:21:69	Prologix
00:21:6a	Intel
00:21:6b	Intel
00:21:6c	Odva
00:21:6d	Soltech
00:21:6e	Function
00:21:6f	Symcom
00:21:70	Dell
00:21:71	WesungTn
00:21:72	Seoultek
00:21:73	IonTorre
00:21:74	AvalanWi
00:21:75	PacificS
00:21:76	YmaxTele
00:21:77	WLGoreAs
00:21:78	Matusche
00:21:79	Iogear
00:21:7a	SejinEle
00:21:7b	Bastec
00:21:7c	2wire
00:21:7d	PyxisSRL
00:21:7e	TelitCom
00:21:7f	IntracoT
00:21:80	ArrisGro
00:21:81	Si2Micro
00:21:82	Sandlink
00:21:83	AndritzH
00:21:84	Powersof
00:21:85	Micro-St
00:21:86	Universa
00:21:87	Imacs
00:21:88	Emc
00:21:89	Apptech
00:21:8a	Electron
00:21:8b	WesconTe
00:21:8c	Topcontr
00:21:8d	ApRouter
00:21:8e	Mekics
00:21:8f	Avantgar
00:21:90	GoliathS
00:21:91	D-Link
00:21:92	BaodingG
00:21:93	Videofon
00:21:94	PingComm
00:21:95	GwdMedia
00:21:96	TelseySP
00:21:97	Elitegro
00:21:98	ThaiRadi
00:21:99	Vacon
00:21:9a	Cambridg
00:21:9b	Dell
00:21:9c	Honeywld
00:21:9d	AdesysBv
00:21:9e	Sony
00:21:9f	SatelOy
00:21:a0	Cisco
00:21:a1	Cisco
00:21:a2	Eke-Elec
00:21:a3	Micromin
00:21:a4	DbiiNetw
00:21:a5	Erlphase
00:21:a6	Videotec
00:21:a7	HantleSy
00:21:a8	Telephon
00:21:a9	Mobilink
00:21:aa	NokiaDan
00:21:ab	NokiaDan
00:21:ac	Infrared
00:21:ad	NordicId
00:21:ae	Alcatel-
00:21:af	RadioFre
00:21:b0	TycoTele
00:21:b1	DigitalS
00:21:b2	Fiberbla
00:21:b3	RossCont
00:21:b4	AproMedi
00:21:b5	Galvanic
00:21:b6	TriactaP
00:21:b7	LexmarkI
00:21:b8	Inphi
00:21:b9	Universa
00:21:ba	TexasIns
00:21:bb	RikenKei
00:21:bc	ZalaComp
00:21:bd	Nintendo
00:21:be	Cisco
00:21:bf	HitachiH
00:21:c0	MobileAp
00:21:c1	AbbOy/Me
00:21:c2	GlCommun
00:21:c3	CornellC
00:21:c4	Consiliu
00:21:c5	3dsp
00:21:c6	CsjGloba
00:21:c7	Russound
00:21:c8	LohuisNe
00:21:c9	WavecomA
00:21:ca	ArtSyste
00:21:cb	SmsTecno
00:21:cc	Flextron
00:21:cd	Livetv
00:21:ce	Ntc-Metr
00:21:cf	CryptoGr
00:21:d0	GlobalDi
00:21:d1	Samsung
00:21:d2	Samsung
00:21:d3	BocomSec
00:21:d4	VollmerW
00:21:d5	X2e
00:21:d6	LxiConso
00:21:d7	Cisco
00:21:d8	Cisco
00:21:d9	Sekonic
00:21:da	Automati
00:21:db	Santachi
00:21:dc	Tecnoala
00:21:dd	Northsta
00:21:de	FireproW
00:21:df	MartinCh
00:21:e0	Commagil
00:21:e1	NortelNe
00:21:e2	VisagoCo
00:21:e3	Serialte
00:21:e4	I-Win
00:21:e5	DisplayS
00:21:e6	Starligh
00:21:e7	Informat
00:21:e8	MurataMa
00:21:e9	Apple
00:21:ea	Bystroni
00:21:eb	EspLlc
00:21:ec	Solutron
00:21:ed	Telegesi
00:21:ee	FullSpec
00:21:ef	Kapsys
00:21:f0	Ew3Techn
00:21:f1	TutusDat
00:21:f2	Easy3cal
00:21:f3	Si14
00:21:f4	Inrange
00:21:f5	WesternE
00:21:f6	Oracle
00:21:f7	HpnSuppl
00:21:f8	Enseo
00:21:f9	WirecomT
00:21:fa	A4spTech
00:21:fb	LG
00:21:fc	NokiaDan
00:21:fd	LacroixT
00:21:fe	NokiaDan
00:21:ff	CyfrowyP
00:22:00	IBM
00:22:01	AksysNet
00:22:02	ExcitoEl
00:22:03	Glensoun
00:22:04	Koratek
00:22:05	WelinkSo
00:22:06	Cyberdyn
00:22:07	IntenoBr
00:22:08	Certicom
00:22:09	OmronHea
00:22:0a	Onlive
00:22:0b	National
00:22:0c	Cisco
00:22:0d	Cisco
00:22:0e	IndigoSe
00:22:0f	MocaMult
00:22:10	ArrisGro
00:22:11	Rohati
00:22:12	CaiNetwo
00:22:13	Pci
00:22:14	RinnaiKo
00:22:15	ASUS
00:22:16	Shibaura
00:22:17	NeatElec
00:22:18	Verivue
00:22:19	Dell
00:22:1a	AudioPre
00:22:1b	Morega
00:22:1c	Private
00:22:1d	Freegene
00:22:1e	MediaDev
00:22:1f	EsangTec
00:22:20	MitacTec
00:22:21	ItohDenk
00:22:22	Schaffne
00:22:23	Timekeep
00:22:24	GoodWill
00:22:25	ThalesAv
00:22:26	Avaak
00:22:27	Uv-Elect
00:22:28	BreezeIn
00:22:29	Compumed
00:22:2a	Soundear
00:22:2b	Nucomm
00:22:2c	Ceton
00:22:2d	SmcNetwo
00:22:2e	Maintech
00:22:2f	OpenGrid
00:22:30	Futurelo
00:22:31	Smt&C
00:22:32	DesignDe
00:22:33	AdbBroad
00:22:34	Corventi
00:22:35	Strukton
00:22:36	VectorSp
00:22:37	Shinhint
00:22:38	Logiplus
00:22:39	IndianaL
00:22:3a	Cisco
00:22:3b	Communic
00:22:3c	RatioEnt
00:22:3d	JumpgenL
00:22:3e	Irtrans
00:22:3f	Netgear
00:22:40	Universa
00:22:41	Apple
00:22:42	Alacron
00:22:43	AzureWave
00:22:44	ChengduL
00:22:45	LeineLin
00:22:46	EvocInte
00:22:47	DacEngin
00:22:48	Microsoft
00:22:49	HomeMult
00:22:4a	Raylase
00:22:4b	AirtechT
00:22:4c	Nintendo
00:22:4d	MitacInt
00:22:4e	Seenergy
00:22:4f	ByzoroNe
00:22:50	PointSix
00:22:51	Lumasens
00:22:52	ZollLife
00:22:53	Entorian
00:22:54	BigelowA
00:22:55	Cisco
00:22:56	Cisco
00:22:57	3comEuro
00:22:58	TaiyoYud
00:22:59	Guangzho
00:22:5a	GardeSec
00:22:5b	Teradici
00:22:5c	Multimed
00:22:5d	Digicabl
00:22:5e	UwinTech
00:22:5f	LiteonTe
00:22:60	Afreey
00:22:61	Frontier
00:22:62	BepMarin
00:22:63	KoosTech
00:22:64	HP
00:22:65	NokiaDan
00:22:66	NokiaDan
00:22:67	NortelNe
00:22:68	HonHaiPr
00:22:69	HonHaiPr
00:22:6a	Honeywel
00:22:6b	Cisco
00:22:6c	Linkspri
00:22:6d	Shenzhen
00:22:6e	GowellEl
00:22:6f	3onedata
00:22:70	AbkNorth
00:22:71	JägerCom
00:22:72	American
00:22:73	Techway
00:22:74	Familyph
00:22:75	BelkinIn
00:22:76	TripleEy
00:22:77	NecAustr
00:22:78	Shenzhen
00:22:79	NipponCo
00:22:7a	TelecomD
00:22:7b	ApogeeLa
00:22:7c	WooriSmt
00:22:7d	YeData
00:22:7e	Chengdu3
00:22:7f	RuckusWi
00:22:80	A2bElect
00:22:81	Daintree
00:22:82	8086Cons
00:22:83	JuniperN
00:22:84	DesayA&V
00:22:85	NomusCom
00:22:86	Astron
00:22:87	TitanWir
00:22:88	Sagrad
00:22:89	Optosecu
00:22:8a	Teratron
00:22:8b	Kensingt
00:22:8c	PhotonEu
00:22:8d	GbsLabor
00:22:8e	Tv-Numer
00:22:8f	Cnrs
00:22:90	Cisco
00:22:91	Cisco
00:22:92	Cinetal
00:22:93	Zte
00:22:94	Kyocera
00:22:95	SgmTechn
00:22:96	Linowave
00:22:97	XmosSemi
00:22:98	Sony
00:22:99	Seamicro
00:22:9a	Lastar
00:22:9b	Averlogi
00:22:9c	VerismoN
00:22:9d	Pyung-Hw
00:22:9e	SocialAi
00:22:9f	SensysTr
00:22:a0	Delphi
00:22:a1	HuaweiSy
00:22:a2	XtramusT
00:22:a3	Californ
00:22:a4	2wire
00:22:a5	TexasIns
00:22:a6	Sony
00:22:a7	TycoElec
00:22:a8	OumanOy
00:22:a9	LG
00:22:aa	Nintendo
00:22:ab	Shenzhen
00:22:ac	Hangzhou
00:22:ad	TelesisT
00:22:ae	Mattel
00:22:af	SafetyVi
00:22:b0	D-Link
00:22:b1	Elbit
00:22:b2	4rfCommu
00:22:b3	SeiSPA
00:22:b4	ArrisGro
00:22:b5	Novita
00:22:b6	Superflo
00:22:b7	GssGrund
00:22:b8	Norcott
00:22:b9	Analogix
00:22:ba	HuthElek
00:22:bb	Beyerdyn
00:22:bc	JdsuFran
00:22:bd	Cisco
00:22:be	Cisco
00:22:bf	SieampGr
00:22:c0	Shenzhen
00:22:c1	ActiveSt
00:22:c2	ProviewE
00:22:c3	ZeeportT
00:22:c4	Epro
00:22:c5	Inforson
00:22:c6	Sutus
00:22:c7	SeggerMi
00:22:c8	AppliedI
00:22:c9	LenordBa
00:22:ca	AnvizBio
00:22:cb	Ionodes
00:22:cc	Scilog
00:22:cd	AredTech
00:22:ce	Cisco
00:22:cf	PlanexCo
00:22:d0	PolarEle
00:22:d1	Albrecht
00:22:d2	AllEarth
00:22:d3	Hub-Tech
00:22:d4	Comworth
00:22:d5	EatonEle
00:22:d6	Cypak
00:22:d7	Nintendo
00:22:d8	Shenzhen
00:22:d9	FortexIn
00:22:da	AnatekLl
00:22:db	Translog
00:22:dc	VigilHea
00:22:dd	Protecta
00:22:de	OppoDigi
00:22:df	TamuzMon
00:22:e0	Atlantic
00:22:e1	ZortLabs
00:22:e2	WabtecTr
00:22:e3	Amerigon
00:22:e4	ApassTec
00:22:e5	Fisher-R
00:22:e6	Intellig
00:22:e7	WpsParki
00:22:e8	Applitio
00:22:e9	Provisio
00:22:ea	Rustelco
00:22:eb	DataResp
00:22:ec	IdealbtT
00:22:ed	TsiPower
00:22:ee	AlgoComm
00:22:ef	IwdlTech
00:22:f0	3GreensA
00:22:f1	Private
00:22:f2	Sunpower
00:22:f3	Sharp
00:22:f4	AmpakTec
00:22:f5	Advanced
00:22:f6	Syracuse
00:22:f7	Conceptr
00:22:f8	PimaElec
00:22:f9	PollinEl
00:22:fa	Intel
00:22:fb	Intel
00:22:fc	NokiaDan
00:22:fd	NokiaDan
00:22:fe	Advanced
00:22:ff	NivisLlc
00:23:00	CayeeCom
00:23:01	WitronTe
00:23:02	CobaltDi
00:23:03	Lite-OnI
00:23:04	Cisco
00:23:05	Cisco
00:23:06	AlpsElec
00:23:07	FutureIn
00:23:08	Arcadyan
00:23:09	JanamTec
00:23:0a	Arburg
00:23:0b	ArrisGro
00:23:0c	CloverEl
00:23:0d	NortelNe
00:23:0e	Gorba
00:23:0f	HirschEl
00:23:10	LncTechn
00:23:11	Gloscom
00:23:12	Apple
00:23:13	QoolTech
00:23:14	Intel
00:23:15	Intel
00:23:16	KisanEle
00:23:17	Lasercra
00:23:18	Toshiba
00:23:19	SieloxLl
00:23:1a	Itf
00:23:1b	DanaherM
00:23:1c	Fourier
00:23:1d	Deltacom
00:23:1e	CezzerMu
00:23:1f	GuangdaE
00:23:20	NiciraNe
00:23:21	AvitechI
00:23:22	KissTekn
00:23:23	ZylinAs
00:23:24	G-ProCom
00:23:25	Iolan
00:23:26	Fujitsu
00:23:27	ShouyoEl
00:23:28	AlconTel
00:23:29	Ddrdrive
00:23:2a	EonasIt-
00:23:2b	Ird
00:23:2c	Senticar
00:23:2d	Sandforc
00:23:2e	KedahEle
00:23:2f	Advanced
00:23:30	Dizipia
00:23:31	Nintendo
00:23:32	Apple
00:23:33	Cisco
00:23:34	Cisco
00:23:35	Linkflex
00:23:36	MetelSRO
00:23:37	GlobalSt
00:23:38	Oj-Elect
00:23:39	Samsung
00:23:3a	Samsung
00:23:3b	C-Matic
00:23:3c	Alflex
00:23:3d	NoveroBV
00:23:3e	Alcatel-
00:23:3f	Purechoi
00:23:40	Mixtelem
00:23:41	Vanderbi
00:23:42	CoffeeEq
00:23:43	Tem
00:23:44	Objectiv
00:23:45	Sony
00:23:46	Vestac
00:23:47	Procurve
00:23:48	Sagemcom
00:23:49	Helmholt
00:23:4a	Private
00:23:4b	InyuanTe
00:23:4c	Ktc
00:23:4d	HonHaiPr
00:23:4e	HonHaiPr
00:23:4f	Luminous
00:23:50	Lyntec
00:23:51	2wire
00:23:52	Datasens
00:23:53	FETElett
00:23:54	ASUS
00:23:55	KincoAut
00:23:56	PacketFo
00:23:57	Pitronot
00:23:58	SystelSa
00:23:59	Benchmar
00:23:5a	CompalIn
00:23:5b	Gulfstre
00:23:5c	Aprius
00:23:5d	Cisco
00:23:5e	Cisco
00:23:5f	SiliconM
00:23:60	LookitTe
00:23:61	Unigen
00:23:62	Goldline
00:23:63	ZhuhaiRa
00:23:64	PowerIns
00:23:65	InstaEle
00:23:66	BeijingS
00:23:67	Unicontr
00:23:68	ZebraTec
00:23:69	Cisco
00:23:6a	Smartrg
00:23:6b	Xembedde
00:23:6c	Apple
00:23:6d	Resmed
00:23:6e	Burster
00:23:6f	DaqSyste
00:23:70	Snell
00:23:71	SoamSyst
00:23:72	MoreStar
00:23:73	Gridiron
00:23:74	ArrisGro
00:23:75	ArrisGro
00:23:76	HTC
00:23:77	IsotekEl
00:23:78	GnNetcom
00:23:79	UnionBus
00:23:7a	Rim
00:23:7b	WhdiLlc
00:23:7c	Neotion
00:23:7d	HP
00:23:7e	Elster
00:23:7f	Plantron
00:23:80	Nanoteq
00:23:81	LengdaTe
00:23:82	LihRongE
00:23:83	Inmage
00:23:84	GghEngin
00:23:85	Antipode
00:23:86	TourAnde
00:23:87	Thinkflo
00:23:88	VTTelema
00:23:89	Hangzhou
00:23:8a	Ciena
00:23:8b	QuantaCo
00:23:8c	Private
00:23:8d	TechnoDe
00:23:8e	AdbBroad
00:23:8f	NidecCop
00:23:90	Algolwar
00:23:91	Maxian
00:23:92	ProteusI
00:23:93	Ajinexte
00:23:94	Samjeon
00:23:95	ArrisGro
00:23:96	AndesTec
00:23:97	WestellT
00:23:98	VutlanSr
00:23:99	Samsung
00:23:9a	Easydata
00:23:9b	ElsterSo
00:23:9c	JuniperN
00:23:9d	MapowerE
00:23:9e	JiangsuL
00:23:9f	Institut
00:23:a0	HanaCns
00:23:a1	TrendEle
00:23:a2	ArrisGro
00:23:a3	ArrisGro
00:23:a4	NewConce
00:23:a5	SagetvLl
00:23:a6	E-Mon
00:23:a7	RedpineS
00:23:a8	Marshall
00:23:a9	BeijingD
00:23:aa	Hfr
00:23:ab	Cisco
00:23:ac	Cisco
00:23:ad	Xmark
00:23:ae	Dell
00:23:af	ArrisGro
00:23:b0	ComxionT
00:23:b1	Longchee
00:23:b2	Intellig
00:23:b3	Lyyn
00:23:b4	NokiaDan
00:23:b5	Ortana
00:23:b6	Securite
00:23:b7	Q-Light
00:23:b8	SichuanJ
00:23:b9	AirbusDe
00:23:ba	Chroma
00:23:bb	SchmittI
00:23:bc	Eq-Sys
00:23:bd	DigitalA
00:23:be	Cisco
00:23:bf	Mainpine
00:23:c0	Broadway
00:23:c1	Securita
00:23:c2	Samsung
00:23:c3	Logmein
00:23:c4	LuxLumen
00:23:c5	Radiatio
00:23:c6	Smc
00:23:c7	Avsystem
00:23:c8	Team-R
00:23:c9	SichuanT
00:23:ca	BehindSe
00:23:cb	Shenzhen
00:23:cc	Nintendo
00:23:cd	TP-Link
00:23:ce	KitaDens
00:23:cf	Cummins-
00:23:d0	UnilocUs
00:23:d1	Trg
00:23:d2	InhandEl
00:23:d3	AirlinkW
00:23:d4	TexasIns
00:23:d5	WaremaEl
00:23:d6	Samsung
00:23:d7	Samsung
00:23:d8	Ball-ItO
00:23:d9	BannerEn
00:23:da	Industri
00:23:db	Saxnet
00:23:dc	Benein
00:23:dd	ElginSA
00:23:de	Ansync
00:23:df	Apple
00:23:e0	InoThera
00:23:e1	CavenaIm
00:23:e2	SeaSigna
00:23:e3	Microtro
00:23:e4	Ipnect
00:23:e5	IpaxiomN
00:23:e6	Pirkus
00:23:e7	Hinke
00:23:e8	Demco
00:23:e9	F5Networ
00:23:ea	Cisco
00:23:eb	Cisco
00:23:ec	Algorith
00:23:ed	ArrisGro
00:23:ee	ArrisGro
00:23:ef	ZuendSys
00:23:f0	Shanghai
00:23:f1	Sony
00:23:f2	Tvlogic
00:23:f3	Glocom
00:23:f4	Masterna
00:23:f5	WiloSe
00:23:f6	Softwell
00:23:f7	Private
00:23:f8	ZyxelCom
00:23:f9	Double-T
00:23:fa	RgNets
00:23:fb	IpDatate
00:23:fc	UltraSte
00:23:fd	AftAtlas
00:23:fe	Biodevic
00:23:ff	BeijingH
00:24:00	NortelNe
00:24:01	D-Link
00:24:02	Op-Tecti
00:24:03	NokiaDan
00:24:04	NokiaDan
00:24:05	DilogNor
00:
Download .txt
gitextract_n3mwhkk3/

├── LICENSE
├── PacketMonitor32/
│   ├── Buffer.cpp
│   ├── Buffer.h
│   └── PacketMonitor32_ite5.ino
├── README.md
├── README.txt
├── circles_no_zoom.html
├── circles_zoom.html
├── data/
│   └── vendors.tsv
├── esp8266/
│   ├── espreset.py
│   ├── esptool.py
│   ├── espwrite.py
│   ├── install.sh
│   └── jsonsniffer/
│       └── jsonsniffer.ino
├── flare.json
├── flare1.json
├── mqtt.py
├── phatsniffer.py
├── rickroll.py
├── server.py
├── server2.py
├── static/
│   ├── sorttable.js
│   └── style.css
└── templates/
    ├── flare.html
    ├── flare.json
    ├── flare1.json
    ├── flare2.html
    └── index.html
Download .txt
SYMBOL INDEX (107 symbols across 9 files)

FILE: PacketMonitor32/Buffer.h
  function class (line 13) | class Buffer {

FILE: esp8266/espreset.py
  function GPIO_custominit (line 7) | def GPIO_custominit():

FILE: esp8266/esptool.py
  class ESPROM (line 41) | class ESPROM(object):
    method __init__ (line 74) | def __init__(self, port=0, baud=ESP_ROM_BAUD):
    method read (line 84) | def read(self):
    method write (line 88) | def write(self, packet):
    method checksum (line 96) | def checksum(data, state=ESP_CHECKSUM_MAGIC):
    method command (line 106) | def command(self, op=None, data=None, chk=0):
    method sync (line 129) | def sync(self):
    method connect (line 135) | def connect(self):
    method read_reg (line 173) | def read_reg(self, addr):
    method write_reg (line 180) | def write_reg(self, addr, value, mask, delay_us=0):
    method mem_begin (line 186) | def mem_begin(self, size, blocks, blocksize, offset):
    method mem_block (line 192) | def mem_block(self, data, seq):
    method mem_finish (line 199) | def mem_finish(self, entrypoint=0):
    method flash_begin (line 205) | def flash_begin(self, size, offset):
    method flash_block (line 234) | def flash_block(self, data, seq):
    method flash_finish (line 242) | def flash_finish(self, reboot=False):
    method run (line 248) | def run(self, reboot=False):
    method read_mac (line 254) | def read_mac(self):
    method chip_id (line 269) | def chip_id(self):
    method flash_id (line 275) | def flash_id(self):
    method flash_unlock_dio (line 283) | def flash_unlock_dio(self):
    method flash_erase (line 292) | def flash_erase(self):
    method run_stub (line 305) | def run_stub(self, stub, params, read_output=True):
  class ESPBOOTLOADER (line 336) | class ESPBOOTLOADER(object):
  function LoadFirmwareImage (line 346) | def LoadFirmwareImage(filename):
  class BaseFirmwareImage (line 362) | class BaseFirmwareImage(object):
    method __init__ (line 364) | def __init__(self):
    method add_segment (line 368) | def add_segment(self, addr, data, pad_to=4):
    method load_segment (line 378) | def load_segment(self, f, is_irom_segment=False):
    method save_segment (line 391) | def save_segment(self, f, segment, checksum=None):
    method read_checksum (line 399) | def read_checksum(self, f):
    method append_checksum (line 406) | def append_checksum(self, f, checksum):
    method write_v1_header (line 411) | def write_v1_header(self, f, segments):
  class ESPFirmwareImage (line 416) | class ESPFirmwareImage(BaseFirmwareImage):
    method __init__ (line 418) | def __init__(self, load_file=None):
    method save (line 435) | def save(self, filename):
  class OTAFirmwareImage (line 444) | class OTAFirmwareImage(BaseFirmwareImage):
    method __init__ (line 448) | def __init__(self, load_file=None):
    method save (line 484) | def save(self, filename):
  class ELFFile (line 507) | class ELFFile(object):
    method __init__ (line 508) | def __init__(self, name):
    method _fetch_symbols (line 512) | def _fetch_symbols(self):
    method get_symbol_addr (line 536) | def get_symbol_addr(self, sym):
    method get_entry_point (line 540) | def get_entry_point(self):
    method load_section (line 554) | def load_section(self, section):
  class CesantaFlasher (line 568) | class CesantaFlasher(object):
    method __init__ (line 577) | def __init__(self, esp, baud_rate=0):
    method flash_write (line 591) | def flash_write(self, addr, data, show_progress=False):
    method flash_read (line 630) | def flash_read(self, addr, length, show_progress=False):
    method flash_digest (line 670) | def flash_digest(self, addr, length, digest_block_size=0):
    method boot_fw (line 687) | def boot_fw(self):
    method flash_erase_chip (line 696) | def flash_erase_chip(self):
  function slip_reader (line 709) | def slip_reader(port):
  function arg_auto_int (line 751) | def arg_auto_int(x):
  function div_roundup (line 755) | def div_roundup(a, b):
  function binutils_safe_path (line 763) | def binutils_safe_path(p):
  function align_file_position (line 779) | def align_file_position(f, size):
  function hexify (line 785) | def hexify(s):
  function unhexify (line 792) | def unhexify(hs):
  class FatalError (line 806) | class FatalError(RuntimeError):
    method __init__ (line 811) | def __init__(self, message):
    method WithResult (line 815) | def WithResult(message, result):
  function load_ram (line 828) | def load_ram(esp, args):
  function read_mem (line 848) | def read_mem(esp, args):
  function write_mem (line 852) | def write_mem(esp, args):
  function dump_mem (line 857) | def dump_mem(esp, args):
  function detect_flash_size (line 870) | def detect_flash_size(esp, args):
  function _get_flash_params (line 882) | def _get_flash_params(esp, args):
  function _update_image_flash_params (line 891) | def _update_image_flash_params(address, flash_params, image):
  function write_flash (line 899) | def write_flash(esp, args):
  function image_info (line 924) | def image_info(args):
  function make_image (line 941) | def make_image(args):
  function elf2image (line 954) | def elf2image(args):
  function read_mac (line 993) | def read_mac(esp, args):
  function chip_id (line 998) | def chip_id(esp, args):
  function erase_flash (line 1003) | def erase_flash(esp, args):
  function run (line 1012) | def run(esp, args):
  function flash_id (line 1016) | def flash_id(esp, args):
  function read_flash (line 1023) | def read_flash(esp, args):
  function _verify_flash (line 1033) | def _verify_flash(esp, args, flasher=None):
  function verify_flash (line 1076) | def verify_flash(esp, args, flash_params=None):
  function version (line 1080) | def version(args):
  function main (line 1088) | def main():
  class AddrFilenamePairAction (line 1243) | class AddrFilenamePairAction(argparse.Action):
    method __init__ (line 1245) | def __init__(self, option_strings, dest, nargs='+', **kwargs):
    method __call__ (line 1248) | def __call__(self, parser, namespace, values, option_string=None):

FILE: esp8266/espwrite.py
  function GPIO_custominit (line 7) | def GPIO_custominit():

FILE: mqtt.py
  function publish_sniffer_data (line 8) | def publish_sniffer_data(hostname, root, data):

FILE: phatsniffer.py
  function read_vendors (line 10) | def read_vendors(filename):
  function send_command (line 17) | def send_command(command):
  function create_fake_beacon (line 28) | def create_fake_beacon(channel, ssid):
  function remove_fake_beacon (line 32) | def remove_fake_beacon(channel):
  function get_sniffer_data (line 36) | def get_sniffer_data():
  function get_sniffer_data1 (line 60) | def get_sniffer_data1():
  function reset_phat (line 83) | def reset_phat():

FILE: server.py
  function index (line 12) | def index():
  function download (line 64) | def download():
  function reset (line 68) | def reset():

FILE: server2.py
  function index (line 10) | def index():
  function download (line 61) | def download():
  function reset (line 65) | def reset():

FILE: static/sorttable.js
  function dean_addEvent (line 376) | function dean_addEvent(element, type, handler) {
  function removeEvent (line 402) | function removeEvent(element, type, handler) {
  function handleEvent (line 413) | function handleEvent(event) {
  function fixEvent (line 429) | function fixEvent(event) {
Condensed preview — 28 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (645K chars).
[
  {
    "path": "LICENSE",
    "chars": 1064,
    "preview": "MIT License\n\nCopyright (c) 2018 Galile0\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof"
  },
  {
    "path": "PacketMonitor32/Buffer.cpp",
    "chars": 4230,
    "preview": "#include \"Buffer.h\"\n\nBuffer::Buffer(){\n  bufA = (uint8_t*)malloc(BUF_SIZE);\n  bufB = (uint8_t*)malloc(BUF_SIZE);\n}\n\nvoid"
  },
  {
    "path": "PacketMonitor32/Buffer.h",
    "chars": 864,
    "preview": "#ifndef Buffer_h\n#define Buffer_h\n\n#include \"Arduino.h\"\n#include \"FS.h\"\n#include \"SD_MMC.h\"\n\n#define BUF_SIZE 24 * 1024\n"
  },
  {
    "path": "PacketMonitor32/PacketMonitor32_ite5.ino",
    "chars": 12837,
    "preview": "//https://github.com/lpodkalicki/blog/blob/master/esp32/016_wifi_sniffer/main/main.c\n// packet monitor from spacehuhn\n\n/"
  },
  {
    "path": "README.md",
    "chars": 51,
    "preview": "# Heimdall-WiFi-Radar\nHeimdall WiFi Radar ESP8266 \n"
  },
  {
    "path": "README.txt",
    "chars": 132,
    "preview": "# pHAT Sniffer\nRaspberry Pi + ESP8266 pHAT WiFi sniffer\n\n![Screenshot](screenshot.png \"Screenshot\")\n\n![Device](device.jp"
  },
  {
    "path": "circles_no_zoom.html",
    "chars": 9593,
    "preview": "<!DOCTYPE html>\n<meta charset=\"utf-8\">\n<style>\n\ncircle {\n  fill: rgb(31, 119, 180);\n  fill-opacity: .25;\n  stroke: rgb(3"
  },
  {
    "path": "circles_zoom.html",
    "chars": 11225,
    "preview": "<!DOCTYPE html>\n<meta charset=\"utf-8\">\n<style>\n\n.node {\n  cursor: pointer;\n}\n\n.node:hover {\n  stroke: #000;\n  stroke-wid"
  },
  {
    "path": "data/vendors.tsv",
    "chars": 398783,
    "preview": "00:00:00\t00:00:00\n00:00:01\tSuperlan\n00:00:02\tBbnWasIn\n00:00:03\tXerox\n00:00:04\tXerox\n00:00:05\tXerox\n00:00:06\tXerox\n00:00:"
  },
  {
    "path": "esp8266/espreset.py",
    "chars": 417,
    "preview": "#!/usr/bin/env python\n\nfrom time import sleep\nimport RPi.GPIO as GPIO\n\n# declaration of chip reset pin\ndef GPIO_customin"
  },
  {
    "path": "esp8266/esptool.py",
    "chars": 55763,
    "preview": "#!/usr/bin/python\n# NB: Before sending a PR to change the above line to '#!/usr/bin/env python2', please read https://gi"
  },
  {
    "path": "esp8266/espwrite.py",
    "chars": 495,
    "preview": "#!/usr/bin/env python\n\nfrom time import sleep\nimport RPi.GPIO as GPIO\n\n# declaration of chip reset and program pins\ndef "
  },
  {
    "path": "esp8266/install.sh",
    "chars": 129,
    "preview": "#!/bin/bash\n./espwrite.py\n./esptool.py -p /dev/ttyAMA0 -b 115200 write_flash --flash_size=detect 0 jsonsniffer.bin\n./esp"
  },
  {
    "path": "esp8266/jsonsniffer/jsonsniffer.ino",
    "chars": 12955,
    "preview": "/*\n * By Lars Juhl Jensen 20170415 compiled on OS X using Arduino 1.8.2\n * Distributed under the MIT license (URL)\n * \n "
  },
  {
    "path": "flare.json",
    "chars": 11414,
    "preview": "{\n \"name\": \"flare\",\n \"children\": [\n  {\n   \"name\": \"analytics\",\n   \"children\": [\n    {\n     \"name\": \"cluster\",\n     \"chil"
  },
  {
    "path": "flare1.json",
    "chars": 6989,
    "preview": "{\"name\": \"root\", \"children\": [{\"name\": \"Samsung\", \"size\": 6.0}, {\"name\": \"Unknown\", \"size\": 6.6332495807108}, {\"name\": \""
  },
  {
    "path": "mqtt.py",
    "chars": 790,
    "preview": "#!/usr/bin/python\n\nfrom paho.mqtt import publish\nimport json, time\nimport phatsniffer\n\n\ndef publish_sniffer_data(hostnam"
  },
  {
    "path": "phatsniffer.py",
    "chars": 2439,
    "preview": "#!/usr/bin/python\n\nimport json\nimport serial\nimport time\n#import RPi.GPIO\n\n\nvendors = {}\ndef read_vendors(filename):\n\tfi"
  },
  {
    "path": "rickroll.py",
    "chars": 254,
    "preview": "#!/usr/bin/python\n\nimport phatsniffer\n\nrickroll = ['1 Never gonna', '2 give you up,', '3 never gonna', '4 let you down',"
  },
  {
    "path": "server.py",
    "chars": 2226,
    "preview": "#!/usr/bin/python\n\nimport logging\n\nfrom flask import Flask, jsonify, redirect, render_template\nimport math, json\nimport "
  },
  {
    "path": "server2.py",
    "chars": 2188,
    "preview": "#!/usr/bin/python\n\nfrom flask import Flask, jsonify, redirect, render_template\nimport math, json\nimport phatsniffer\n\napp"
  },
  {
    "path": "static/sorttable.js",
    "chars": 16875,
    "preview": "/*\n  SortTable\n  version 2\n  7th April 2007\n  Stuart Langridge, http://www.kryogenix.org/code/browser/sorttable/\n\n  Inst"
  },
  {
    "path": "static/style.css",
    "chars": 1105,
    "preview": "body {\n\tfont-family: \"Helvetica Neue\", Helvetica, Arial, \"Lucida Grande\", sans-serif;\n\tfont-size: 14pt;\n}\n\n.jumbotron {\n"
  },
  {
    "path": "templates/flare.html",
    "chars": 3125,
    "preview": "<!DOCTYPE html>\n<meta charset=\"utf-8\">\n<style>\n\n.node {\n  cursor: pointer;\n}\n\n.node:hover {\n  stroke: #000;\n  stroke-wid"
  },
  {
    "path": "templates/flare.json",
    "chars": 11414,
    "preview": "{\n \"name\": \"flare\",\n \"children\": [\n  {\n   \"name\": \"analytics\",\n   \"children\": [\n    {\n     \"name\": \"cluster\",\n     \"chil"
  },
  {
    "path": "templates/flare1.json",
    "chars": 6989,
    "preview": "{\"name\": \"root\", \"children\": [{\"name\": \"Samsung\", \"size\": 6.0}, {\"name\": \"Unknown\", \"size\": 6.6332495807108}, {\"name\": \""
  },
  {
    "path": "templates/flare2.html",
    "chars": 3125,
    "preview": "<!DOCTYPE html>\n<meta charset=\"utf-8\">\n<style>\n\n.node {\n  cursor: pointer;\n}\n\n.node:hover {\n  stroke: #000;\n  stroke-wid"
  },
  {
    "path": "templates/index.html",
    "chars": 5058,
    "preview": "<html>\n\n<head>\n<title>Heimdall WiFi Radar by G4lile0</title>\n<link rel=\"stylesheet\" href=\"/static/bootstrap.min.css\" />\n"
  }
]

About this extraction

This page contains the full source code of the G4lile0/Heimdall-WiFi-Radar GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 28 files (568.9 KB), approximately 287.6k tokens, and a symbol index with 107 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!